Package net.webpasswordsafe.server.plugin.encryption

Examples of net.webpasswordsafe.server.plugin.encryption.EsapiDigester


     * Test method for {@link net.webpasswordsafe.server.plugin.encryption.JasyptDigester#check(java.lang.String, java.lang.String)}.
     */
    @Test
    public void testCheck()
    {
        EsapiDigester digester = new EsapiDigester(true, "esapi");
        String clearText = "1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890";
        System.out.println("clearText="+clearText);
        System.out.println("clearText.length="+clearText.length());
        String password1 = digester.digest(clearText);
        System.out.println("password1="+password1);
        System.out.println("password1.length="+password1.length());
        String password2 = digester.digest(clearText);
        System.out.println("password2="+password2);
        System.out.println("password2.length="+password2.length());
        assertTrue(digester.check(clearText, password1));
        assertTrue(digester.check(clearText, password2));
        assertTrue(password1.equals(password2));
    }
View Full Code Here

TOP

Related Classes of net.webpasswordsafe.server.plugin.encryption.EsapiDigester

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.