summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortb <tb@openbsd.org>2020-01-26 07:47:26 +0000
committertb <tb@openbsd.org>2020-01-26 07:47:26 +0000
commitf8b03e9cfe01add87d93094776a778f1a6131064 (patch)
treec53faa20f17f49e1e0e1323939ca4a437ede4965
parentDocument the change in EVP_chacha20(3). (diff)
downloadwireguard-openbsd-f8b03e9cfe01add87d93094776a778f1a6131064.tar.xz
wireguard-openbsd-f8b03e9cfe01add87d93094776a778f1a6131064.zip
typo
-rw-r--r--lib/libcrypto/evp/e_chacha.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcrypto/evp/e_chacha.c b/lib/libcrypto/evp/e_chacha.c
index 198eaef09f0..a27a3c6470f 100644
--- a/lib/libcrypto/evp/e_chacha.c
+++ b/lib/libcrypto/evp/e_chacha.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: e_chacha.c,v 1.7 2020/01/26 07:34:05 tb Exp $ */
+/* $OpenBSD: e_chacha.c,v 1.8 2020/01/26 07:47:26 tb Exp $ */
/*
* Copyright (c) 2014 Joel Sing <jsing@openbsd.org>
*
@@ -37,7 +37,7 @@ static const EVP_CIPHER chacha20_cipher = {
/*
* The 128 bit EVP IV is split for ChaCha into four 32 bit pieces:
* counter[0] counter[1] iv[0] iv[1]
- * OpenSSL exposes these as;
+ * OpenSSL exposes these as:
* openssl_iv = counter[0] iv[0] iv[1] iv[2]
* Due to the cipher internal state's symmetry, these are functionally
* equivalent.