Java密碼學解密數據
可以使用javax.crypto
包的Cipher
類解密加密數據。 按照下面給出的步驟使用Java解密給定數據。
第1步:創建KeyPairGenerator對象
KeyPairGenerator
類提供getInstance()
方法,該方法接受表示所需密鑰生成算法的String變量,並返回生成密鑰的KeyPairGenerator
對象。
使用getInstance()
方法創建KeyPairGenerator
對象,如下所示。
//Creating KeyPair generator object
KeyPairGenerator keyPairGen = KeyPairGenerator.getInstance("DSA");
第2步:初始化KeyPairGenerator對象
KeyPairGenerator
類提供了一個名爲initialize()
的方法,該方法用於初始化密鑰對生成器。 此方法接受表示密鑰大小的整數值。
使用initialize()
方法初始化在上一步中創建的KeyPairGenerator
對象,如下所示。
//Initializing the KeyPairGenerator
keyPairGen.initialize(2048);
第3步:生成KeyPairGenerator
使用KeyPairGenerator
類的generateKeyPair()
方法生成KeyPair
。 使用此方法生成密鑰對,如下所示。
//Generate the pair of keys
KeyPair pair = keyPairGen.generateKeyPair();
第4步:獲取公鑰
使用getPublic()
方法從生成的密鑰對對象中獲取公鑰,如下所示。
//Getting the public key from the key pair
PublicKey publicKey = pair.getPublic();
第5步:創建一個Cipher對象
Cipher
類的getInstance()
方法接受表示所需轉換的String變量,並返回實現給定轉換的Cipher
對象。
使用getInstance()
方法創建Cipher
對象,如下所示。
//Creating a Cipher object
Cipher cipher = Cipher.getInstance("RSA/ECB/PKCS1Padding");
第6步:初始化Cipher對象
Cipher
類的init()
方法接受兩個參數
- 表示操作模式的整數參數(加密/解密)
- 表示公鑰的
Key
對象
使用init()
方法初始化Cypher
對象,如下所示。
//Initializing a Cipher object
cipher.init(Cipher.ENCRYPT_MODE, publicKey);
第7步:將數據添加到Cipher對象
Cipher
類的update()
方法接受表示要加密的數據的字節數組,並使用給定的數據更新當前對象。
通過以字節數組的形式將數據傳遞給update()
方法來更新初始化的Cipher
對象,如下所示。
//Adding data to the cipher
byte[] input = "Welcome to yiibai".getBytes();
cipher.update(input);
第8步:加密數據
Cipher
類的doFinal()
方法完成加密操作。 因此,使用此方法完成加密,如下所示。
//Encrypting the data
byte[] cipherText = cipher.doFinal();
第9步:初始化Cipher對象以進行解密
要解密前面步驟中加密的密碼,需要初始化它以進行解密。
因此,通過傳遞參數Cipher.DECRYPT_MODE
和PrivateKey
對象來初始化密碼對象,如下所示。
//Initializing the same cipher for decryption
cipher.init(Cipher.DECRYPT_MODE, pair.getPrivate());
第10步:解密數據
最後,使用doFinal()
方法解密加密文本,如下所示。
//Decrypting the text
byte[] decipheredText = cipher.doFinal(cipherText);
示例
以下Java程序接受來自用戶的文本,使用RSA算法對其進行加密,打印給定文本的密碼,解密密碼並再次打印解密文本。
import java.security.KeyPair;
import java.security.KeyPairGenerator;
import java.security.Signature;
import javax.crypto.Cipher;
public class CipherDecrypt {
public static void main(String args[]) throws Exception{
//Creating a Signature object
Signature sign = Signature.getInstance("SHA256withRSA");
//Creating KeyPair generator object
KeyPairGenerator keyPairGen = KeyPairGenerator.getInstance("RSA");
//Initializing the key pair generator
keyPairGen.initialize(2048);
//Generate the pair of keys
KeyPair pair = keyPairGen.generateKeyPair();
//Getting the public key from the key pair
PublicKey publicKey = pair.getPublic();
//Creating a Cipher object
Cipher cipher = Cipher.getInstance("RSA/ECB/PKCS1Padding");
//Initializing a Cipher object
cipher.init(Cipher.ENCRYPT_MODE, publicKey);
//Add data to the cipher
byte[] input = "Welcome to Yiibai".getBytes();
cipher.update(input);
//encrypting the data
byte[] cipherText = cipher.doFinal();
System.out.println( new String(cipherText, "UTF8"));
//Initializing the same cipher for decryption
cipher.init(Cipher.DECRYPT_MODE, pair.getPrivate());
//Decrypting the text
byte[] decipheredText = cipher.doFinal(cipherText);
System.out.println(new String(decipheredText));
}
}
執行上面示例代碼,得到以下結果:
Encrypted Text:
]/[?F3?D?p
v?w?!?H???^?A??????P?u??FA?
?
???_?? ???_jMH-??>??OP?'?j?_?n`
?_??'`????o??_GL??g???g_f?????f|???LT?|?Vz_TDu#??\?<b,,?$C2???Bq?#?lDB`??g,^??K?_?v???`}
?;LX?a?_5e???#???_?6?/B&B_???^?__Ap^#_?q?IEh????_?,??*??]~_?_?D?
_y???lp??a?P_U{
Decrypted Text:
Welcome to Yiibai