mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
0f8f6d86d4
Convert the "seqiv" template to the new way of freeing instances where a ->free() method is installed to the instance struct itself. Also remove the unused implementation of the old way of freeing instances from the "echainiv" template, since it's already using the new way too. In doing this, also simplify the code by making the helper function aead_geniv_alloc() install the ->free() method, instead of making seqiv and echainiv do this themselves. This is analogous to how skcipher_alloc_instance_simple() works. This will allow removing support for the old way of freeing instances. Signed-off-by: Eric Biggers <ebiggers@google.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
27 lines
722 B
C
27 lines
722 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* geniv: IV generation
|
|
*
|
|
* Copyright (c) 2015 Herbert Xu <herbert@gondor.apana.org.au>
|
|
*/
|
|
|
|
#ifndef _CRYPTO_INTERNAL_GENIV_H
|
|
#define _CRYPTO_INTERNAL_GENIV_H
|
|
|
|
#include <crypto/internal/aead.h>
|
|
#include <linux/spinlock.h>
|
|
#include <linux/types.h>
|
|
|
|
struct aead_geniv_ctx {
|
|
spinlock_t lock;
|
|
struct crypto_aead *child;
|
|
struct crypto_sync_skcipher *sknull;
|
|
u8 salt[] __attribute__ ((aligned(__alignof__(u32))));
|
|
};
|
|
|
|
struct aead_instance *aead_geniv_alloc(struct crypto_template *tmpl,
|
|
struct rtattr **tb, u32 type, u32 mask);
|
|
int aead_init_geniv(struct crypto_aead *tfm);
|
|
void aead_exit_geniv(struct crypto_aead *tfm);
|
|
|
|
#endif /* _CRYPTO_INTERNAL_GENIV_H */
|