/usr/src/kernels/4.18.0-553.121.1.el8_10.x86_64/include/crypto/internal
NameSizeModeActions
acompress.h21110644editdlrm
aead.h48010644editdlrm
akcipher.h37200644editdlrm
geniv.h9770644editdlrm
hash.h64520644editdlrm
kpp.h17060644editdlrm
rng.h12310644editdlrm
rsa.h18530644editdlrm
scompress.h36860644editdlrm
simd.h7690644editdlrm
skcipher.h52600644editdlrm
Edit: /usr/src/kernels/4.18.0-553.121.1.el8_10.x86_64/include/crypto/internal/simd.h (769B)
/* SPDX-License-Identifier: GPL-2.0 */ /* * Shared crypto simd helpers */ #ifndef _CRYPTO_INTERNAL_SIMD_H #define _CRYPTO_INTERNAL_SIMD_H struct simd_skcipher_alg; struct skcipher_alg; struct simd_skcipher_alg *simd_skcipher_create_compat(const char *algname, const char *drvname, const char *basename); struct simd_skcipher_alg *simd_skcipher_create(const char *algname, const char *basename); void simd_skcipher_free(struct simd_skcipher_alg *alg); int simd_register_skciphers_compat(struct skcipher_alg *algs, int count, struct simd_skcipher_alg **simd_algs); void simd_unregister_skciphers(struct skcipher_alg *algs, int count, struct simd_skcipher_alg **simd_algs); #endif /* _CRYPTO_INTERNAL_SIMD_H */