NoSuchAlgorithmException, RemoteException
{
// Calculate the password verfier v
byte[] v = Util.calculateVerifier(username, password, params.s, params.N, params.g);
// Create an SRP session
session = new SRPServerSession(username, v, params);
byte[] B = session.exponential();
session.buildSessionKey(A);
return B;
}