什么是Java加密技术?
Java加密技术指的是在Java编程语言中使用加密算法对数据进行加密和解密的技术。Java加密技术可以用于保护数据的安全性,防范非法攻击等。
使用攻略:
1. 导入加密库
Java加密库主要包括以下几种:
- JCA(Java Cryptography Architecture):Java密码体系结构。
- JCE(Java Cryptography Extension):Java密码扩展。
为了使用Java加密技术,我们需要先在项目中导入相应的加密库。可以通过在pom.xml
文件中加入以下依赖来导入:
<dependencies>
<!-- JCA -->
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
<version>1.69</version>
</dependency>
<!-- JCE -->
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15on</artifactId>
<version>1.69</version>
</dependency>
</dependencies>
2. 加密
2.1 对称加密
对称加密是一种加密方式,它使用相同的密钥进行加密和解密。以下是对称加密的示例代码:
import javax.crypto.Cipher;
import javax.crypto.KeyGenerator;
import javax.crypto.SecretKey;
import javax.crypto.spec.SecretKeySpec;
import java.security.NoSuchAlgorithmException;
import java.security.SecureRandom;
public class SymmetricEncryption {
private static final String algorithm = "AES";
private static final int keySize = 128;
// 生成秘钥
private static SecretKey generateKey() throws NoSuchAlgorithmException {
KeyGenerator keyGen = KeyGenerator.getInstance(algorithm);
SecureRandom secureRandom = new SecureRandom();
keyGen.init(keySize, secureRandom);
return keyGen.generateKey();
}
// 加密
public static byte[] encrypt(byte[] input, SecretKey key) throws Exception {
Cipher cipher = Cipher.getInstance(algorithm);
cipher.init(Cipher.ENCRYPT_MODE, key);
return cipher.doFinal(input);
}
// 解密
public static byte[] decrypt(byte[] input, SecretKey key) throws Exception {
Cipher cipher = Cipher.getInstance(algorithm);
cipher.init(Cipher.DECRYPT_MODE, key);
return cipher.doFinal(input);
}
// 测试
public static void main(String[] args) throws Exception {
String input = "encrypt me";
SecretKey key = generateKey();
byte[] encrypted = encrypt(input.getBytes(), key);
byte[] decrypted = decrypt(encrypted, key);
System.out.println("origin: " + input);
System.out.println("encrypted: " + new String(encrypted));
System.out.println("decrypted: " + new String(decrypted));
}
}
2.2 非对称加密
非对称加密是一种加密方式,它使用公钥和私钥进行加密和解密。以下是非对称加密的示例代码:
import java.security.KeyPair;
import java.security.KeyPairGenerator;
import java.security.PrivateKey;
import java.security.PublicKey;
import java.util.Base64;
public class AsymmetricEncryption {
private static final String algorithm = "RSA";
// 生成秘钥对
public static KeyPair generateKeyPair(int keySize) throws Exception {
KeyPairGenerator keyPairGenerator = KeyPairGenerator.getInstance(algorithm);
keyPairGenerator.initialize(keySize);
return keyPairGenerator.generateKeyPair();
}
// 加密
public static byte[] encrypt(byte[] input, PublicKey publicKey) throws Exception {
Cipher cipher = Cipher.getInstance(algorithm);
cipher.init(Cipher.ENCRYPT_MODE, publicKey);
return cipher.doFinal(input);
}
// 解密
public static byte[] decrypt(byte[] input, PrivateKey privateKey) throws Exception {
Cipher cipher = Cipher.getInstance(algorithm);
cipher.init(Cipher.DECRYPT_MODE, privateKey);
return cipher.doFinal(input);
}
// 测试
public static void main(String[] args) throws Exception {
String input = "encrypt me";
KeyPair keyPair = generateKeyPair(2048);
byte[] encrypted = encrypt(input.getBytes(), keyPair.getPublic());
byte[] decrypted = decrypt(encrypted, keyPair.getPrivate());
System.out.println("origin: " + input);
System.out.println("encrypted: " + Base64.getEncoder().encodeToString(encrypted));
System.out.println("decrypted: " + new String(decrypted));
}
}
3. 常见加密算法
常见的加密算法有:
- 对称加密算法:AES、DES、3DES等。
- 非对称加密算法:RSA、DSA、ECDSA等。
- 散列函数:MD5、SHA-1、SHA-256等。
以上示例代码中已经使用的加密算法有:
- 对称加密算法:AES。
- 非对称加密算法:RSA。
结语
Java加密技术在保护数据安全方面扮演着重要的角色。上文示例代码展示了对称加密和非对称加密两种常见加密方式的使用,希望可以帮助你更好的了解Java加密技术的使用。