diff options
author | 2015-11-02 15:43:55 +0000 | |
---|---|---|
committer | 2015-11-02 15:43:55 +0000 | |
commit | cb91e3c0ddd6c2a9d8861cf51f928d2a651f9038 (patch) | |
tree | de020c6c999ff64c9eb3a0d4251d91a8ff55e4b3 | |
parent | bump minors after adding EVP_aead_chacha20_poly1305_ietf() (diff) | |
download | wireguard-openbsd-cb91e3c0ddd6c2a9d8861cf51f928d2a651f9038.tar.xz wireguard-openbsd-cb91e3c0ddd6c2a9d8861cf51f928d2a651f9038.zip |
Fix typo in comment of previous commit: "that that".
-rw-r--r-- | lib/libcrypto/evp/e_chacha20poly1305.c | 6 | ||||
-rw-r--r-- | lib/libssl/src/crypto/evp/e_chacha20poly1305.c | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/lib/libcrypto/evp/e_chacha20poly1305.c b/lib/libcrypto/evp/e_chacha20poly1305.c index 47551c4578c..2eb9ab8c0e9 100644 --- a/lib/libcrypto/evp/e_chacha20poly1305.c +++ b/lib/libcrypto/evp/e_chacha20poly1305.c @@ -1,4 +1,4 @@ -/* $OpenBSD: e_chacha20poly1305.c,v 1.11 2015/11/02 15:40:53 reyk Exp $ */ +/* $OpenBSD: e_chacha20poly1305.c,v 1.12 2015/11/02 15:43:55 reyk Exp $ */ /* * Copyright (c) 2015 Reyk Floter <reyk@openbsd.org> @@ -37,8 +37,8 @@ /* * The informational RFC 7539, "ChaCha20 and Poly1305 for IETF Protocols", * introduced a modified AEAD construction that is incompatible with the - * common style that that has been already used in TLS. The IETF version - * also adds a constant (salt) that is prepended to the nonce. + * common style that has been already used in TLS. The IETF version also + * adds a constant (salt) that is prepended to the nonce. */ #define CHACHA20_CONSTANT_LEN 4 #define CHACHA20_IV_LEN 8 diff --git a/lib/libssl/src/crypto/evp/e_chacha20poly1305.c b/lib/libssl/src/crypto/evp/e_chacha20poly1305.c index 47551c4578c..2eb9ab8c0e9 100644 --- a/lib/libssl/src/crypto/evp/e_chacha20poly1305.c +++ b/lib/libssl/src/crypto/evp/e_chacha20poly1305.c @@ -1,4 +1,4 @@ -/* $OpenBSD: e_chacha20poly1305.c,v 1.11 2015/11/02 15:40:53 reyk Exp $ */ +/* $OpenBSD: e_chacha20poly1305.c,v 1.12 2015/11/02 15:43:55 reyk Exp $ */ /* * Copyright (c) 2015 Reyk Floter <reyk@openbsd.org> @@ -37,8 +37,8 @@ /* * The informational RFC 7539, "ChaCha20 and Poly1305 for IETF Protocols", * introduced a modified AEAD construction that is incompatible with the - * common style that that has been already used in TLS. The IETF version - * also adds a constant (salt) that is prepended to the nonce. + * common style that has been already used in TLS. The IETF version also + * adds a constant (salt) that is prepended to the nonce. */ #define CHACHA20_CONSTANT_LEN 4 #define CHACHA20_IV_LEN 8 |