Examples of EsapiEncryptor


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

public class EsapiEncryptionTest
{
    @Test
    public void testEncrypt()
    {
        EsapiEncryptor encryptor = new EsapiEncryptor(true, "esapi");
        String clearText = "1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890";
        System.out.println("clearText.length="+clearText.length());
        System.out.println("clearText="+clearText);
        String encryptedText = encryptor.encrypt(clearText);
        System.out.println("encryptedText.length="+encryptedText.length());
        System.out.println("encryptedText="+encryptedText);
        assertEquals(encryptedText.length(), 263);
        String decryptedText = encryptor.decrypt(encryptedText);
        assertEquals(decryptedText, clearText);
    }
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.