您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
在Java中,静态类是不能被实例化的类
以下是一个使用静态类实现加密和解密的示例:
import javax.crypto.Cipher;
import javax.crypto.KeyGenerator;
import javax.crypto.SecretKey;
import javax.crypto.spec.SecretKeySpec;
import java.util.Base64;
public class CryptoUtil {
// 静态内部类,用于生成密钥
private static class KeyGeneratorHolder {
private static final SecretKey SECRET_KEY = generateSecretKey();
}
// 生成AES密钥
private static SecretKey generateSecretKey() {
try {
KeyGenerator keyGenerator = KeyGenerator.getInstance("AES");
keyGenerator.init(128);
return keyGenerator.generateKey();
} catch (Exception e) {
throw new RuntimeException("Error generating secret key", e);
}
}
// 加密方法
public static String encrypt(String plainText, SecretKey secretKey) {
try {
Cipher cipher = Cipher.getInstance("AES");
cipher.init(Cipher.ENCRYPT_MODE, secretKey);
byte[] encryptedBytes = cipher.doFinal(plainText.getBytes());
return Base64.getEncoder().encodeToString(encryptedBytes);
} catch (Exception e) {
throw new RuntimeException("Error encrypting text", e);
}
}
// 解密方法
public static String decrypt(String encryptedText, SecretKey secretKey) {
try {
Cipher cipher = Cipher.getInstance("AES");
cipher.init(Cipher.DECRYPT_MODE, secretKey);
byte[] decryptedBytes = cipher.doFinal(Base64.getDecoder().decode(encryptedText));
return new String(decryptedBytes);
} catch (Exception e) {
throw new RuntimeException("Error decrypting text", e);
}
}
public static void main(String[] args) {
String plainText = "Hello, World!";
String encryptedText = encrypt(plainText, KeyGeneratorHolder.SECRET_KEY);
System.out.println("Encrypted text: " + encryptedText);
String decryptedText = decrypt(encryptedText, KeyGeneratorHolder.SECRET_KEY);
System.out.println("Decrypted text: " + decryptedText);
}
}
在这个示例中,我们创建了一个名为CryptoUtil
的静态类,它包含两个静态方法encrypt
和decrypt
,分别用于加密和解密字符串。我们还创建了一个静态内部类KeyGeneratorHolder
,用于生成AES密钥。这样,我们可以确保密钥只生成一次,而不是每次调用加密或解密方法时都生成。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。