Java 类org.bouncycastle.crypto.agreement.srp.SRP6StandardGroups 实例源码

项目:gwt-crypto    文件:SRP6Test.java   
public void performTest() throws Exception
{
    rfc5054AppendixBTestVectors();

    testMutualVerification(SRP6StandardGroups.rfc5054_1024);
    testClientCatchesBadB(SRP6StandardGroups.rfc5054_1024);
    testServerCatchesBadA(SRP6StandardGroups.rfc5054_1024);

    testWithRandomParams(256);
    testWithRandomParams(384);
    testWithRandomParams(512);
}