]> git.ipfire.org Git - thirdparty/kernel/linux.git/blob - crypto/skcipher.h
crypto: remove CONFIG_CRYPTO_STATS
[thirdparty/kernel/linux.git] / crypto / skcipher.h
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /*
3 * Cryptographic API.
4 *
5 * Copyright (c) 2023 Herbert Xu <herbert@gondor.apana.org.au>
6 */
7 #ifndef _LOCAL_CRYPTO_SKCIPHER_H
8 #define _LOCAL_CRYPTO_SKCIPHER_H
9
10 #include <crypto/internal/skcipher.h>
11 #include "internal.h"
12
13 int crypto_lskcipher_encrypt_sg(struct skcipher_request *req);
14 int crypto_lskcipher_decrypt_sg(struct skcipher_request *req);
15 int crypto_init_lskcipher_ops_sg(struct crypto_tfm *tfm);
16 int skcipher_prepare_alg_common(struct skcipher_alg_common *alg);
17
18 #endif /* _LOCAL_CRYPTO_SKCIPHER_H */