generateClientCredentialsAsync method
Implementation
Future<BigInt?> generateClientCredentialsAsync(
Uint8List salt, Uint8List identity, Uint8List password) async {
x = await SRP6Util.calculateX(digest, N, salt, identity, password);
a = selectPrivateValue();
A = g.modPow(a!, N);
return A;
}