本文整理汇总了Java中org.openyu.commons.lang.EncodingHelper.decodeBase64方法的典型用法代码示例。如果您正苦于以下问题:Java EncodingHelper.decodeBase64方法的具体用法?Java EncodingHelper.decodeBase64怎么用?Java EncodingHelper.decodeBase64使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.openyu.commons.lang.EncodingHelper
的用法示例。
在下文中一共展示了EncodingHelper.decodeBase64方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: decryptBase64
import org.openyu.commons.lang.EncodingHelper; //导入方法依赖的package包/类
public static byte[] decryptBase64(String value, SecretKey secretKey, String algorithm) {
byte[] buffs = EncodingHelper.decodeBase64(value);
return decrypt(buffs, secretKey, algorithm);
}
示例2: encryptDecryptByBase64
import org.openyu.commons.lang.EncodingHelper; //导入方法依赖的package包/类
@Test
// 1000000 times: 13034 mills.
// 1000000 times: 13543 mills.
// 1000000 times: 11782 mills.
public void encryptDecryptByBase64() {
String value = "中文測試abcdef";
//
String algorithm = "DES";
SecretKey secretKey = SecurityHelperWithoutPool
.randomSecretKey(algorithm);
String keyFile = "encryptDecryptByBase64";
// 將key寫入檔案,給解密用
String writeKeyFile = SecurityHelperWithoutPool.writeSecretKey(keyFile,
secretKey);
assertNotNull(writeKeyFile);
//
String encodeByBase64 = null;
byte[] encrypt = null;
int count = 1;
long beg = System.currentTimeMillis();
for (int i = 0; i < count; i++) {
encrypt = SecurityHelperWithoutPool.encrypt(value, secretKey,
algorithm);
encodeByBase64 = EncodingHelper.encodeBase64String(encrypt);
}
long end = System.currentTimeMillis();
System.out.println(count + " times: " + (end - beg) + " mills. ");
System.out.println(encodeByBase64.length() + ", " + encodeByBase64);// 32,
// z1mXJdE7WYvMsde970GNk6XyyxY9a85i
//
byte[] decodeByBase64 = EncodingHelper.decodeBase64(encodeByBase64);
// 從檔案讀取key
secretKey = SecurityHelperWithoutPool.readSecretKey(keyFile);
assertNotNull(secretKey);
//
byte[] decrypt = SecurityHelperWithoutPool.decrypt(decodeByBase64,
secretKey, "DES");
//
String stringValue = ByteHelper.toString(decrypt);
System.out.println(stringValue);// 中文測試abcdef
assertEquals(value, stringValue);
}
示例3: encryptDecryptByBase64
import org.openyu.commons.lang.EncodingHelper; //导入方法依赖的package包/类
@Test
// 1000000 times: 13034 mills.
// 1000000 times: 13543 mills.
// 1000000 times: 11782 mills.
public void encryptDecryptByBase64() {
String value = "中文測試abcdef";
//
String algorithm = "DES";
SecretKey secretKey = SecurityHelper.randomSecretKey(algorithm);
String keyFile = "encryptDecryptByBase64";
// 將key寫入檔案,給解密用
String writeKeyFile = SecurityHelper.writeSecretKey(keyFile, secretKey);
assertNotNull(writeKeyFile);
//
String encodeByBase64 = null;
byte[] encrypt = null;
int count = 1;
long beg = System.currentTimeMillis();
for (int i = 0; i < count; i++) {
encrypt = SecurityHelper.encrypt(value, secretKey, algorithm);
encodeByBase64 = EncodingHelper.encodeBase64String(encrypt);
}
long end = System.currentTimeMillis();
System.out.println(count + " times: " + (end - beg) + " mills. ");
System.out.println(encodeByBase64.length() + ", " + encodeByBase64);// 32,
// z1mXJdE7WYvMsde970GNk6XyyxY9a85i
//
byte[] decodeByBase64 = EncodingHelper.decodeBase64(encodeByBase64);
// 從檔案讀取key
secretKey = SecurityHelper.readSecretKey(keyFile);
assertNotNull(secretKey);
//
byte[] decrypt = SecurityHelper.decrypt(decodeByBase64, secretKey,
"DES");
//
String stringValue = ByteHelper.toString(decrypt);
System.out.println(stringValue);// 中文測試abcdef
assertEquals(value, stringValue);
}