1 /* SPDX-License-Identifier: GPL-2.0-or-later */
5 * Copyright (c) 2023 Herbert Xu <herbert@gondor.apana.org.au>
7 #ifndef _LOCAL_CRYPTO_SKCIPHER_H
8 #define _LOCAL_CRYPTO_SKCIPHER_H
10 #include <crypto/internal/skcipher.h>
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
);
18 #endif /* _LOCAL_CRYPTO_SKCIPHER_H */