Skip to content

Instantly share code, notes, and snippets.

@awswithdotnet
Created March 3, 2022 19:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save awswithdotnet/79c84c4421e8d1acfe3d99f745b7aa8b to your computer and use it in GitHub Desktop.
Save awswithdotnet/79c84c4421e8d1acfe3d99f745b7aa8b to your computer and use it in GitHub Desktop.
kms Crypto AESDecrypter Decrypt Partial
AmazonKeyManagementServiceClient kmsClient = new AmazonKeyManagementServiceClient();
MemoryStream ciphertextBlob = new MemoryStream(Convert.FromBase64String((encryptionPackage.EncryptedKey)));
DecryptRequest decryptRequest = new DecryptRequest()
{
CiphertextBlob = ciphertextBlob,
KeyId = _keyId
};
DecryptResponse decryptResponse = await kmsClient.DecryptAsync(decryptRequest);
byte[] key = decryptResponse.Plaintext.ToArray();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment