Skip to content

Commit

Permalink
fix: Downgrade decrypt oracle commitment policy (#338)
Browse files Browse the repository at this point in the history
The policy set earlier doesn’t exist in the 1.x branch. and this value should be perfectly equivalent since the decrypt oracle only decrypts.
  • Loading branch information
robin-aws committed Apr 28, 2021
1 parent b5de8a2 commit 2e3ca4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion decrypt_oracle/test/integration/integration_test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
_KMS_MKP = None
_ENDPOINT = None

CLIENT = aws_encryption_sdk.EncryptionSDKClient(commitment_policy=CommitmentPolicy.REQUIRE_ENCRYPT_ALLOW_DECRYPT)
CLIENT = aws_encryption_sdk.EncryptionSDKClient(commitment_policy=CommitmentPolicy.FORBID_ENCRYPT_ALLOW_DECRYPT)


def decrypt_endpoint() -> Text:
Expand Down

0 comments on commit 2e3ca4c

Please sign in to comment.