Merge tag 'v6.10-p1' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6
[linux-2.6-block.git] / crypto / skcipher.h
CommitLineData
31865c4c
HX
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
31865c4c
HX
13int crypto_lskcipher_encrypt_sg(struct skcipher_request *req);
14int crypto_lskcipher_decrypt_sg(struct skcipher_request *req);
15int crypto_init_lskcipher_ops_sg(struct crypto_tfm *tfm);
16int skcipher_prepare_alg_common(struct skcipher_alg_common *alg);
17
18#endif /* _LOCAL_CRYPTO_SKCIPHER_H */