Package org.jbls.Hashing

Examples of org.jbls.Hashing.SRP


      p.writeDWord(passwordHash[3]);
      p.writeDWord(passwordHash[4]);
      p.writeNTString(cs.username);
      p.sendPacket(bncsOutputStream);
    } else {
      srp = new SRP(cs.username, cs.password);
      srp.set_NLS(nlsRevision);
      byte A[] = srp.get_A();

      if (A.length != 32)
        throw new Exception("Invalid A length");
View Full Code Here

TOP

Related Classes of org.jbls.Hashing.SRP

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.