Package org.jitterbit.util.crypto

Examples of org.jitterbit.util.crypto.PBEStringCryptographer.encrypt()


    public static String encryptString(String plainText, String passPhrase) throws ServerCryptoException {
        try {
            PBEStringCryptographer crypto = new DefaultPBEStringCryptographer(salt, 1);
            crypto.setAlgorithm(algorithm);
            crypto.setPassphrase(passPhrase);
            byte[] encrypted = crypto.encrypt(plainText);
            Base64 base64 = new Base64();
            return new String(base64.encode(encrypted));
        } catch (StringCryptographerException ex) {
            throw new ServerCryptoException(ex);
        } catch (StringEncryptionException ex) {
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.