libnick 2025.9.1
A cross-platform base for native Nickvision applications.
Loading...
Searching...
No Matches
passwordcontent.h
Go to the documentation of this file.
1
22
23#ifndef PASSWORDCONTENT_H
24#define PASSWORDCONTENT_H
25
26#include "helpers/codehelpers.h"
27
28namespace Nickvision::Keyring
29{
33 enum class PasswordContent
34 {
35 Numeric = 1,
38 Special = 8,
39 Space = 16
40 };
41
42 DEFINE_ENUM_FLAGS(PasswordContent)
43}
44
45#endif //PASSWORDCONTENT_H
Definition credential.h:29
PasswordContent
Flags to describe the content of a password.
Definition passwordcontent.h:34
@ Uppercase
The password contains uppercase characters.
Definition passwordcontent.h:36
@ Numeric
The password contains numeric characters.
Definition passwordcontent.h:35
@ Special
The password contains special characters.
Definition passwordcontent.h:38
@ Space
The password contains spaces.
Definition passwordcontent.h:39
@ Lowercase
The password contains lowercase characters.
Definition passwordcontent.h:37