xref: /openbmc/linux/include/crypto/internal/simd.h (revision 74ce1896)
1 /*
2  * Shared crypto simd helpers
3  */
4 
5 #ifndef _CRYPTO_INTERNAL_SIMD_H
6 #define _CRYPTO_INTERNAL_SIMD_H
7 
8 struct simd_skcipher_alg;
9 
10 struct simd_skcipher_alg *simd_skcipher_create_compat(const char *algname,
11 						      const char *drvname,
12 						      const char *basename);
13 struct simd_skcipher_alg *simd_skcipher_create(const char *algname,
14 					       const char *basename);
15 void simd_skcipher_free(struct simd_skcipher_alg *alg);
16 
17 #endif /* _CRYPTO_INTERNAL_SIMD_H */
18