From 49e4d35db7af7778dc370f591b2f12df03b95af0 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Tue, 9 Jun 2020 14:08:49 +0200 Subject: [PATCH] Adopt matrix-doc iv description clarification See https://github.com/matrix-org/matrix-doc/pull/2492 --- src/room.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/room.rs b/src/room.rs index e170bd61..5e864d5b 100644 --- a/src/room.rs +++ b/src/room.rs @@ -88,7 +88,7 @@ pub struct EncryptedFile { /// A [JSON Web Key](https://tools.ietf.org/html/rfc7517#appendix-A.3) object. pub key: JsonWebKey, - /// The initialization vector used by AES-CTR, encoded as unpadded base64. + /// The 128-bit unique counter block used by AES-CTR, encoded as unpadded base64. pub iv: String, /// A map from an algorithm name to a hash of the ciphertext, encoded as unpadded base64.