__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
/* SPDX-License-Identifier: GPL-2.0 */ /* * Shared crypto simd helpers */ #ifndef _CRYPTO_INTERNAL_SIMD_H #define _CRYPTO_INTERNAL_SIMD_H #include <linux/percpu.h> #include <linux/types.h> /* skcipher support */ struct simd_skcipher_alg; struct skcipher_alg; struct simd_skcipher_alg *simd_skcipher_create_compat(struct skcipher_alg *ialg, const char *algname, const char *drvname, 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); /* AEAD support */ struct simd_aead_alg; struct aead_alg; int simd_register_aeads_compat(struct aead_alg *algs, int count, struct simd_aead_alg **simd_algs); void simd_unregister_aeads(struct aead_alg *algs, int count, struct simd_aead_alg **simd_algs); /* * crypto_simd_usable() - is it allowed at this time to use SIMD instructions or * access the SIMD register file? * * This delegates to may_use_simd(), except that this also returns false if SIMD * in crypto code has been temporarily disabled on this CPU by the crypto * self-tests, in order to test the no-SIMD fallback code. This override is * currently limited to configurations where the extra self-tests are enabled, * because it might be a bit too invasive to be part of the regular self-tests. * * This is a macro so that <asm/simd.h>, which some architectures don't have, * doesn't have to be included directly here. */ #ifdef CONFIG_CRYPTO_MANAGER_EXTRA_TESTS DECLARE_PER_CPU(bool, crypto_simd_disabled_for_test); #define crypto_simd_usable() \ (may_use_simd() && !this_cpu_read(crypto_simd_disabled_for_test)) #else #define crypto_simd_usable() may_use_simd() #endif #endif /* _CRYPTO_INTERNAL_SIMD_H */
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| acompress.h | File | 3.18 KB | 0644 |
|
| aead.h | File | 4.03 KB | 0644 |
|
| akcipher.h | File | 3.84 KB | 0644 |
|
| blake2b.h | File | 3.06 KB | 0644 |
|
| blake2s.h | File | 586 B | 0644 |
|
| chacha.h | File | 969 B | 0644 |
|
| cipher.h | File | 6.77 KB | 0644 |
|
| des.h | File | 3.25 KB | 0644 |
|
| ecc.h | File | 9.6 KB | 0644 |
|
| engine.h | File | 2.19 KB | 0644 |
|
| geniv.h | File | 702 B | 0644 |
|
| hash.h | File | 6.25 KB | 0644 |
|
| kdf_selftest.h | File | 1.5 KB | 0644 |
|
| kpp.h | File | 7.04 KB | 0644 |
|
| poly1305.h | File | 1.1 KB | 0644 |
|
| rng.h | File | 1021 B | 0644 |
|
| rsa.h | File | 2.24 KB | 0644 |
|
| scompress.h | File | 3.31 KB | 0644 |
|
| sig.h | File | 2.32 KB | 0644 |
|
| simd.h | File | 1.91 KB | 0644 |
|
| skcipher.h | File | 7.26 KB | 0644 |
|