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
Represents an SRP-6 client that performs authentication using a username and password.
Derived from
SRP6.SRP6Base.-
Field Summary
-
Constructor Summary
ConstructorsConstructorDescriptionSRP6Client(String username, String password, SRP6.Salt salt, BigInteger verifier) Constructs an SRP-6 client with the given username, password, and salt. -
Method Summary
Methods inherited from class SRP6.SRP6Base
doVerifyClientEvidence, verifyClientEvidence
-
Constructor Details
-
SRP6Client
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.
-