Skip to content

Commit 620639f

Browse files
fix
1 parent 4adb696 commit 620639f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

codebuild/py312/decrypt_hkeyring_with_net.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ phases:
2323
- unzip 312_hkeyring_manifest.zip
2424

2525
# Download published .NET ESDK so we don't have to build from source
26-
dotnet add package AWS.Cryptography.EncryptionSDK --version 4.0.1
26+
- dotnet add package AWS.Cryptography.EncryptionSDK --version 4.0.1
2727

2828
# Clone SDK-Dafny repo to get test vectors runner
2929
- git clone [email protected]:aws/aws-encryption-sdk-dafny.git

test_vector_handlers/src/awses_test_vectors/manifests/full_message/decrypt.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,8 @@ def master_key_provider_fn():
309309
encryption_context = {}
310310

311311
# MPL test vectors add CMM types to the test vectors manifests
312-
if "cmm" in scenario:
312+
if "cmm" in scenario \
313+
and scenario["cmm"] is not None:
313314
if scenario["cmm"] == "Default":
314315
# Master keys and keyrings can handle default CMM
315316
cmm_type = scenario["cmm"]

0 commit comments

Comments
 (0)