Package org.jitterbit.util.crypto

Examples of org.jitterbit.util.crypto.DefaultPBEStringCryptographer.decrypt()


            PBEStringCryptographer crypto = new DefaultPBEStringCryptographer(salt, 1);
            crypto.setAlgorithm(algorithm);
            crypto.setPassphrase(passPhrase);
            Base64 base64 = new Base64();
            byte[] bytes = base64.decode(encrypted.getBytes());
            return crypto.decrypt(bytes);
        } catch (StringCryptographerException ex) {
            throw new ServerCryptoException(ex);
        } catch (StringDecrypterException ex) {
            throw new ServerCryptoException(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.