您已经从@Saptarshi Basu 获得了一个链接,该链接大致展示了如何使用 AES GCM 加密数据。正如您在我的代码中看到的那样,这样做并没有什么真正“神秘”的东西,但是有一些陷阱可以运行。
让我们从最重要的信息开始——加密密钥是什么?您从 Hashicorp 收到一个 44 字节长的字符串,它是纯 32 字节长的 AES GCM 密钥,但采用 Base64 编码。要获得可用于 Java 加密的密钥,您需要将密钥解码为字节数组,如下所示:
String keyBase64 = "VxJWkOYm2F5z1nF1th9zreS6ZAZMFkCq0c/Ik460ayw=";
byte[] key = Base64.getDecoder().decode(keyBase64);
我们需要的第二个信息是 AES 模式 - 您正确地将其命名为 AES GCM 模式,并且当您为 Java 提供 32 字节 = 256 位长密钥时,它就是请求的AES GCM 256 算法/模式。
AES GCM 加密需要第三个参数,它是随机数(或有时称为初始化向量)。Hashicorp 告诉您使用 96 位 = 12 字节长的随机数。出于安全原因,每次加密时使用不同的 nonce 非常重要,因此使用(安全)随机生成的 nonce 是一种很好的做法:
byte[] nonceRandom = new byte[12];
SecureRandom secureRandom = new SecureRandom();
secureRandom.nextBytes(nonceRandom);
现在我们准备好加密并将所有数据放在一起,执行“.doFinal”步骤,我们会收到一个带有密文的字节数组。但是停止 - 我们需要以这种方式将使用的 nonce 和密文连接到更大的 ciphertextWithNonce :
nonce | ciphertext
通过简单地将随机数和密文复制到一个新的字节数组。然后,这个“ciphertextWithNonce”被 Base64 编码为最终的 ciphertextBase64,并出于上传原因写入文件。
如果您将自己的密钥粘贴到程序的开头并运行它,您将收到一个名为“hashicorp_test.enc”的文件,该文件已准备好上传至您的错误。
这是一个示例输出(由于存在随机元素,您的输出会有所不同):
Hashicorp Vault AES GCM encryption
ciphertext: /YB+kfVlIhMowLrsnndD737o2CcyWMfr4xnAADnCBSNCSvMG25aR8UzU2ta8wLwdnHfcago/25KFJ2ky95wpFtsCNE63xRs=
ciphertext written to file: hashicorp_test.enc
used key: VxJWkOYm2F5z1nF1th9zreS6ZAZMFkCq0c/Ik460ayw=
如果您想查看在在线编译器中运行的代码,请点击以下链接:
https ://repl.it/@javacrypto/SoHashicorpVaultAesGcmEncryption
这是一个“概念证明”,一般显示如何执行加密,但它缺少一些关键点,我懒得做你的工作:-)。
- 此示例将字符串加密为加密文件 - 您需要从文件中获取原始数据
- 拥有一个大文件,您可能会遇到“内存不足”错误,因为对数据的所有操作都在您的堆中完成 - 对于简单的计算,您将需要 4.5 * 原始数据的空闲内存,因为您将原始数据放入内存,第二次将加密数据保存在内存中,第三次将加密数据复制到 ciphertextWithNonce,最后(第 4 次)将所有数据编码为 base64-String。对于大型程序,您需要切换到“块明智”加密,使用 CiphertextOutputStream 完成
- 为了使完整数据的 Base64 写入更加方便,我建议额外使用 Apache 的 Base64OutputStream(可通过 Maven https://mvnrepository.com/artifact/commons-codec/commons-codec获得)。
安全警告:此代码没有异常处理,仅用于教育目的。
代码:
import javax.crypto.BadPaddingException;
import javax.crypto.Cipher;
import javax.crypto.IllegalBlockSizeException;
import javax.crypto.NoSuchPaddingException;
import javax.crypto.spec.GCMParameterSpec;
import javax.crypto.spec.SecretKeySpec;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.security.InvalidAlgorithmParameterException;
import java.security.InvalidKeyException;
import java.security.NoSuchAlgorithmException;
import java.security.SecureRandom;
import java.util.Base64;
public class Hashicorp_Aes_Gcm_encryption {
public static void main(String[] args) throws NoSuchPaddingException, NoSuchAlgorithmException, InvalidAlgorithmParameterException, InvalidKeyException, BadPaddingException, IllegalBlockSizeException, IOException {
System.out.println("Hashicorp Vault AES GCM encryption");
// https://stackoverflow.com/questions/64714527/how-can-i-encrypt-data-with-an-already-generated-aes-256-gcm-96-key-coming-from
// paste your key here:
String keyBase64 = "VxJWkOYm2F5z1nF1th9zreS6ZAZMFkCq0c/Ik460ayw=";
// filename with ciphertext for upload
String filename = "hashicorp_test.enc";
// my sample plaintext
String plaintext = "The quick brown fox jumps over the lazy dog";
// aes gcm encryption
// decode key
byte[] key = Base64.getDecoder().decode(keyBase64);
// generate random nonce
byte[] nonceRandom = new byte[12];
SecureRandom secureRandom = new SecureRandom();
secureRandom.nextBytes(nonceRandom);
// calculate specs
SecretKeySpec secretKeySpec = new SecretKeySpec(key, "AES");
GCMParameterSpec gcmParameterSpec = new GCMParameterSpec(16 * 8, nonceRandom);
// initialize cipher
Cipher cipher = Cipher.getInstance("AES/GCM/PKCS5Padding");//NOPadding
cipher.init(Cipher.ENCRYPT_MODE, secretKeySpec, gcmParameterSpec);
// encrypt
byte[] ciphertext = cipher.doFinal(plaintext.getBytes(StandardCharsets.UTF_8));
// concentenate iv + ciphertext
int ciphertextWithNonceLength = nonceRandom.length + ciphertext.length;
byte[] ciphertextWithNonce = new byte[ciphertextWithNonceLength];
System.arraycopy(nonceRandom, 0, ciphertextWithNonce, 0, nonceRandom.length);
System.arraycopy(ciphertext, 0, ciphertextWithNonce, nonceRandom.length, ciphertext.length);
String ciphertextBase64 = Base64.getEncoder().encodeToString(ciphertextWithNonce);
System.out.println("ciphertext: " + ciphertextBase64);
// save encrypted data to a file
Files.write(Paths.get(filename), ciphertextBase64.getBytes(StandardCharsets.UTF_8));
System.out.println("ciphertext written to file: " + filename);
System.out.println("used key: " + keyBase64);
}
}