From af7cf84083cf17de938102bfac1951caebc89c3e Mon Sep 17 00:00:00 2001 From: Lukas Lihotzki Date: Tue, 7 Apr 2020 17:54:09 +0200 Subject: [PATCH 1/2] Fix iv parameter description Signed-off-by: Lukas Lihotzki --- specification/modules/end_to_end_encryption.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specification/modules/end_to_end_encryption.rst b/specification/modules/end_to_end_encryption.rst index 631b182a0..4b433f176 100644 --- a/specification/modules/end_to_end_encryption.rst +++ b/specification/modules/end_to_end_encryption.rst @@ -277,7 +277,7 @@ Parameter Type Description ========= ================ ===================================================== url string **Required.** The URL to the file. key JWK **Required.** A `JSON Web Key`_ object. -iv string **Required.** The Initialisation Vector used by +iv string **Required.** The 128-bit unique counter block used by AES-CTR, encoded as unpadded base64. hashes {string: string} **Required.** A map from an algorithm name to a hash of the ciphertext, encoded as unpadded base64. Clients From b908b8e777840741587d22c6c1bbf25f69ecaeab Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Tue, 7 Apr 2020 13:13:52 -0600 Subject: [PATCH 2/2] Add changelog --- changelogs/client_server/newsfragments/2492.clarification | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelogs/client_server/newsfragments/2492.clarification diff --git a/changelogs/client_server/newsfragments/2492.clarification b/changelogs/client_server/newsfragments/2492.clarification new file mode 100644 index 000000000..88c478ec1 --- /dev/null +++ b/changelogs/client_server/newsfragments/2492.clarification @@ -0,0 +1 @@ +Clarify the IV data type for encrypted files.