QtPass 1.4.0
Multi-platform GUI for pass, the standard unix password manager.
Loading...
Searching...
No Matches
passwordconfiguration.h
Go to the documentation of this file.
1#ifndef PASSWORDCONFIGURATION_H
2#define PASSWORDCONFIGURATION_H
3
4#include <QString>
5
19 CHARSETS_COUNT // have to be last, for easier initialization of arrays
24 int length;
31 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890~!@#$%^&"
32 "*()_-+={}[]|:;<>,.?"; /*AllChars*/
33 Characters[ALPHABETICAL] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstu"
34 "vwxyz"; /*Only Alphabetical*/
35 Characters[ALPHANUMERIC] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstu"
36 "vwxyz1234567890"; /*Alphabetical and Numerical*/
37 Characters[CUSTOM] = Characters[ALLCHARS]; // this may be redefined by user
38 }
39};
40
41#endif // PASSWORDCONFIGURATION_H
Holds the Password configuration settings.
int length
Length of the password.
enum PasswordConfiguration::characterSet selected
characterSet
The selected character set.
QString Characters[CHARSETS_COUNT]
The different character sets.