本文整理汇总了Java中org.jasypt.encryption.pbe.StandardPBEByteEncryptor类的典型用法代码示例。如果您正苦于以下问题:Java StandardPBEByteEncryptor类的具体用法?Java StandardPBEByteEncryptor怎么用?Java StandardPBEByteEncryptor使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
StandardPBEByteEncryptor类属于org.jasypt.encryption.pbe包,在下文中一共展示了StandardPBEByteEncryptor类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: standardPBEByteEncryptor
import org.jasypt.encryption.pbe.StandardPBEByteEncryptor; //导入依赖的package包/类
@Test
public void standardPBEByteEncryptor() {
for (String algorithm : PBEAlgorithms) {
if (log.isDebugEnabled())
log.debug("StandardPBEStringEncryptor Algorithm = [{}]", algorithm);
try {
StandardPBEByteEncryptor encryptor = new StandardPBEByteEncryptor();
encryptor.setPassword("debop");
encryptor.setAlgorithm(algorithm);
byte[] encryptedBytes = encryptor.encrypt(StringTool.getUtf8Bytes(PLAIN_TEXT));
byte[] decryptedBytes = encryptor.decrypt(encryptedBytes);
Assert.assertEquals(PLAIN_TEXT, StringTool.getUtf8String(decryptedBytes));
} catch (Exception e) {
log.error(algorithm + "은 지원하지 않습니다.", e);
}
}
}
示例2: getEncryptor
import org.jasypt.encryption.pbe.StandardPBEByteEncryptor; //导入依赖的package包/类
private static StandardPBEByteEncryptor getEncryptor(String key)
{
StandardPBEByteEncryptor encryptor = new StandardPBEByteEncryptor();
encryptor.setPassword(key);
encryptor.setAlgorithm("PBEWithSHA1AndRC4_128");
encryptor.setKeyObtentionIterations(4000);
return encryptor;
}
示例3: standardPBEByteEncryptor
import org.jasypt.encryption.pbe.StandardPBEByteEncryptor; //导入依赖的package包/类
@Bean
public StandardPBEByteEncryptor standardPBEByteEncryptor() {
StandardPBEByteEncryptor sse = new StandardPBEByteEncryptor();
sse.setConfig(environmentStringPBEConfig());
sse.setSaltGenerator(randomSaltGenerator());
sse.setKeyObtentionIterations(10000);
return sse;
}
示例4: SymmetricByteEncryptorBase
import org.jasypt.encryption.pbe.StandardPBEByteEncryptor; //导入依赖的package包/类
public SymmetricByteEncryptorBase(String password) {
byteEncryptor = new StandardPBEByteEncryptor();
byteEncryptor.setAlgorithm(getAlgorithm());
byteEncryptor.setPassword(password);
if (log.isDebugEnabled())
log.debug("[{}] 인스턴스를 생성했습니다. algorithm=[{}]", getClass().getName(), getAlgorithm());
}
示例5: encrypt
import org.jasypt.encryption.pbe.StandardPBEByteEncryptor; //导入依赖的package包/类
public byte[] encrypt(byte[] data, String password) {
if (passwordEncoder.checkPassword(password)) {
StandardPBEByteEncryptor cipher = new StandardPBEByteEncryptor();
cipher.setAlgorithm(algorithm);
cipher.setPassword(password);
return cipher.encrypt(data);
} else {
logger.error("password not matched!!!");
throw new IllegalArgumentException("password not matched!!!");
}
}
示例6: decrypt
import org.jasypt.encryption.pbe.StandardPBEByteEncryptor; //导入依赖的package包/类
public byte[] decrypt(byte[] encryptedData, String password) {
if (passwordEncoder.checkPassword(password)) {
StandardPBEByteEncryptor cipher = new StandardPBEByteEncryptor();
cipher.setAlgorithm(algorithm);
cipher.setPassword(password);
return cipher.decrypt(encryptedData);
} else {
logger.error("password not matched!!!");
throw new IllegalArgumentException("password not matched!!!");
}
}
示例7: encrypt
import org.jasypt.encryption.pbe.StandardPBEByteEncryptor; //导入依赖的package包/类
public static byte[] encrypt(byte[] bytes, String key)
{
StandardPBEByteEncryptor encryptor = getEncryptor(key);
return encryptor.encrypt(bytes);
}
示例8: decrypt
import org.jasypt.encryption.pbe.StandardPBEByteEncryptor; //导入依赖的package包/类
public static byte[] decrypt(byte[] bytes, String key)
{
StandardPBEByteEncryptor encryptor = getEncryptor(key);
return encryptor.decrypt(bytes);
}
示例9: StrongBinaryEncryptor
import org.jasypt.encryption.pbe.StandardPBEByteEncryptor; //导入依赖的package包/类
/**
* Creates a new instance of <tt>StrongBinaryEncryptor</tt>.
*/
public StrongBinaryEncryptor() {
super();
this.encryptor = new StandardPBEByteEncryptor();
this.encryptor.setAlgorithm("PBEWithMD5AndTripleDES");
}
示例10: BasicBinaryEncryptor
import org.jasypt.encryption.pbe.StandardPBEByteEncryptor; //导入依赖的package包/类
/**
* Creates a new instance of <tt>BasicBinaryEncryptor</tt>.
*/
public BasicBinaryEncryptor() {
super();
this.encryptor = new StandardPBEByteEncryptor();
this.encryptor.setAlgorithm("PBEWithMD5AndDES");
}