我已经在Java中创建了一次密码加密,但是有两个问题:
在“加密”中,如何根据明文的大小灵活地更改密钥的大小并随机生成,例如,明文的大小为4个字母,因此数组密钥的大小必须为32位,因为每个字母都有8位。
在解密中,如何读取二进制格式的文件和这两个文件,然后在它们之间进行XOR,然后将其打印为ASCLL格式。
我的代码:
public class onetimepad {
public static void main(String[] args) throws Exception {
int[] key = generate8BitKey();
Scanner in = new Scanner(System.in);
System.out.println(" One Time Pad encryption and decryption ");
System.out.println(" For encryption Enter 1 ");
System.out.println(" For decryption Enter 2 ");
System.out.println(" Exit Enter 3 ");
int a = in.nextInt();
switch (a) {
case 1:
File input = new File("message.txt");
Scanner sc = new Scanner(input);
String msg = sc.nextLine();
System.out.println("Key: ");
//Write the Key in file.
PrintWriter writer2 = new PrintWriter("Output.txt", "UTF-8");
writer2.println("------ Key ------- ");
for (int i : key) {
System.out.print(key[i]);
writer2.print(key[i]);
}
writer2.close();
System.out.println();
String ciphertext = encrypt(msg, key);
System.out.println("Encrypted Message: " + ciphertext);
break;
case 2:
File input2 = new File("ciphertext.txt");
Scanner sc2 = new Scanner(input2);
String msg2 = sc2.nextLine();
File input3 = new File("Key.txt");
Scanner sc3 = new Scanner(input3);
String msg3 = sc2.nextLine();
System.out.println("Decrypted Message: " + decrypt(msg3, key));
break;
default:
}
}// End the main.
//------------------- Methods.
public static String encrypt(String msg, int[] key) {
int[] binmsg = stringToBinary(msg);
int[] result = xor(binmsg, repeatArray(key, msg.length()));
String r = "";
for (int i : result) {
r += (char) (result[i] + '0');
}
return r;
}
//---------------------
public static String decrypt(String ciphertext, int[] key) {
int[] bin = new int[ciphertext.length()];
for (int i = 0; i < ciphertext.length(); i++) {
bin[i] = ciphertext.charAt(i) - '0';
}
int[] result = xor(bin, repeatArray(key, bin.length / 8));
return binaryToString(result);
}
//---------------------
public static int[] stringToBinary(String msg) {
int[] result = new int[msg.length() * 8];
for (int i = 0; i < msg.length(); i++) {
String bin = Integer.toBinaryString((int) msg.charAt(i));
while (bin.length() < 8) {
bin = "0" + bin;
}
for (int j = 0; j < bin.length(); j++) {
result[i * 8 + j] = bin.charAt(j) - '0';
}
}
return result;
}
//---------------------
public static String binaryToString(int[] bin) {
String result = "";
for (int i = 0; i < bin.length / 8; i++) {
String c = "";
for (int j = 0; j < 8; j++) {
c += (char) (bin[i * 8 + j] + '0');
}
result += (char) Integer.parseInt(c, 2);
}
return result;
}
//---------------------
public static int[] generate8BitKey() {
int[] key = new int[8];
for (int i = 0; i < 8; i++) {
SecureRandom sr = new SecureRandom();
key[i] = sr.nextInt(2);
}
return key;
}
//---------------------
public static int[] xor(int[] a, int[] b) {
int[] result = new int[a.length];
for (int i = 0; i < a.length; i++) {
result[i] = a[i] == b[i] ? 0 : 1;
}
return result;
}
//---------------------
public static int[] repeatArray(int[] a, int n) {
int[] result = new int[a.length * n];
for (int i = 0; i < result.length; i++) {
result[i] = a[i % a.length]; // mod
}
return result;
}
}
答案 0 :(得分:0)
首先-尝试重写您的应用程序以使用正确的数据类型,这意味着您将使用位作为位来处理byte[]
类型。这样就很容易读取,写入,异或,编码,解码。没有它,很少有人会尝试了解您自己的构造。因此,我进一步假设您会这样做。
下一步-实际上没有必要实现自己的编码操作(例如stringToBinary),寻找将数据编码为十六进制或base64的简单方法。对于十六进制,您可以使用org.apache.commons.codec.binary.Hex
,对于Base64,您已经具有java.util.Base64
类。对于您和任何愿意帮助的人来说,它将更具可读性
在加密中,如何使密钥的大小根据明文的大小灵活地变化并随机生成,例如,明文的大小为4个字母,因此数组密钥的大小必须为32位,因为每个字母都有8位。
假设您最终重写了应用程序以处理字节数组,则可以编写
SecureRandom sr = new SecureRandom();
byte[] keyBytes = new bytes[4];
sr.nextBytes (keyBytes);
这将生成4个具有高熵的字节。但是-整个方法存在问题:
要解密数据,您将需要存储消息长度的密钥,并且对于单个消息,您只能使用一次密钥(这是一个时区的功能)。
假设您有更长的消息,例如-以千字节为单位。 SecureRandom生成任意(更长)长度的密钥可能非常慢,或者可能生成的不是真正的随机数据。长话短说-这就是为什么使用PRNG(通常我将ChaCha或Salsa20流密码用作PRNG)来从初始密钥生成任意长度的随机查找数据的原因。
在解密中,我如何读取二进制格式的文件和这两个文件,然后在它们之间进行XOR,然后将其打印为ASCLL格式。
一旦您重写了应用程序以使用byte[]
类型,然后(如Maarten所说),就可以使用FileInputStream和FileOutputStream(而且可以很容易地对字节a ^ b
进行XOR)