Package org.bouncycastle.tls.crypto
Interface TlsSRP6VerifierGenerator
-
public interface TlsSRP6VerifierGenerator
Base interface for a generator for SRP-6 verifiers.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.math.BigInteger
generateVerifier(byte[] salt, byte[] identity, byte[] password)
Creates a new SRP-6 verifier value.
-
-
-
Method Detail
-
generateVerifier
java.math.BigInteger generateVerifier(byte[] salt, byte[] identity, byte[] password)
Creates a new SRP-6 verifier value.- Parameters:
salt
- The salt to use, generally should be large and randomidentity
- The user's identifying information (eg. username)password
- The user's password- Returns:
- A new verifier for use in future SRP authentication
-
-