可以使用javax.crypto
包的Cipher
类解密加密数据。 按照下面给出的步骤使用Java解密给定数据。
KeyPairGenerator
类提供getInstance()
方法,该方法接受表示所需密钥生成算法的String变量,并返回生成密钥的KeyPairGenerator
对象。
使用getInstance()
方法创建KeyPairGenerator
对象,如下所示。
//Creating KeyPair generator object KeyPairGenerator keyPairGen = KeyPairGenerator.getInstance("DSA");
KeyPairGenerator
类提供了一个名为initialize()
的方法,该方法用于初始化密钥对生成器。 此方法接受表示密钥大小的整数值。
使用initialize()
方法初始化在上一步中创建的KeyPairGenerator
对象,如下所示。
//Initializing the KeyPairGenerator keyPairGen.initialize(2048);
使用KeyPairGenerator
类的generateKeyPair()
方法生成KeyPair
。 使用此方法生成密钥对,如下所示。
//Generate the pair of keys KeyPair pair = keyPairGen.generateKeyPair();
使用getPublic()
方法从生成的密钥对对象中获取公钥,如下所示。
//Getting the public key from the key pair PublicKey publicKey = pair.getPublic();
Cipher
类的getInstance()
方法接受表示所需转换的String变量,并返回实现给定转换的Cipher
对象。
使用getInstance()
方法创建Cipher
对象,如下所示。
//Creating a Cipher object Cipher cipher = Cipher.getInstance("RSA/ECB/PKCS1Padding");
Cipher
类的init()
方法接受两个参数
Key
对象使用init()
方法初始化Cypher
对象,如下所示。
//Initializing a Cipher object cipher.init(Cipher.ENCRYPT_MODE, publicKey);
Cipher
类的update()
方法接受表示要加密的数据的字节数组,并使用给定的数据更新当前对象。
通过以字节数组的形式将数据传递给update()
方法来更新初始化的Cipher
对象,如下所示。
//Adding data to the cipher byte[] input = "Welcome to zyiz".getBytes(); cipher.update(input);
Cipher
类的doFinal()
方法完成加密操作。 因此,使用此方法完成加密,如下所示。
//Encrypting the data byte[] cipherText = cipher.doFinal();
要解密前面步骤中加密的密码,需要初始化它以进行解密。
因此,通过传递参数Cipher.DECRYPT_MODE
和PrivateKey
对象来初始化密码对象,如下所示。
//Initializing the same cipher for decryption cipher.init(Cipher.DECRYPT_MODE, pair.getPrivate());
最后,使用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 zyiz".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 zyiz