Linux Audio

Check our new training course

Loading...
Note: File does not exist in v6.2.
 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
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 */