using System; using Org.BouncyCastle.Math; namespace Org.BouncyCastle.Tls.Crypto { /// Base interface for a generator for SRP-6 verifiers. public interface TlsSrp6VerifierGenerator { /// Creates a new SRP-6 verifier value. /// The salt to use, generally should be large and random /// The user's identifying information (eg. username) /// The user's password /// A new verifier for use in future SRP authentication BigInteger GenerateVerifier(byte[] salt, byte[] identity, byte[] password); } }