Package org.bouncycastle.util.test

Examples of org.bouncycastle.util.test.Test


    }

    public static void main(
        String[]    args)
    {
        Test        test = new PSSTest();
        TestResult  result = test.perform();

        System.out.println(result);
    }
View Full Code Here


    }

    public static void main(
        String[]    args)
    {
        Test    test = new OIDTest();

        TestResult  result = test.perform();

        System.out.println(result);
    }
View Full Code Here

    }

    public static void main(
        String[]    args)
    {
        Test    test = new CertificateTest();

        TestResult  result = test.perform();

        System.out.println(result);
    }
View Full Code Here

    }

    public static void main(
        String[]    args)
    {
        Test    test = new EncryptedPrivateKeyInfoTest();

        TestResult  result = test.perform();

        System.out.println(result.toString());
    }
View Full Code Here

    }

    public static void main(
        String[]    args)
    {
        Test    test = new GeneralizedTimeTest();

        TestResult  result = test.perform();

        System.out.println(result);
    }
View Full Code Here

    public static void main(
        String[]    args)
    {
        Security.addProvider(new BouncyCastleProvider());

        Test            test = new SigTest();
        TestResult      result = test.perform();

        System.out.println(result.toString());
    }
View Full Code Here

    public static void main(
        String[] args)
    {
        Security.addProvider(new BouncyCastleProvider());

        Test            test = new CertPathTest();
        TestResult        result = test.perform();

        System.out.println(result.toString());
    }
View Full Code Here

    public static void main(
        String[]    args)
    {
        Security.addProvider(new BouncyCastleProvider());

        Test            test;

        if (args.length == 0)
        {
            test = new NamedCurveTest();
        }
        else
        {
            test = new NamedCurveTest(args[0]);
        }

        TestResult      result = test.perform();

        System.out.println(result.toString());
    }
View Full Code Here

    public static void main(
        String[]    args)
    {
        Security.addProvider(new BouncyCastleProvider());

        Test            test = new DoFinalTest();
        TestResult      result = test.perform();

        System.out.println(result.toString());
    }
View Full Code Here

    public static void main(
        String[]    args)
    {
        Security.addProvider(new BouncyCastleProvider());

        Test            test = new NetscapeCertRequestTest();
        TestResult      result = test.perform();

        System.out.println(result.toString());
    }
View Full Code Here

TOP

Related Classes of org.bouncycastle.util.test.Test

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.