Skip to content
Closed
Show file tree
Hide file tree
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
17 changes: 17 additions & 0 deletions test-server/php-v2-transition-server/.duvet/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,36 @@ pattern = "local-php-sdk/src/S3/**/*.php"
[[source]]
pattern = "local-php-sdk/src/Crypto/**/*.php"

[[source]]
pattern = "local-php-sdk/tests/S3/**/*.php"

[[source]]
pattern = "local-php-sdk/tests/Crypto/**/*.php"

[[source]]
pattern = "../php-v3-server/compliance_exceptions/*.txt"

# Include required specifications here
[[specification]]
source = "../specification/s3-encryption/data-format/content-metadata.md"
[[specification]]
source = "../specification/s3-encryption/data-format/metadata-strategy.md"
[[specification]]
source = "../specification/s3-encryption/client.md"
[[specification]]
source = "../specification/s3-encryption/decryption.md"
[[specification]]
source = "../specification/s3-encryption/encryption.md"
[[specification]]
source = "../specification/s3-encryption/key-derivation.md"
[[specification]]
source = "../specification/s3-encryption/key-commitment.md"

[report.html]
enabled = true

# Enable snapshots to prevent requirement coverage regressions
[report.snapshot]
enabled = false


Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,9 @@

//= ../specification/s3-encryption/data-format/content-metadata.md#v3-only
//= type=exception
//# If the mapkey is not present, the default Material Description value MUST be set to an empty map (`{}`).
//# If the mapkey x-amz-m is not present, the default Material Description value MUST be set to an empty map (`{}`).

//= ../specification/s3-encryption/data-format/content-metadata.md#v3-only
//= type=exception
//= reason=PHP always writes x-amz-t since it only supports a KMS Material Provider.
//# If the mapkey x-amz-t is not present, the default Material Description value MUST be set to an empty map (`{}`).
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
//= ../specification/s3-encryption/key-derivation.md#hkdf-operation
//= type=exception
//= reason=PHP allows for AAD for content encryption, so if provided it will do AAD + Alg Suite
//# The client MUST set the AAD to the Algorithm Suite ID represented as bytes.
Loading