当前位置: 首页>>代码示例>>Java>>正文


Java SecurityHelper.encrypt方法代码示例

本文整理汇总了Java中org.openyu.commons.security.SecurityHelper.encrypt方法的典型用法代码示例。如果您正苦于以下问题:Java SecurityHelper.encrypt方法的具体用法?Java SecurityHelper.encrypt怎么用?Java SecurityHelper.encrypt使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.openyu.commons.security.SecurityHelper的用法示例。


在下文中一共展示了SecurityHelper.encrypt方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: encrypt

import org.openyu.commons.security.SecurityHelper; //导入方法依赖的package包/类
@Test
// 1000000 times: 14767 mills.
// 1000000 times: 13543 mills.
// 1000000 times: 11782 mills.
public void encrypt() {
	String value = "中文測試abcdef";

	String algorithm = "DES";
	// 隨機key
	SecretKey secretKey = SecurityHelper.randomSecretKey(algorithm);
	byte[] result = null;

	int count = 1;
	long beg = System.currentTimeMillis();
	for (int i = 0; i < count; i++) {
		result = SecurityHelper.encrypt(value, secretKey, algorithm);
	}
	long end = System.currentTimeMillis();
	System.out.println(count + " times: " + (end - beg) + " mills. ");

	SystemHelper.println(result);
	assertEquals(24, result.length);
}
 
开发者ID:mixaceh,项目名称:openyu-commons,代码行数:24,代码来源:SecurityHelperTest.java

示例2: encryptKeyPair

import org.openyu.commons.security.SecurityHelper; //导入方法依赖的package包/类
@Test
// 隨機key
// 1000000 times: 14767 mills.
// 1000000 times: 13543 mills.
// 1000000 times: 11782 mills.
public void encryptKeyPair() {
	String value = "中文測試abcdef";

	String algorithm = "RSA";
	KeyPair keyPair = SecurityHelper.randomKeyPair(1024, algorithm);
	byte[] result = null;

	int count = 1;
	long beg = System.currentTimeMillis();
	for (int i = 0; i < count; i++) {
		result = SecurityHelper.encrypt(value, keyPair, algorithm);
	}
	long end = System.currentTimeMillis();
	System.out.println(count + " times: " + (end - beg) + " mills. ");

	SystemHelper.println(result);
	assertEquals(128, result.length);
}
 
开发者ID:mixaceh,项目名称:openyu-commons,代码行数:24,代码来源:SecurityHelperTest.java

示例3: decrypt

import org.openyu.commons.security.SecurityHelper; //导入方法依赖的package包/类
@Test
// 隨機key
// 1000000 times: 13034 mills.
// 1000000 times: 13543 mills.
// 1000000 times: 11782 mills.
public void decrypt() {
	String value = "中文測試abcdef";

	String algorithm = "DES";
	SecretKey secretKey = SecurityHelper.randomSecretKey(algorithm);
	byte[] encrypt = SecurityHelper.encrypt(value, secretKey, algorithm);

	byte[] result = null;

	int count = 1;
	long beg = System.currentTimeMillis();
	for (int i = 0; i < count; i++) {
		result = SecurityHelper.decrypt(encrypt, secretKey, algorithm);
	}
	long end = System.currentTimeMillis();
	System.out.println(count + " times: " + (end - beg) + " mills. ");

	SystemHelper.println(result);
	assertEquals(18, result.length);
	//
	String stringValue = ByteHelper.toString(result);
	System.out.println(stringValue);// 中文測試abcdef
	assertEquals(value, stringValue);
}
 
开发者ID:mixaceh,项目名称:openyu-commons,代码行数:30,代码来源:SecurityHelperTest.java

示例4: encryptAssignKey

import org.openyu.commons.security.SecurityHelper; //导入方法依赖的package包/类
@Test
// 指定key
// 1000000 times: 14767 mills.
// 1000000 times: 13543 mills.
// 1000000 times: 11782 mills.
public void encryptAssignKey() {
	String value = "中文測試abcdef";

	String algorithm = "DES";
	// byte[] assignKey = new byte[] { 1, 2, 3, 4, 5, 6, 7, 8 };
	// String assignKey="ABCDEFGH"; //[8]
	String assignKey = "abcdefgh"; // [8]
	SecretKey secretKey = SecurityHelper.createSecretKey(assignKey,
			algorithm);

	byte[] result = null;

	int count = 1;
	long beg = System.currentTimeMillis();
	for (int i = 0; i < count; i++) {
		result = SecurityHelper.encrypt(value, secretKey, algorithm);
	}
	long end = System.currentTimeMillis();
	System.out.println(count + " times: " + (end - beg) + " mills. ");

	SystemHelper.println(result);// 119, -18, -62, 95, -17, 33, 105, 56, 72,
									// -20, 88, 99, -63, 106, -84, -88, 100,
									// 72, -70, -109, -58, 107, 24, 38
	assertEquals(24, result.length);
}
 
开发者ID:mixaceh,项目名称:openyu-commons,代码行数:31,代码来源:SecurityHelperTest.java

示例5: decryptAssignKey

import org.openyu.commons.security.SecurityHelper; //导入方法依赖的package包/类
@Test
// 指定key
// 1000000 times: 13034 mills.
// 1000000 times: 13543 mills.
// 1000000 times: 11782 mills.
public void decryptAssignKey() {
	String value = "中文測試abcdef";

	String algorithm = "DES";
	// byte[] assignKey = new byte[] { 1, 2, 3, 4, 5, 6, 7, 8 };
	// String assignKey="ABCDEFGH"; //[8]
	String assignKey = "abcdefgh"; // [8]
	SecretKey secretKey = SecurityHelper.createSecretKey(assignKey,
			algorithm);
	byte[] encrypt = SecurityHelper.encrypt(value, secretKey, algorithm);

	byte[] result = null;

	int count = 1;
	long beg = System.currentTimeMillis();
	for (int i = 0; i < count; i++) {
		result = SecurityHelper.decrypt(encrypt, secretKey, algorithm);
	}
	long end = System.currentTimeMillis();
	System.out.println(count + " times: " + (end - beg) + " mills. ");

	SystemHelper.println(result);
	assertEquals(18, result.length);
	//
	String stringValue = ByteHelper.toString(result);
	System.out.println(stringValue);// 中文測試abcdef
	assertEquals(value, stringValue);
}
 
开发者ID:mixaceh,项目名称:openyu-commons,代码行数:34,代码来源:SecurityHelperTest.java

示例6: decryptKeyPair

import org.openyu.commons.security.SecurityHelper; //导入方法依赖的package包/类
@Test
// 隨機key
// 1000000 times: 13034 mills.
// 1000000 times: 13543 mills.
// 1000000 times: 11782 mills.
public void decryptKeyPair() {
	String value = "中文測試abcdef";

	String algorithm = "RSA";
	KeyPair keyPair = SecurityHelper.randomKeyPair(1024, algorithm);
	byte[] encryptValue = SecurityHelper.encrypt(value, keyPair, algorithm);
	;

	byte[] result = null;

	int count = 1;
	long beg = System.currentTimeMillis();
	for (int i = 0; i < count; i++) {
		// result = SecurityHelper.decrypt(encryptValue, keyPair,
		// "RSA/ECB/PKCS1Padding");
		result = SecurityHelper.decrypt(encryptValue, keyPair, algorithm);
	}
	long end = System.currentTimeMillis();
	System.out.println(count + " times: " + (end - beg) + " mills. ");

	SystemHelper.println(result);
	assertEquals(18, result.length);
	//
	String stringValue = ByteHelper.toString(result);
	System.out.println(stringValue);// 中文測試abcdef
	assertEquals(value, stringValue);
}
 
开发者ID:mixaceh,项目名称:openyu-commons,代码行数:33,代码来源:SecurityHelperTest.java

示例7: encryptDecryptHex

import org.openyu.commons.security.SecurityHelper; //导入方法依赖的package包/类
@Test
// 1000000 times: 13034 mills.
// 1000000 times: 13543 mills.
// 1000000 times: 11782 mills.
public void encryptDecryptHex() {
	String value = "中文測試abcdef";
	//
	String algorithm = "DES";
	SecretKey secretKey = SecurityHelper.randomSecretKey(algorithm);
	String keyFile = "encryptDecryptByHex";

	// 將key寫入檔案,給解密用
	String writeKeyFile = SecurityHelper.writeSecretKey(keyFile, secretKey);
	assertNotNull(writeKeyFile);
	//
	String encodeByHex = null;
	byte[] encrypt = null;
	int count = 1;
	long beg = System.currentTimeMillis();
	for (int i = 0; i < count; i++) {
		encrypt = SecurityHelper.encrypt(value, secretKey, algorithm);
		encodeByHex = EncodingHelper.encodeHex(encrypt);
	}
	long end = System.currentTimeMillis();
	System.out.println(count + " times: " + (end - beg) + " mills. ");

	System.out.println(encodeByHex.length() + ", " + encodeByHex);// 48,
																	// b824f54aa6cc7c0003afea7627c5c308b5e6842fcf6481cc
	//
	byte[] decodeByHex = EncodingHelper.decodeHex(encodeByHex);

	// 從檔案讀取key
	secretKey = SecurityHelper.readSecretKey(keyFile);
	assertNotNull(secretKey);
	//
	byte[] decrypt = SecurityHelper.decrypt(decodeByHex, secretKey, "DES");
	//
	String stringValue = ByteHelper.toString(decrypt);
	System.out.println(stringValue);// 中文測試abcdef
	assertEquals(value, stringValue);
}
 
开发者ID:mixaceh,项目名称:openyu-commons,代码行数:42,代码来源:SecurityHelperTest.java

示例8: encryptDecryptByBase64

import org.openyu.commons.security.SecurityHelper; //导入方法依赖的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);
}
 
开发者ID:mixaceh,项目名称:openyu-commons,代码行数:43,代码来源:SecurityHelperTest.java


注:本文中的org.openyu.commons.security.SecurityHelper.encrypt方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。