xref: /linux/include/crypto/internal/simd.h (revision e58e871becec2d3b04ed91c0c16fe8deac9c9dfa)
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