summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeert Uytterhoeven <geert@linux-m68k.org>2020-01-12 17:58:58 +0100
committerHerbert Xu <herbert@gondor.apana.org.au>2020-01-16 15:18:15 +0800
commit6cdcc5bd15648148f62c46cf573a51136946009d (patch)
treeb6b8e0d741b2bed068998bc74710f9466c0e5996
parented4df0aaf3f7ea481ed4ad2c441c0fac15581555 (diff)
downloadlinux-crypto-6cdcc5bd15648148f62c46cf573a51136946009d.tar.gz
linux-crypto-6cdcc5bd15648148f62c46cf573a51136946009d.zip
crypto: essiv - fix AEAD capitalization and preposition use in help text
"AEAD" is capitalized everywhere else. Use "an" when followed by a written or spoken vowel. Fixes: 392e2e025cfd8a3c ("crypto: essiv - create wrapper template for ESSIV generation") Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
-rw-r--r--crypto/Kconfig4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/Kconfig b/crypto/Kconfig
index 5575d484..cdb51d42 100644
--- a/crypto/Kconfig
+++ b/crypto/Kconfig
@@ -511,10 +511,10 @@ config CRYPTO_ESSIV
encryption.
This driver implements a crypto API template that can be
- instantiated either as a skcipher or as a aead (depending on the
+ instantiated either as an skcipher or as an AEAD (depending on the
type of the first template argument), and which defers encryption
and decryption requests to the encapsulated cipher after applying
- ESSIV to the input IV. Note that in the aead case, it is assumed
+ ESSIV to the input IV. Note that in the AEAD case, it is assumed
that the keys are presented in the same format used by the authenc
template, and that the IV appears at the end of the authenticated
associated data (AAD) region (which is how dm-crypt uses it.)