diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2007-11-30 05:38:37 -0500 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2008-01-10 16:16:48 -0500 |
commit | 0a270321dbf948963aeb0e8382fe17d2c2eb3771 (patch) | |
tree | bdb6c12f88bd02b62853ff6bf26bf9d4a736fdbd /crypto/Makefile | |
parent | 45d44eb56ad197cfccb8f84b5df64abff8b7cb96 (diff) |
[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/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/Makefile b/crypto/Makefile index 968b796d9e6c..1b99b3a1310c 100644 --- a/crypto/Makefile +++ b/crypto/Makefile | |||
@@ -15,6 +15,7 @@ crypto_blkcipher-objs += blkcipher.o | |||
15 | obj-$(CONFIG_CRYPTO_BLKCIPHER) += crypto_blkcipher.o | 15 | obj-$(CONFIG_CRYPTO_BLKCIPHER) += crypto_blkcipher.o |
16 | obj-$(CONFIG_CRYPTO_BLKCIPHER) += chainiv.o | 16 | obj-$(CONFIG_CRYPTO_BLKCIPHER) += chainiv.o |
17 | obj-$(CONFIG_CRYPTO_BLKCIPHER) += eseqiv.o | 17 | obj-$(CONFIG_CRYPTO_BLKCIPHER) += eseqiv.o |
18 | obj-$(CONFIG_CRYPTO_SEQIV) += seqiv.o | ||
18 | 19 | ||
19 | crypto_hash-objs := hash.o | 20 | crypto_hash-objs := hash.o |
20 | obj-$(CONFIG_CRYPTO_HASH) += crypto_hash.o | 21 | obj-$(CONFIG_CRYPTO_HASH) += crypto_hash.o |