[CRYPTO] authenc: Move enckeylen into key itself
authorHerbert Xu <herbert@gondor.apana.org.au>
Thu, 22 Nov 2007 15:11:53 +0000 (23:11 +0800)
committerHerbert Xu <herbert@gondor.apana.org.au>
Thu, 10 Jan 2008 21:16:30 +0000 (08:16 +1100)
commite236d4a89a2ffbc8aa18064161f4f159c4d89b4a
tree5688f2fd39c734c10b6d1fda791a87d7a19dee3b
parent7ba683a6deba70251756aa5a021cdaa5c875a7a2
[CRYPTO] authenc: Move enckeylen into key itself

Having enckeylen as a template parameter makes it a pain for hardware
devices that implement ciphers with many key sizes since each one would
have to be registered separately.

Since the authenc algorithm is mainly used for legacy purposes where its
key is going to be constructed out of two separate keys, we can in fact
embed this value into the key itself.

This patch does this by prepending an rtnetlink header to the key that
contains the encryption key length.

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
crypto/authenc.c
include/crypto/authenc.h [new file with mode: 0644]