Package org.apache.sshd.common.random

Examples of org.apache.sshd.common.random.BouncyCastleRandom


        runTest();
    }

    @Test
    public void loadTest() throws Exception {
        Random random = new BouncyCastleRandom();
        loadTest(new AES128CBC.Factory(), random);
        loadTest(new BlowfishCBC.Factory(), random);
        loadTest(new TripleDESCBC.Factory(), random);
    }
View Full Code Here


        System.out.println("JCE: " + t + " micro");
    }

    @Test
    public void testBc() {
        long t = test(new BouncyCastleRandom());
        System.out.println("BC:  " + t + " micro");
    }
View Full Code Here

        runTest();
    }

    @Test
    public void loadTest() throws Exception {
        Random random = new BouncyCastleRandom();
        loadTest(new AES128CBC.Factory(), random);
        loadTest(new BlowfishCBC.Factory(), random);
        loadTest(new TripleDESCBC.Factory(), random);
    }
View Full Code Here

        runTest();
    }

    @Test
    public void loadTest() throws Exception {
        Random random = new BouncyCastleRandom();
        loadTest(new AES128CBC.Factory(), random);
        loadTest(new BlowfishCBC.Factory(), random);
        loadTest(new TripleDESCBC.Factory(), random);
    }
View Full Code Here

        System.out.println("JCE: " + t + " micro");
    }

    @Test
    public void testBc() {
        long t = test(new BouncyCastleRandom());
        System.out.println("BC:  " + t + " micro");
    }
View Full Code Here

TOP

Related Classes of org.apache.sshd.common.random.BouncyCastleRandom

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.