mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2024-10-01 01:26:01 -04:00
eb1882453f
Summary of changes: * Extract function for creating password generator from options into `Generate` command. This function is now reused in `Add` and `Edit` commands. * Updated manpage with missing password generation options. * Updated manpage with missing longer forms of password generation options. * Added unit tests for new password generation options in `Add` and `Edit`. * Handle case when `-g` and `-p` options are used at the same time. This PR adds password generation functionalities while reducing code duplication, but at the cost of 2 small breaking changes: * The password generation option for `Add` and `Edit` for specifying password length is now `-L` instead of `-l`, to not clash with the `-l --lower` option. * The `-u` shorthand for the `--upper` option has to be removed, to not clash with the `-u --username` option. * Add -U variant for uppercase.
45 lines
1.6 KiB
C++
45 lines
1.6 KiB
C++
/*
|
|
* Copyright (C) 2019 KeePassXC Team <team@keepassxc.org>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 2 or (at your option)
|
|
* version 3 of the License.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef KEEPASSXC_GENERATE_H
|
|
#define KEEPASSXC_GENERATE_H
|
|
|
|
#include "Command.h"
|
|
|
|
#include "core/PasswordGenerator.h"
|
|
|
|
class Generate : public Command
|
|
{
|
|
public:
|
|
Generate();
|
|
int execute(const QStringList& arguments) override;
|
|
|
|
static QSharedPointer<PasswordGenerator> createGenerator(QSharedPointer<QCommandLineParser> parser);
|
|
|
|
static const QCommandLineOption PasswordLengthOption;
|
|
static const QCommandLineOption LowerCaseOption;
|
|
static const QCommandLineOption UpperCaseOption;
|
|
static const QCommandLineOption NumbersOption;
|
|
static const QCommandLineOption SpecialCharsOption;
|
|
static const QCommandLineOption ExtendedAsciiOption;
|
|
static const QCommandLineOption ExcludeCharsOption;
|
|
static const QCommandLineOption ExcludeSimilarCharsOption;
|
|
static const QCommandLineOption IncludeEveryGroupOption;
|
|
};
|
|
|
|
#endif // KEEPASSXC_GENERATE_H
|