computeClientEvidence method
BigInt
computeClientEvidence(
- SRP6CryptoParams cryptoParams,
- SRP6ClientEvidenceContext ctx
override
Implementation
@override
BigInt computeClientEvidence(
SRP6CryptoParams cryptoParams, SRP6ClientEvidenceContext ctx) {
return HexHashedRoutines.hashClientEvidence(
cryptoParams.getMessageDigestInstance(),
BigIntHelper.toHex(ctx.A),
BigIntHelper.toHex(ctx.B),
BigIntHelper.toHex(ctx.S));
}