We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7302775 commit f1e7f2fCopy full SHA for f1e7f2f
src/aws_encryption_sdk/identifiers.py
@@ -334,7 +334,7 @@ class KeyringTraceFlag(Enum):
334
"""KeyRing Trace actions."""
335
336
WRAPPING_KEY_GENERATED_DATA_KEY = 1
337
- WRAPPING_KEY_ENCRYPTED_DATA_KEY = 2
338
- WRAPPING_KEY_DECRYPTED_DATA_KEY = 3
339
- WRAPPING_KEY_SIGNED_ENC_CTX = 4
340
- WRAPPING_KEY_VERIFIED_ENC_CTX = 5
+ WRAPPING_KEY_ENCRYPTED_DATA_KEY = 1 << 1
+ WRAPPING_KEY_DECRYPTED_DATA_KEY = 1 << 2
+ WRAPPING_KEY_SIGNED_ENC_CTX = 1 << 3
+ WRAPPING_KEY_VERIFIED_ENC_CTX = 1 << 4
0 commit comments