java 从文件中读取加密数据
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/15682840/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Reading encrypted data from a file
提问by Gaurav Ojha
I was going through an IBM tutorial on encrypting using Private key. And I wrote the code as below
我正在阅读有关使用私钥加密的 IBM 教程。我写的代码如下
import java.security.*;
import javax.crypto.*;
// encrypt and decrypt using the DES private key algorithm
public class PrivateExample {
public static void main (String[] args) throws Exception {
String text=new String();
text="THIS IS AN ENCRYPTION TEST";
byte[] plainText = text.getBytes("UTF8");
// get a DES private key
System.out.println( "\nStart generating DES key" );
KeyGenerator keyGen = KeyGenerator.getInstance("DES");
keyGen.init(56);
Key key = keyGen.generateKey();
System.out.println( "Finish generating DES key" );
// get a DES cipher object and print the provider
Cipher cipher = Cipher.getInstance("DES/ECB/PKCS5Padding");
System.out.println( "\n" + cipher.getProvider().getInfo() );
//
// encrypt using the key and the plaintext
System.out.println( "\nStart encryption" );
cipher.init(Cipher.ENCRYPT_MODE, key);
byte[] cipherText = cipher.doFinal(plainText);
System.out.println( "Finish encryption: " );
System.out.println( new String(cipherText, "UTF8") );
//
// decrypt the ciphertext using the same key
System.out.println( "\nStart decryption" );
cipher.init(Cipher.DECRYPT_MODE, key);
byte[] newPlainText = cipher.doFinal(cipherText);
System.out.println( "Finish decryption: " );
System.out.println( new String(newPlainText, "UTF8") );
}
}
The above code works great. I am able to see the result and everything. But I want to modify it as follows so that i can store the cipherText in a file. Then another program reads the encrypted text from the file and decrypts it. Below is what I have done till now, but I cannot understand how to proceed. Just a little hint on how to proceed will help.
上面的代码效果很好。我能够看到结果和一切。但我想如下修改它,以便我可以将 cipherText 存储在文件中。然后另一个程序从文件中读取加密文本并解密。以下是我到目前为止所做的,但我无法理解如何进行。关于如何进行的一点提示将有所帮助。
import java.security.*;
import javax.crypto.*;
// encrypt and decrypt using the DES private key algorithm
public class PrivateExample {
public static void main (String[] args) throws Exception {
String text=new String();
text="This is an encryption test";
byte[] plainText = text.getBytes("UTF8");
// get a DES private key
System.out.println( "\nStart generating DES key" );
KeyGenerator keyGen = KeyGenerator.getInstance("DES");
keyGen.init(56);
Key key = keyGen.generateKey();
System.out.println( "Finish generating DES key" );
//
// get a DES cipher object and print the provider
Cipher cipher = Cipher.getInstance("DES/ECB/PKCS5Padding");
System.out.println( "\n" + cipher.getProvider().getInfo() );
//
// encrypt using the key and the plaintext
System.out.println( "\nStart encryption" );
cipher.init(Cipher.ENCRYPT_MODE, key);
byte[] cipherText = cipher.doFinal(plainText);
System.out.println( "Finish encryption: " );
System.out.println( new String(cipherText, "UTF8") );
//Now writing to an ouput file the cipherText
try{
FileOutputStream fs=new FileOutputStream("c:/test.txt");
fs.write(cipherText);
}catch(Exception e){
e.printStackTrace();
}
//How to proceed from here
}
}
Now this program's job is complete. It has successfully written the encrypted string into a file. The new program only has to decrypt the data. How do I read the encrypted bytes from the file? The new program obviously has no idea regarding what the original string was, but I will be using the same key as in the algorith. Please help! I am new to encryption
现在这个程序的工作已经完成。它已成功将加密字符串写入文件。新程序只需要解密数据。如何从文件中读取加密字节?新程序显然不知道原始字符串是什么,但我将使用与算法中相同的密钥。请帮忙!我是加密新手
回答by nattyddubbs
Here's how you write your key to a file:
以下是将密钥写入文件的方法:
//Write your key to an output file.
byte[] keyAsByte = key.getEncoded();
FileOutputStream keyfos = new FileOutputStream("key.txt");
keyfos.write(keyAsByte);
keyfos.close();
I wouldn't recommend putting the key with the encrypted text in the same file.
我不建议将带有加密文本的密钥放在同一个文件中。
Here's how you read the encrypted text and the key back and decrypt:
以下是读取加密文本和密钥并解密的方法:
//Read your key
FileInputStream keyFis = new FileInputStream("key.txt");
byte[] encKey = new byte[keyFis.available()];
keyFis.read(encKey);
keyFis.close();
Key keyFromFile = new SecretKeySpec(encKey, "DES");
//Read your text
FileInputStream encryptedTextFis = new FileInputStream("test.txt");
byte[] encText = new byte[encryptedTextFis.available()];
encryptedTextFis.read(encText);
encryptedTextFis.close();
//Decrypt
Cipher decrypter = Cipher.getInstance("DES/ECB/PKCS5Padding");
decrypter.init(Cipher.DECRYPT_MODE, keyFromFile);
byte[] decryptedText = decrypter.doFinal(encText);
//Print result
System.out.println("Decrypted Text: " + new String(decryptedText));
Note: I didn't use the same path as you for writing the information.
注意:我没有使用与您相同的路径来编写信息。