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