2 * @file PswGen/Generator/igenerator.h
3 * @brief Interface for password generator modules
6 * Copyright (c) 2011 Enar Vaikene
8 * This file is part of the eVaf C++ cross-platform application development framework.
10 * This file can be used under the terms of the GNU General Public License
11 * version 3.0 as published by the Free Software Foundation and appearing in
12 * the file LICENSE included in the packaging of this file. Please review the
13 * the following information to ensure the GNU General Public License version
14 * 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html.
16 * Alternatively, this file may be used in accordance with the Commercial License
17 * Agreement provided with the Software.
20 #ifndef __PSWGEN_GENERATOR_IGENERATOR_H
21 # define __PSWGEN_GENERATOR_IGENERATOR_H
31 * Password generator interface.
33 * This interface is used to generate strong passwords.
35 class PSWGEN_GENERATOR_EXPORT iGenerator
: public QObject
41 /// Interface constructor
44 /// Empty virtual destructor
45 virtual ~iGenerator() {}
48 * Flags for the password generator.
51 ALPHANUMERIC
= 0x01 ///< Generated password contains only alphanumeric characters
55 * Default length of the generated password
62 * Generates a strong password
63 * @param name Name of the password
64 * @param masterPassword Master password
65 * @param length Length of the password
66 * @param flags Flags for the generator
67 * @return Generated password
69 * This function generates a strong password using the name and the master password string
70 * as inputs. Calling this function with the same input always returns the same generated
73 * The length of the password is specified with the length argument. However, the generated password
74 * is never longer than possible with the particular cryptographic method.
76 * Optional flags can be used to fine-tune the generator.
78 virtual QString
generatePassword(char const * const name
, char const * const masterPassword
, int length
= DEFAULT_LENGTH
, uint flags
= 0) = 0;
81 * Returns the maximum length of generated passwords
82 * @return Maximum length
84 * This function returns the maximum length of generated passwords that is possible with the cryptographic method
85 * used by the module implementing this interface.
87 virtual int maxLength() const = 0;
91 } // namespace eVaf::PswGen
94 #endif // igenerator.h