diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2020-01-26 07:47:27 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2020-01-26 07:47:27 +0000 |
commit | f47191f84dd3d285b3446f8ae8b5c927bc7ff38f (patch) | |
tree | 34c2331b535fcaa4e1518bf5ba24b227e25890f7 /lib/libcrypto | |
parent | 6808e9e063a9dbd5e124018b54f118c49c4a1571 (diff) |
typo
Diffstat (limited to 'lib/libcrypto')
-rw-r--r-- | lib/libcrypto/evp/e_chacha.c | 4 |
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. |