File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
DynamoDbItemEncryptor/src
dynamodb-encryption-client Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -497,7 +497,7 @@ module AwsCryptographyDbEncryptionSdkDynamoDbItemEncryptorOperations refines Abs
497
497
// = specification/dynamodb-encryption-client/decrypt-item.md#determining-plaintext-items
498
498
// = type=implication
499
499
// # An item MUST be determined to be plaintext if it does not contain
500
- // # attributes with the names "aws_dbe_header " and "aws_dbe_footer ".
500
+ // # attributes with the names "aws_dbe_head " and "aws_dbe_foot ".
501
501
predicate method IsPlaintextItem (ddbItem: ComAmazonawsDynamodbTypes .AttributeMap) {
502
502
&& StructuredEncryptionUtil. HeaderField ! in ddbItem. Keys
503
503
&& StructuredEncryptionUtil. FooterField ! in ddbItem. Keys
Original file line number Diff line number Diff line change @@ -62,8 +62,8 @@ module StructuredEncryptionHeader {
62
62
// # [DBE supported algorithm suite](../../submodules/MaterialProviders/aws-encryption-sdk-specification/framework/algorithm-suites.md#supported-algorithm-suites-enum).
63
63
// | Value | Algorithm Suite ID | Algorithm Suite Enum |
64
64
// |---|---|---|
65
- // | 0x01 | 0x67 0x01 | ALG_AES_256_GCM_HKDF_SHA512_COMMIT_KEY_SYMSIG_HMAC_SHA384 |
66
- // | 0x00 | 0x67 0x00 | ALG_AES_256_GCM_HKDF_SHA512_COMMIT_KEY_ECDSA_P384_SYMSIG_HMAC_SHA384 |
65
+ // | 0x00 | 0x67 0x00 | ALG_AES_256_GCM_HKDF_SHA512_COMMIT_KEY_SYMSIG_HMAC_SHA384 |
66
+ // | 0x01 | 0x67 0x01 | ALG_AES_256_GCM_HKDF_SHA512_COMMIT_KEY_ECDSA_P384_SYMSIG_HMAC_SHA384 |
67
67
predicate method ValidFlavor (x : uint8 ) {
68
68
x in [0, 1]
69
69
}
Original file line number Diff line number Diff line change @@ -155,7 +155,7 @@ although the DynamoDbEncryptor allows callers to configure custom names for thes
155
155
### Determining Plaintext Items
156
156
157
157
An item MUST be determined to be plaintext if it does not contain
158
- attributes with the names "aws_dbe_header " and "aws_dbe_footer ".
158
+ attributes with the names "aws_dbe_head " and "aws_dbe_foot ".
159
159
160
160
Note that this does not conflict with the [ legacy item] ( #determining-legacy-items ) definition,
161
161
as there is no configuration state which needs to be able to distinguish
Original file line number Diff line number Diff line change @@ -50,8 +50,8 @@ The algorithm suite indicated by the flavor MUST be a
50
50
51
51
| Value | Algorithm Suite ID | Algorithm Suite Enum |
52
52
| ---| ---| ---|
53
- | 0x01 | 0x67 0x01 | ALG_AES_256_GCM_HKDF_SHA512_COMMIT_KEY_SYMSIG_HMAC_SHA384 |
54
- | 0x00 | 0x67 0x00 | ALG_AES_256_GCM_HKDF_SHA512_COMMIT_KEY_ECDSA_P384_SYMSIG_HMAC_SHA384 |
53
+ | 0x00 | 0x67 0x00 | ALG_AES_256_GCM_HKDF_SHA512_COMMIT_KEY_SYMSIG_HMAC_SHA384 |
54
+ | 0x01 | 0x67 0x01 | ALG_AES_256_GCM_HKDF_SHA512_COMMIT_KEY_ECDSA_P384_SYMSIG_HMAC_SHA384 |
55
55
56
56
### Message ID
57
57
You can’t perform that action at this time.
0 commit comments