TstImpl(char[] password, String salt)
{
BigInteger N = SRPConf.getDefaultParams().N();
log.trace("N: "+Util.tob64(N.toByteArray()));
BigInteger g = SRPConf.getDefaultParams().g();
log.trace("g: "+Util.tob64(g.toByteArray()));
byte[] Nb = SRPConf.getDefaultParams().Nbytes();
log.trace("N': "+Util.tob64(params.N));
byte[] gb = SRPConf.getDefaultParams().gbytes();
log.trace("g': "+Util.tob64(params.g));
byte[] hn = Util.newDigest().digest(params.N);