Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/aws_encryption_sdk/key_providers/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ def encrypt_data_key(self, data_key, algorithm, encryption_context):
:rtype: aws_encryption_sdk.structures.EncryptedDataKey
:raises IncorrectMasterKeyError: if Data Key's key provider does not match this Master Key
"""
_LOGGER.info("encrypting data key with encryption context: %s", encryption_context)
_LOGGER.debug("encrypting data key with encryption context: %s", encryption_context)
return self._encrypt_data_key(data_key=data_key, algorithm=algorithm, encryption_context=encryption_context)

@abc.abstractmethod
Expand Down Expand Up @@ -515,7 +515,7 @@ def decrypt_data_key(self, encrypted_data_key, algorithm, encryption_context):
:rtype: aws_encryption_sdk.structures.DataKey
:raises IncorrectMasterKeyError: if Data Key's key provider does not match this Master Key
"""
_LOGGER.info("decrypting data key with encryption context: %s", encryption_context)
_LOGGER.debug("decrypting data key with encryption context: %s", encryption_context)
self._key_check(encrypted_data_key)
decrypted_data_key = self._decrypt_data_key(
encrypted_data_key=encrypted_data_key, algorithm=algorithm, encryption_context=encryption_context
Expand Down
Loading