Package com.nimbusds.srp6

Examples of com.nimbusds.srp6.SRP6ClientSession.step1()


    System.out.println("Client session step 1");
   
    SRP6ClientSession client = new SRP6ClientSession();
   
    User user = getUser("\t");
    client.step1(user.I, user.P);
 
    System.out.println();
   
   
    // Step 2
View Full Code Here


    BigInteger s = readBigInteger();
   
    System.out.print("\tEnter password verifier 'v' (hex): ");
    BigInteger v = readBigInteger();
   
    BigInteger B = server.step1(I, s, v);
   
    System.out.println();
    System.out.println("\tComputed public server value 'B' (hex): " + BigIntegerUtils.toHex(B));
    System.out.println();
   
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.