- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章Java中常用加密/解密方法详解由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
安全问题已经成为一个越来越重要的问题,在Java中如何对重要数据进行加密解密是本文的主要内容.
1、常用的加密/解密算法 。
1.Base64 。
严格来说Base64并不是一种加密/解密算法,而是一种编码方式。Base64不生成密钥,通过Base64编码后的密文就可以直接“翻译”为明文,但是可以通过向明文中添加混淆字符来达到加密的效果.
2.DES 。
DES是一种基于56位密钥的对称算法,1976年被美国联邦政府的国家标准局确定为联邦资料处理标准(FIPS),随后在国际上广泛流传开来。现在DES已经不是一种安全的加密算法,已被公开破解,现在DES已经被高级加密标准(AES)所代替.
3.3DES 。
3DES是DES的一种派生算法,主要提升了DES的一些实用所需的安全性.
4.AES 。
AES是现在对称加密算法中最流行的算法之一.
2、实现所需的一些库 。
为了实现上述的算法,我们可以实用JDK自带的实现,也可以使用一些开源的第三方库,例如Bouncy Castle(https://www.bouncycastle.org/)和comnons codec(https://commons.apache.org/proper/commons-codec/).
3、具体实现 。
1.Base64 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
package
com.tancky.security;
import
java.io.IOException;
import
sun.misc.BASE64Decoder;
import
sun.misc.BASE64Encoder;
public
class
Base64Demo {
private
static
String src =
"TestBase64"
;
public
static
void
main(String[] args) {
Base64Demo.jdkBase64();
Base64Demo.commonsCodecBase64 ();
Base64Demo.bouncyCastleBase64 ();
}
//使用JDK的base64实现,
public
static
void
jdkBase64 (){
BASE64Encoder encoder =
new
BASE64Encoder();
String encode = encoder.encode(Base64Demo.src.getBytes());
System.out.println(
"encode: "
+ encode);
BASE64Decoder decoder =
new
BASE64Decoder();
try
{
String decode =
new
String ( decoder.decodeBuffer(encode));
System.out.println(
"decode: "
+ decode);
}
catch
(IOException e) {
e.printStackTrace();
}
}
//使用apache的commonsCodec实现
public
static
void
commonsCodecBase64 (){
byte
[] encodeBytes = org.apache.commons.codec.binary.Base64.encodeBase64(Base64Demo.src.getBytes());
String encode =
new
String (encodeBytes);
System.out.println(
"encode: "
+ encode);
byte
[] decodeBytes = org.apache.commons.codec.binary.Base64.decodeBase64(encode);
String decode =
new
String(decodeBytes);
System.out.println(
"decode: "
+ decode);
}
//使用bouncyCastlede实现
public
static
void
bouncyCastleBase64 () {
byte
[] encodeBytes = org.bouncycastle.util.encoders.Base64.encode(Base64Demo.src.getBytes()) ;
String encode =
new
String (encodeBytes);
System.out.println(
"encode: "
+ encode);
byte
[] decodeBytes = org.bouncycastle.util.encoders.Base64.decode(encode);
String decode =
new
String(decodeBytes);
System.out.println(
"decode: "
+ decode);
}
}
|
2.DES 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
package
com.tancky.security;
import
java.security.InvalidKeyException;
import
java.security.Key;
import
java.security.NoSuchAlgorithmException;
import
java.security.NoSuchProviderException;
import
java.security.Security;
import
java.security.spec.InvalidKeySpecException;
import
javax.crypto.BadPaddingException;
import
javax.crypto.Cipher;
import
javax.crypto.IllegalBlockSizeException;
import
javax.crypto.KeyGenerator;
import
javax.crypto.NoSuchPaddingException;
import
javax.crypto.SecretKey;
import
javax.crypto.SecretKeyFactory;
import
javax.crypto.spec.DESKeySpec;
import
org.bouncycastle.jce.provider.BouncyCastleProvider;
import
org.bouncycastle.util.encoders.Hex;
public
class
DESDemo {
private
static
String src =
"TestDES"
;
public
static
void
jdkDES () {
try
{
//生成密钥Key
KeyGenerator keyGenerator = KeyGenerator.getInstance(
"DES"
);
keyGenerator.init(
56
);
SecretKey secretKey = keyGenerator.generateKey();
byte
[] bytesKey = secretKey.getEncoded();
//KEY转换
DESKeySpec deSedeKeySpec =
new
DESKeySpec(bytesKey);
SecretKeyFactory factory = SecretKeyFactory.getInstance(
"DES"
);
Key convertSecretKey = factory.generateSecret(deSedeKeySpec);
//加密
Cipher cipher = Cipher.getInstance(
"DES/ECB/PKCS5Padding"
);
cipher.init(Cipher.ENCRYPT_MODE, convertSecretKey);
byte
[] encodeResult = cipher.doFinal(DESDemo.src.getBytes());
System.out.println(
"DESEncode :"
+ Hex.toHexString(encodeResult));
//解密
cipher.init(Cipher.DECRYPT_MODE,convertSecretKey);
byte
[] DecodeResult = cipher.doFinal(encodeResult);
System.out.println(
"DESDncode :"
+
new
String (DecodeResult));
}
catch
(NoSuchAlgorithmException e) {
e.printStackTrace();
}
catch
(InvalidKeyException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
catch
(InvalidKeySpecException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
catch
(NoSuchPaddingException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
catch
(IllegalBlockSizeException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
catch
(BadPaddingException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
}
public
static
void
bcDES (){
try
{
//使用BouncyCastle 的DES加密
Security.addProvider(
new
BouncyCastleProvider());
//生成密钥Key
KeyGenerator keyGenerator = KeyGenerator.getInstance(
"DES"
,
"BC"
);
keyGenerator.init(
56
);
SecretKey secretKey = keyGenerator.generateKey();
byte
[] bytesKey = secretKey.getEncoded();
//KEY转换
DESKeySpec deSedeKeySpec =
new
DESKeySpec(bytesKey);
SecretKeyFactory factory = SecretKeyFactory.getInstance(
"DES"
);
Key convertSecretKey = factory.generateSecret(deSedeKeySpec);
//加密
Cipher cipher = Cipher.getInstance(
"DES/ECB/PKCS5Padding"
);
cipher.init(Cipher.ENCRYPT_MODE, convertSecretKey);
byte
[] encodeResult = cipher.doFinal(DESDemo.src.getBytes());
System.out.println(
"DESEncode :"
+ Hex.toHexString(encodeResult));
//解密
cipher.init(Cipher.DECRYPT_MODE,convertSecretKey);
byte
[] DecodeResult = cipher.doFinal(encodeResult);
System.out.println(
"DESDncode :"
+
new
String (DecodeResult));
}
catch
(NoSuchAlgorithmException e) {
e.printStackTrace();
}
catch
(InvalidKeyException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
catch
(InvalidKeySpecException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
catch
(NoSuchPaddingException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
catch
(IllegalBlockSizeException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
catch
(BadPaddingException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
catch
(NoSuchProviderException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
}
public
static
void
main(String[] args) {
DESDemo.jdkDES ();
DESDemo.bcDES();
}
}
|
3.3DES 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
package
com.tancky.security;
import
java.security.InvalidKeyException;
import
java.security.Key;
import
java.security.NoSuchAlgorithmException;
import
java.security.NoSuchProviderException;
import
java.security.Security;
import
java.security.spec.InvalidKeySpecException;
import
javax.crypto.BadPaddingException;
import
javax.crypto.Cipher;
import
javax.crypto.IllegalBlockSizeException;
import
javax.crypto.KeyGenerator;
import
javax.crypto.NoSuchPaddingException;
import
javax.crypto.SecretKey;
import
javax.crypto.SecretKeyFactory;
import
javax.crypto.spec.DESedeKeySpec;
import
org.bouncycastle.jce.provider.BouncyCastleProvider;
import
org.bouncycastle.util.encoders.Hex;
public
class
TripleDESDemo {
private
static
String src =
"TestTripleDES"
;
public
static
void
jdkTripleDES () {
try
{
//生成密钥Key
KeyGenerator keyGenerator = KeyGenerator.getInstance(
"DESede"
);
keyGenerator.init(
168
);
SecretKey secretKey = keyGenerator.generateKey();
byte
[] bytesKey = secretKey.getEncoded();
//KEY转换
DESedeKeySpec deSedeKeySpec =
new
DESedeKeySpec(bytesKey);
SecretKeyFactory factory = SecretKeyFactory.getInstance(
"DESede"
);
Key convertSecretKey = factory.generateSecret(deSedeKeySpec);
//加密
Cipher cipher = Cipher.getInstance(
"DESede/ECB/PKCS5Padding"
);
cipher.init(Cipher.ENCRYPT_MODE, convertSecretKey);
byte
[] encodeResult = cipher.doFinal(TripleDESDemo.src.getBytes());
System.out.println(
"TripleDESEncode :"
+ Hex.toHexString(encodeResult));
//解密
cipher.init(Cipher.DECRYPT_MODE,convertSecretKey);
byte
[] DecodeResult = cipher.doFinal(encodeResult);
System.out.println(
"TripleDESDncode :"
+
new
String (DecodeResult));
}
catch
(NoSuchAlgorithmException e) {
e.printStackTrace();
}
catch
(InvalidKeyException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
catch
(InvalidKeySpecException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
catch
(NoSuchPaddingException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
catch
(IllegalBlockSizeException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
catch
(BadPaddingException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
}
public
static
void
bcTripleDES () {
try
{
Security.addProvider(
new
BouncyCastleProvider());
//生成密钥Key
KeyGenerator keyGenerator = KeyGenerator.getInstance(
"DESede"
,
"BC"
);
keyGenerator.getProvider();
keyGenerator.init(
168
);
SecretKey secretKey = keyGenerator.generateKey();
byte
[] bytesKey = secretKey.getEncoded();
//KEY转换
DESedeKeySpec deSedeKeySpec =
new
DESedeKeySpec(bytesKey);
SecretKeyFactory factory = SecretKeyFactory.getInstance(
"DESede"
);
Key convertSecretKey = factory.generateSecret(deSedeKeySpec);
//加密
Cipher cipher = Cipher.getInstance(
"DESede/ECB/PKCS5Padding"
);
cipher.init(Cipher.ENCRYPT_MODE, convertSecretKey);
byte
[] encodeResult = cipher.doFinal(TripleDESDemo.src.getBytes());
System.out.println(
"TripleDESEncode :"
+ Hex.toHexString(encodeResult));
//解密
cipher.init(Cipher.DECRYPT_MODE,convertSecretKey);
byte
[] DecodeResult = cipher.doFinal(encodeResult);
System.out.println(
"TripleDESDncode :"
+
new
String (DecodeResult));
}
catch
(NoSuchAlgorithmException e) {
e.printStackTrace();
}
catch
(InvalidKeyException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
catch
(InvalidKeySpecException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
catch
(NoSuchPaddingException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
catch
(IllegalBlockSizeException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
catch
(BadPaddingException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
catch
(NoSuchProviderException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
}
public
static
void
main(String[] args) {
jdkTripleDES ();
bcTripleDES ();
}
}
|
4.AES 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
package
com.tancky.security;
import
java.security.InvalidKeyException;
import
java.security.Key;
import
java.security.NoSuchAlgorithmException;
import
java.security.NoSuchProviderException;
import
java.security.SecureRandom;
import
java.security.Security;
import
javax.crypto.BadPaddingException;
import
javax.crypto.Cipher;
import
javax.crypto.IllegalBlockSizeException;
import
javax.crypto.KeyGenerator;
import
javax.crypto.NoSuchPaddingException;
import
javax.crypto.SecretKey;
import
javax.crypto.spec.SecretKeySpec;
import
org.bouncycastle.jce.provider.BouncyCastleProvider;
import
org.bouncycastle.util.encoders.Hex;
public
class
AESDemo {
private
static
String src =
"TestAES"
;
public
static
void
jdkAES (){
try
{
//生成Key
KeyGenerator keyGenerator = KeyGenerator.getInstance(
"AES"
);
keyGenerator.init(
128
);
//keyGenerator.init(128, new SecureRandom("seedseedseed".getBytes()));
//使用上面这种初始化方法可以特定种子来生成密钥,这样加密后的密文是唯一固定的。
SecretKey secretKey = keyGenerator.generateKey();
byte
[] keyBytes = secretKey.getEncoded();
//Key转换
Key key =
new
SecretKeySpec(keyBytes,
"AES"
);
//加密
Cipher cipher = Cipher.getInstance(
"AES/ECB/PKCS5Padding"
);
cipher.init(Cipher.ENCRYPT_MODE, key);
byte
[] encodeResult = cipher.doFinal(AESDemo.src.getBytes());
System.out.println(
"AESencode : "
+ Hex.toHexString(encodeResult) );
//解密
cipher.init(Cipher.DECRYPT_MODE, key);
byte
[] decodeResult = cipher.doFinal(encodeResult);
System.out.println(
"AESdecode : "
+
new
String (decodeResult));
}
catch
(NoSuchAlgorithmException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
catch
(NoSuchPaddingException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
catch
(InvalidKeyException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
catch
(IllegalBlockSizeException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
catch
(BadPaddingException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
}
public
static
void
bcAES (){
try
{
//使用BouncyCastle 的DES加密
Security.addProvider(
new
BouncyCastleProvider());
//生成Key
KeyGenerator keyGenerator = KeyGenerator.getInstance(
"AES"
,
"BC"
);
keyGenerator.getProvider();
keyGenerator.init(
128
);
SecretKey secretKey = keyGenerator.generateKey();
byte
[] keyBytes = secretKey.getEncoded();
//Key转换
Key key =
new
SecretKeySpec(keyBytes,
"AES"
);
//加密
Cipher cipher = Cipher.getInstance(
"AES/ECB/PKCS5Padding"
);
cipher.init(Cipher.ENCRYPT_MODE, key);
byte
[] encodeResult = cipher.doFinal(AESDemo.src.getBytes());
System.out.println(
"AESencode : "
+ Hex.toHexString(encodeResult) );
//解密
cipher.init(Cipher.DECRYPT_MODE, key);
byte
[] decodeResult = cipher.doFinal(encodeResult);
System.out.println(
"AESdecode : "
+
new
String (decodeResult));
}
catch
(NoSuchAlgorithmException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
catch
(NoSuchPaddingException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
catch
(InvalidKeyException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
catch
(IllegalBlockSizeException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
catch
(BadPaddingException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
catch
(NoSuchProviderException e) {
// TODO 自动生成的 catch 块
e.printStackTrace();
}
}
public
static
void
main(String[] args) {
jdkAES();
bcAES();
}
}
|
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持我! 。
原文链接:http://www.cnblogs.com/tancky/p/6409823.html 。
最后此篇关于Java中常用加密/解密方法详解的文章就讲到这里了,如果你想了解更多关于Java中常用加密/解密方法详解的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我有一个 C# 应用程序调用 Java 网络服务来验证用户密码。我想让 C# 应用程序加密密码,然后让 Java Web 服务解密密码。我已经完成了 Java 端的代码(解密代码),但我无法找出 C#
我正在使用以下代码在使用 openssl 的 Windows 中使用 C 加密和解密二进制数据。如您所见,在这两个函数中,我都知道纯文本的大小。有什么方法可以在不知道纯文本大小的情况下解密消息? #i
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
我有一个非常恼人的问题,Java中使用RSA算法对字符串进行不可靠的加密和解密。它似乎只能在大约 35% 的时间内工作,而且我不明白为什么它有时能工作,有时却不能。这是我写的一些测试代码,试图验证加密
我已经设法编写了用于文件加密/解密的函数。但它非常慢,尤其是随着文件大小的增加。例如几MB长的音频/视频文件 我几乎浏览了所有帖子来改进它,并尝试更改算法。如果有任何更改可以帮助我提高性能,请帮助我。
我正在尝试让我的转置密码发挥作用。 每当我将加密方法得到的密文输入解密方法时,我应该得到原始的明文......但事实并非如此...... 我做错了什么? 感谢您的帮助! public String E
我正在使用密码来加密和解密消息: public String encrypt(String string) throws InvalidKeyException, IllegalBlockSizeEx
我有一个在 MySQL 中存储数据的 spring-mvc 堆栈。其中一些数据需要保护,所以我想我应该加密它。由于我以后可能需要使用这些数据(信用卡、SSN 等),所以我需要对其进行解密。我认为这排除
作为一名SEOER,都想了解百度算法,通过算法原理来找到捷径的优化方案,那么今天我把研究多年的百度算法原理解密给大家,可能不是最好的,但是我可以给大家保证,这些都是非常实际的。希望给SEOER带来一
我试图找到一种技术来加密和解密程序中的文件,而无需将密码硬编码到程序中,也无需向用户询问密码。 如果我也可以从我正在编写的另一个程序中解密文件,那就太好了。 到目前为止,我还没有多少运气找到一种看起来
有没有一种方法可以使用作为字符串参数传递给程序的私钥而不是使用存储在机器上的证书来解密 PowerShell 中的 RSA?欢迎任何帮助,我的代码如下。 Function Decrypt-Asymme
通过问题Is it possible to use the Grails Jasypt plugin outside the GORM layer for simple String encrypti
我需要解密/加密我的域类中的几列,并且正在寻找有关如何做的信息。我已经找到了jasypt加密插件,但不幸的是它似乎与Grails 2.4不兼容。 我可能可以将一些东西拼凑在一起,但是想要确保Im遵循最
我需要有关声音文件加密/解密的帮助。我想在存储这个声音文件时加密一个声音文件,并在播放这个文件时解密它。我阅读了有关 java 中的加密/解密以及 java 中可用于此的大量示例代码。但这些程序不适用
我很感兴趣是否可以使用 Excel Visual Basic 和某些加密服务提供程序进行字符串加密/解密。 我找到了一个演练 Encrypting and Decrypting Strings in
我们正在使用加密/解密和UIIMAGE。如果我们在不保存到iphone画廊的情况下进行加密和解密以及UIIMAge,则可以正常工作,但是,如果我们进行加密,保存到画廊,将(加密的图像)加载到应用程序中
我正在做一个像这样的简单程序: package rsaexample; import java.io.*; import java.math.BigInteger; import java.secur
我发现这段代码返回给定字符串的校验和。 public static String getChecksum(String md5) { int counter = 0; while (c
我在 Java SE 和 Android 项目上使用相同的代码。在 Java 和 Android 中运行的应用程序连接到相同的 MQTT 代理并交换消息。消息使用 AES 进行加密/解密。我对 Jav
我想在 openssl/libcrypto 中使用 RSA 加密/解密一个长文件(我知道 AES 更好,但这只是为了比较)。我将输入文件分成大小为 numBlocks = inputFileLengt
我是一名优秀的程序员,十分优秀!