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() 方法从生成的 KeyPair 对象中获取公钥,如下所示。
//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() 方法接受两个参数
- 代表操作模式(加密/解密)的整数参数
- 代表公钥的密钥对象
使用 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 Tutorialspoint".getBytes(); cipher.update(input);
第 8 步:加密数据
Cipher类的doFinal()方法完成加密操作。 因此,使用该方法完成加密,如下所示。
//Encrypting the data byte[] cipherText = cipher.doFinal();
第9步:初始化Cipher对象以进行解密
要解密前面步骤中加密的密码,您需要对其进行初始化以进行解密。
因此,通过传递参数 Cipher.DECRYPT_MODE 和 PrivateKey 对象来初始化 cipher 对象,如下所示。
//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 Tutorialspoint".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 Tutorialspoint