]> git.proxmox.com Git - mirror_ubuntu-kernels.git/blame - include/crypto/internal/simd.h
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[mirror_ubuntu-kernels.git] / include / crypto / internal / simd.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
266d0516
HX
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 */