Class SRP6.SRP6Client

java.lang.Object
br.net.dd.netherwingcore.common.cryptography.authentication.SRP6.SRP6Base
br.net.dd.netherwingcore.common.cryptography.authentication.SRP6.SRP6Client
Enclosing class:
SRP6

public static class SRP6.SRP6Client extends SRP6.SRP6Base
Represents an SRP-6 client that performs authentication using a username and password. Derived from SRP6.SRP6Base.
  • Constructor Details

    • SRP6Client

      public SRP6Client(String username, String password, SRP6.Salt salt, BigInteger verifier)
      Constructs an SRP-6 client with the given username, password, and salt.
      Parameters:
      username - The user's username.
      password - The user's password.
      salt - The salt used to hash the verifier.
      verifier - The verifier computed from the username, password, and salt.