File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -340,8 +340,16 @@ class KeyringTraceFlagValue(object):
340
340
341
341
name = attr .ib ()
342
342
343
+ #: A flag to represent that a keyring has generated a plaintext data key.
343
344
GENERATED_DATA_KEY = KeyringTraceFlagValue ("GENERATED_DATA_KEY" )
345
+ #: A flag to represent that a keyring has created an encrypted data key.
344
346
ENCRYPTED_DATA_KEY = KeyringTraceFlagValue ("ENCRYPTED_DATA_KEY" )
347
+ #: A flag to represent that a keyring has obtained
348
+ #: the corresponding plaintext data key from an encrypted data key.
345
349
DECRYPTED_DATA_KEY = KeyringTraceFlagValue ("DECRYPTED_DATA_KEY" )
350
+ #: A flag to represent that the keyring has cryptographically
351
+ #: bound the encryption context to a newly created encrypted data key.
346
352
SIGNED_ENCRYPTION_CONTEXT = KeyringTraceFlagValue ("SIGNED_ENCRYPTION_CONTEXT" )
353
+ #: A flag to represent that the keyring has verified that an encrypted
354
+ #: data key was originally created with a particular encryption context.
347
355
VERIFIED_ENCRYPTION_CONTEXT = KeyringTraceFlagValue ("VERIFIED_ENCRYPTION_CONTEXT" )
You can’t perform that action at this time.
0 commit comments