java AWS中的AWS KMS decryptRequest

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java AWS中的AWS KMS decryptRequest相关的知识,希望对你有一定的参考价值。

DecryptRequest decryptRequest = new DecryptRequest();
decryptRequest.setCiphertextBlob(encryptedKey);
 

// call AWS KMS to decrypt the key
DecryptResult decryptResult = kmsClient.decrypt(decryptRequest);
// parse out the decryption result
String strKeyId = decryptResult.getKeyId();
ByteBuffer plaintextKey = decryptResult.getPlaintext();

以上是关于java AWS中的AWS KMS decryptRequest的主要内容,如果未能解决你的问题,请参考以下文章

java 创建AWS KMS客户端

java AWS KMS使用Java生成数据密钥

java AWS S3服务器端加密(非KMS)

DynamoDB 如何使用 AWS KMS

使用默认 aws/S3 KMS 密钥对解密对象进行跨账户访问

AWS:无法使用流从 SSE-KMS 加密存储桶下载文件