Interface TlsSRP6VerifierGenerator


public interface TlsSRP6VerifierGenerator
Base interface for a generator for SRP-6 verifiers.
  • Method Summary

    Modifier and Type
    Method
    Description
    generateVerifier(byte[] salt, byte[] identity, byte[] password)
    Creates a new SRP-6 verifier value.
  • Method Details

    • generateVerifier

      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 random
      identity - The user's identifying information (eg. username)
      password - The user's password
      Returns:
      A new verifier for use in future SRP authentication