/* KeePass Password Safe - The Open-Source Password Manager Copyright (C) 2003-2017 Dominik Reichl 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 of the License, or (at your option) any later version. 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, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ using System; using System.Collections.Generic; using System.Text; using KeePassLib; using KeePassLib.Security; namespace KeePassLib.Cryptography.PasswordGenerator { public abstract class CustomPwGenerator { /// /// Each custom password generation algorithm must have /// its own unique UUID. /// public abstract PwUuid Uuid { get; } /// /// Displayable name of the password generation algorithm. /// public abstract string Name { get; } public virtual bool SupportsOptions { get { return false; } } /// /// Password generation function. /// /// Password generation options chosen /// by the user. This may be null, if the default /// options should be used. /// Source that the algorithm /// can use to generate random numbers. /// Generated password or null in case /// of failure. If returning null, the caller assumes /// that an error message has already been shown to the user. public abstract ProtectedString Generate(PwProfile prf, CryptoRandomStream crsRandomSource); public virtual string GetOptions(string strCurrentOptions) { return string.Empty; } } }