diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2020-01-12 17:58:58 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-02-24 08:36:50 +0100 |
commit | 5a6f5b327fcef0d1cd4ed02e0fbce17a0221f938 (patch) | |
tree | 1bdd7495b928f2049916143e578cd079f956502d /crypto | |
parent | 817faa4ed4335bbb8fcffabfe9ff2dc3fe8ca5e8 (diff) | |
download | linux-stable-5a6f5b327fcef0d1cd4ed02e0fbce17a0221f938.tar.gz linux-stable-5a6f5b327fcef0d1cd4ed02e0fbce17a0221f938.tar.bz2 linux-stable-5a6f5b327fcef0d1cd4ed02e0fbce17a0221f938.zip |
crypto: essiv - fix AEAD capitalization and preposition use in help text
[ Upstream commit ab3d436bf3e9d05f58ceaa85ff7475bfcd6e45af ]
"AEAD" is capitalized everywhere else.
Use "an" when followed by a written or spoken vowel.
Fixes: be1eb7f78aa8fbe3 ("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>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/Kconfig b/crypto/Kconfig index 29472fb795f3..b2cc0ad3792a 100644 --- a/crypto/Kconfig +++ b/crypto/Kconfig @@ -500,10 +500,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.) |