如何从密文 blob 中获取 KMS 密钥信息?
以aws网站为例
aws kms encrypt --key-id 1234abcd-12ab-34cd-56ef-1234567890ab --plaintext fileb://ExamplePlaintextFile --output text --query CiphertextBlob | base64 --decode > ExampleEncryptedFile
有什么方法可以查看 ExampleEncryptedFile 并确定使用哪个 KMS 密钥对其进行加密?
我问是因为我在读取我加密的内容时遇到问题,我想验证它是否使用我认为的密钥加密。