From 392a5e33178cf6b8853066a9cebdf1e607842076 Mon Sep 17 00:00:00 2001 From: Christopher Wood Date: Thu, 16 Nov 2023 14:10:10 -0500 Subject: [PATCH] Clarify that header comes from sframe_ciphertext --- draft-ietf-sframe-enc.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/draft-ietf-sframe-enc.md b/draft-ietf-sframe-enc.md index 0338616..2d6efa3 100644 --- a/draft-ietf-sframe-enc.md +++ b/draft-ietf-sframe-enc.md @@ -508,7 +508,7 @@ the encrypted frame, and the CTR field is used to construct the nonce. ~~~~~ def decrypt(metadata, sframe_ciphertext): - KID, CTR, ciphertext = parse_ciphertext(sframe_ciphertext) + KID, CTR, header, ciphertext = parse_ciphertext(sframe_ciphertext) sframe_key, sframe_salt = key_store[KID]