Interface IPasswordManager

interface IPasswordManager {
    generateFromPlainText(plainTextValue): Promise<IHashedPassword>;
    generateRandom(size): Promise<GenerateRandomPasswordResultDTO>;
    matchs(plainTextValue, hashedPassword): Promise<boolean>;
}

Implemented by

Methods