QtPass 1.5.1
Multi-platform GUI for pass, the standard unix password manager.
Loading...
Searching...
No Matches
passwordconfiguration.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2016 Anne Jan Brouwer
2// SPDX-License-Identifier: GPL-3.0-or-later
3#ifndef SRC_PASSWORDCONFIGURATION_H_
4#define SRC_PASSWORDCONFIGURATION_H_
5
6#include <QString>
7
21 CHARSETS_COUNT // have to be last, for easier initialization of arrays
26 int length;
33 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890~!@#$%^&"
34 "*()_-+={}[]|:;<>,.?"; /*AllChars*/
35 Characters[ALPHABETICAL] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstu"
36 "vwxyz"; /*Only Alphabetical*/
37 Characters[ALPHANUMERIC] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstu"
38 "vwxyz1234567890"; /*Alphabetical and Numerical*/
39 Characters[CUSTOM] = Characters[ALLCHARS]; // may be redefined by user
40 }
41};
42
43#endif // SRC_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.