Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * Shared crypto simd helpers
4 */
5
6#ifndef _CRYPTO_INTERNAL_SIMD_H
7#define _CRYPTO_INTERNAL_SIMD_H
8
9struct simd_skcipher_alg;
10
11struct simd_skcipher_alg *simd_skcipher_create_compat(const char *algname,
12 const char *drvname,
13 const char *basename);
14struct simd_skcipher_alg *simd_skcipher_create(const char *algname,
15 const char *basename);
16void simd_skcipher_free(struct simd_skcipher_alg *alg);
17
18#endif /* _CRYPTO_INTERNAL_SIMD_H */