本文整理汇总了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);
}
}
}
开发者ID:debop,项目名称:debop4j,代码行数:21,代码来源:JasyptTest.java
示例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;
}
开发者ID:PlayPen,项目名称:playpen-core,代码行数:9,代码来源:AuthUtils.java
示例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;
}
开发者ID:bjornharvold,项目名称:bearchoke,代码行数:10,代码来源:EncryptionConfig.java
示例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());
}
开发者ID:debop,项目名称:debop4j,代码行数:9,代码来源:SymmetricByteEncryptorBase.java
示例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!!!");
}
}
开发者ID:eGovFrame,项目名称:egovframework.rte.root,代码行数:14,代码来源:EgovGeneralCryptoServiceImpl.java
示例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!!!");
}
}
开发者ID:eGovFrame,项目名称:egovframework.rte.root,代码行数:14,代码来源:EgovGeneralCryptoServiceImpl.java
示例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);
}
开发者ID:PlayPen,项目名称:playpen-core,代码行数:6,代码来源:AuthUtils.java
示例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);
}
开发者ID:PlayPen,项目名称:playpen-core,代码行数:6,代码来源:AuthUtils.java
示例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");
}
开发者ID:DiamondLightSource,项目名称:daq-eclipse,代码行数:9,代码来源:StrongBinaryEncryptor.java
示例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");
}
开发者ID:DiamondLightSource,项目名称:daq-eclipse,代码行数:9,代码来源:BasicBinaryEncryptor.java
注:本文中的org.jasypt.encryption.pbe.StandardPBEByteEncryptor类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论