Package org.bouncycastle.tls.crypto
Interface TlsSRP6VerifierGenerator
public interface TlsSRP6VerifierGenerator
Base interface for a generator for SRP-6 verifiers.
-
Method Summary
Modifier and TypeMethodDescriptiongenerateVerifier(byte[] salt, byte[] identity, byte[] password) Creates a new SRP-6 verifier value.
-
Method Details
-
generateVerifier
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
-