#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR) #pragma warning disable using System; using BestHTTP.SecureProtocol.Org.BouncyCastle.Math; namespace BestHTTP.SecureProtocol.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); } } #pragma warning restore #endif