summaryrefslogtreecommitdiffstats
path: root/crypto/Kconfig
diff options
context:
space:
mode:
authorJames Bottomley2018-03-01 23:36:17 +0100
committerHerbert Xu2018-03-09 15:45:49 +0100
commita7d85e06ed8033f263451f3aef4159024e7dae5f (patch)
tree4f5dc50bb388a34c718c3e6be2ed8b4d017feb96 /crypto/Kconfig
parentcrypto: s5p-sss - Constify pointed data (arguments and local variables) (diff)
downloadkernel-qcow2-linux-a7d85e06ed8033f263451f3aef4159024e7dae5f.tar.gz
kernel-qcow2-linux-a7d85e06ed8033f263451f3aef4159024e7dae5f.tar.xz
kernel-qcow2-linux-a7d85e06ed8033f263451f3aef4159024e7dae5f.zip
crypto: cfb - add support for Cipher FeedBack mode
TPM security routines require encryption and decryption with AES in CFB mode, so add it to the Linux Crypto schemes. CFB is basically a one time pad where the pad is generated initially from the encrypted IV and then subsequently from the encrypted previous block of ciphertext. The pad is XOR'd into the plain text to get the final ciphertext. https://en.wikipedia.org/wiki/Block_cipher_mode_of_operation#CFB Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/Kconfig')
-rw-r--r--crypto/Kconfig8
1 files changed, 8 insertions, 0 deletions
diff --git a/crypto/Kconfig b/crypto/Kconfig
index de693e0451b8..4c4d283043c7 100644
--- a/crypto/Kconfig
+++ b/crypto/Kconfig
@@ -320,6 +320,14 @@ config CRYPTO_CBC
CBC: Cipher Block Chaining mode
This block cipher algorithm is required for IPSec.
+config CRYPTO_CFB
+ tristate "CFB support"
+ select CRYPTO_BLKCIPHER
+ select CRYPTO_MANAGER
+ help
+ CFB: Cipher FeedBack mode
+ This block cipher algorithm is required for TPM2 Cryptography.
+
config CRYPTO_CTR
tristate "CTR support"
select CRYPTO_BLKCIPHER