simd.h 470 B

1234567891011121314151617
  1. /*
  2. * Shared crypto simd helpers
  3. */
  4. #ifndef _CRYPTO_INTERNAL_SIMD_H
  5. #define _CRYPTO_INTERNAL_SIMD_H
  6. struct simd_skcipher_alg;
  7. struct simd_skcipher_alg *simd_skcipher_create_compat(const char *algname,
  8. const char *drvname,
  9. const char *basename);
  10. struct simd_skcipher_alg *simd_skcipher_create(const char *algname,
  11. const char *basename);
  12. void simd_skcipher_free(struct simd_skcipher_alg *alg);
  13. #endif /* _CRYPTO_INTERNAL_SIMD_H */