cse_3.py 183 B

1234
  1. def get_decryption_aes_key(key, material_description, kms_client):
  2. return kms_client.decrypt(
  3. CiphertextBlob=key, EncryptionContext=material_description
  4. )["Plaintext"]