summaryrefslogtreecommitdiff
path: root/crypto/Makefile
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2007-11-30 21:38:37 +1100
committerHerbert Xu <herbert@gondor.apana.org.au>2008-01-11 08:16:48 +1100
commit20089c96d6eba471d8ae0f48e1bcbc4d8969cd02 (patch)
treea2420116e863f11744cee99ad80dc9270996ee71 /crypto/Makefile
parent87ca8032ebed5577ea73f203e4ac53f6dde9fca3 (diff)
downloadlinux-crypto-20089c96d6eba471d8ae0f48e1bcbc4d8969cd02.tar.gz
linux-crypto-20089c96d6eba471d8ae0f48e1bcbc4d8969cd02.zip
[CRYPTO] seqiv: Add Sequence Number IV Generator
This generator generates an IV based on a sequence number by xoring it with a salt. This algorithm is mainly useful for CTR and similar modes. This patch also sets it as the default IV generator for ctr. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/Makefile')
-rw-r--r--crypto/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/Makefile b/crypto/Makefile
index 968b796d..1b99b3a1 100644
--- a/crypto/Makefile
+++ b/crypto/Makefile
@@ -15,6 +15,7 @@ crypto_blkcipher-objs += blkcipher.o
obj-$(CONFIG_CRYPTO_BLKCIPHER) += crypto_blkcipher.o
obj-$(CONFIG_CRYPTO_BLKCIPHER) += chainiv.o
obj-$(CONFIG_CRYPTO_BLKCIPHER) += eseqiv.o
+obj-$(CONFIG_CRYPTO_SEQIV) += seqiv.o
crypto_hash-objs := hash.o
obj-$(CONFIG_CRYPTO_HASH) += crypto_hash.o