在Java中,可以使用PrivateKey
對象對數據進行加密和解密。這里是一個使用Java內置的Cipher
類進行加密和解密的示例。假設我們有一個私鑰(PrivateKey
)和一個待加密的字符串。
首先,確保你已經正確安裝了Java JDK并配置了環境變量。
接下來,按照以下步驟進行加密和解密操作:
import java.nio.charset.StandardCharsets;
import java.security.KeyPair;
import java.security.KeyPairGenerator;
import java.security.PrivateKey;
import java.security.PublicKey;
import javax.crypto.Cipher;
public class Main {
public static void main(String[] args) throws Exception {
KeyPairGenerator keyPairGenerator = KeyPairGenerator.getInstance("RSA");
keyPairGenerator.initialize(2048);
KeyPair keyPair = keyPairGenerator.generateKeyPair();
PublicKey publicKey = keyPair.getPublic();
PrivateKey privateKey = keyPair.getPrivate();
}
}
public static String encrypt(String plainText, PrivateKey privateKey) throws Exception {
Cipher cipher = Cipher.getInstance("RSA");
cipher.init(Cipher.ENCRYPT_MODE, privateKey);
byte[] encryptedBytes = cipher.doFinal(plainText.getBytes(StandardCharsets.UTF_8));
return new String(encryptedBytes, StandardCharsets.UTF_8);
}
public static String decrypt(String encryptedText, PrivateKey privateKey) throws Exception {
Cipher cipher = Cipher.getInstance("RSA");
cipher.init(Cipher.DECRYPT_MODE, privateKey);
byte[] decryptedBytes = cipher.doFinal(encryptedText.getBytes(StandardCharsets.UTF_8));
return new String(decryptedBytes, StandardCharsets.UTF_8);
}
public static void main(String[] args) {
try {
KeyPairGenerator keyPairGenerator = KeyPairGenerator.getInstance("RSA");
keyPairGenerator.initialize(2048);
KeyPair keyPair = keyPairGenerator.generateKeyPair();
PublicKey publicKey = keyPair.getPublic();
PrivateKey privateKey = keyPair.getPrivate();
String plainText = "Hello, World!";
String encryptedText = encrypt(plainText, privateKey);
System.out.println("Encrypted text: " + encryptedText);
String decryptedText = decrypt(encryptedText, privateKey);
System.out.println("Decrypted text: " + decryptedText);
} catch (Exception e) {
e.printStackTrace();
}
}
這個示例展示了如何使用Java的PrivateKey
對象對字符串進行加密和解密。請注意,這個示例使用了RSA算法,但你也可以使用其他加密算法,如AES。在實際應用中,你可能需要處理異常和錯誤,并確保密鑰的安全存儲。