我正在尝试编写一个小型加密程序。其中一个选项是“使用密钥加密”。我无法弄清楚的是如何创建一种基于String加密消息的方法。
public static void encodeWithKey(){
System.out.println("What is the encryption key?");
String encryptKey = scan.nextLine();
System.out.println("What is the message to encrypt?");
String messageWithKey = scan.nextLine();
StringBuilder encryptWithKeyBuilder = new StringBuilder();
for (char c : messageWithKey.toCharArray()) {
// Add 1 to each character and append it
encryptWithKeyBuilder.append((char) (c - 1));
}
// Now the builder contains the String with the shifted values
System.out.println("Your encoded message is: ");
System.out.print(encryptWithKeyBuilder);
}
我想找到他们的加密密钥的前两个字母,将它们转换为整数,然后将它们加在一起。然后使用它来加密消息(在for循环中,用新数字替换'1'。)
答案 0 :(得分:0)
您可以按如下方式获取加密密钥的首字母总和:
int firstLettersSum = (int)encryptKey.charAt(0) + (int)encryptKey.charAt(1)