diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2015-05-21 10:11:02 +0300 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2015-05-22 06:25:51 +0300 |
commit | 2d0f230fe0649758394466cb69b553c0e8184df9 (patch) | |
tree | 3f1585a81d409a05712d8880ee5d3645330dabca /include/crypto/aead.h | |
parent | 996d98d85ccc27d9c592ad7dc1371c60cd6585cc (diff) | |
download | linux-2d0f230fe0649758394466cb69b553c0e8184df9.tar.xz |
crypto: aead - Rename aead_alg to old_aead_alg
This patch is the first step in the introduction of a new AEAD
alg type. Unlike normal conversions this patch only renames the
existing aead_alg structure because there are external references
to it.
Those references will be removed after this patch.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'include/crypto/aead.h')
-rw-r--r-- | include/crypto/aead.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/crypto/aead.h b/include/crypto/aead.h index e2d2c3c62e68..aebf57dfb903 100644 --- a/include/crypto/aead.h +++ b/include/crypto/aead.h @@ -17,6 +17,8 @@ #include <linux/kernel.h> #include <linux/slab.h> +#define aead_alg old_aead_alg + /** * DOC: Authenticated Encryption With Associated Data (AEAD) Cipher API * |