/third_party/f2fs-tools/tools/ |
H A D | sha512.c | 2 * sha512.c --- The sha512 algorithm 131 struct sha512_state sha512; member 141 S[i] = md->sha512.state[i]; in sha512_compress() 168 md->sha512.state[i] = md->sha512.state[i] + S[i]; in sha512_compress() 174 md->sha512.curlen = 0; in sha512_init() 175 md->sha512.length = 0; in sha512_init() 176 md->sha512.state[0] = CONST64(0x6a09e667f3bcc908); in sha512_init() 177 md->sha512 in sha512_init() [all...] |
/third_party/libwebsockets/lib/tls/mbedtls/ |
H A D | lws-genhash.c | 73 mbedtls_sha512_init(&ctx->u.sha512); in lws_genhash_init() 74 if (mbedtls_sha512_starts_ret(&ctx->u.sha512, 1 /* is384 */)) in lws_genhash_init() 78 mbedtls_sha512_init(&ctx->u.sha512); in lws_genhash_init() 79 if (mbedtls_sha512_starts_ret(&ctx->u.sha512, 0)) in lws_genhash_init() 109 if (mbedtls_sha512_update_ret(&ctx->u.sha512, in, len)) in lws_genhash_update() 113 if (mbedtls_sha512_update_ret(&ctx->u.sha512, in, len)) in lws_genhash_update() 141 if (mbedtls_sha512_finish_ret(&ctx->u.sha512, result)) in lws_genhash_destroy() 143 mbedtls_sha512_free(&ctx->u.sha512); in lws_genhash_destroy() 146 if (mbedtls_sha512_finish_ret(&ctx->u.sha512, result)) in lws_genhash_destroy() 148 mbedtls_sha512_free(&ctx->u.sha512); in lws_genhash_destroy() [all...] |
/third_party/mbedtls/library/ |
H A D | psa_crypto_hash.c | 57 mbedtls_sha512_free(&operation->ctx.sha512); in mbedtls_psa_hash_abort() 62 mbedtls_sha512_free(&operation->ctx.sha512); in mbedtls_psa_hash_abort() 135 mbedtls_sha512_init(&operation->ctx.sha512); in mbedtls_psa_hash_setup() 136 ret = mbedtls_sha512_starts(&operation->ctx.sha512, 1); in mbedtls_psa_hash_setup() 141 mbedtls_sha512_init(&operation->ctx.sha512); in mbedtls_psa_hash_setup() 142 ret = mbedtls_sha512_starts(&operation->ctx.sha512, 0); in mbedtls_psa_hash_setup() 221 mbedtls_sha512_clone(&target_operation->ctx.sha512, in mbedtls_psa_hash_clone() 222 &source_operation->ctx.sha512); in mbedtls_psa_hash_clone() 227 mbedtls_sha512_clone(&target_operation->ctx.sha512, in mbedtls_psa_hash_clone() 228 &source_operation->ctx.sha512); in mbedtls_psa_hash_clone() [all...] |
/third_party/openssl/demos/mac/ |
H A D | Makefile | 14 all: gmac hmac-sha512 cmac-aes256 poly1305 17 hmac-sha512: hmac-sha512.o 21 gmac hmac-sha512 cmac-aes256 poly1305: 25 $(RM) gmac hmac-sha512 cmac-aes256 poly1305 *.o
|
/third_party/node/test/parallel/ |
H A D | test-crypto-hmac.js | 132 sha512: 150 sha512: 169 sha512: 189 sha512: 204 sha512: '415fad6271580a531d4179bc891d87a6' 227 sha512: 258 sha512:
|
H A D | test-crypto-binary-default.js | 87 sha512: 105 sha512: 124 sha512: 144 sha512: 158 sha512: '415fad6271580a531d4179bc891d87a6' 181 sha512: 212 sha512: 370 const a3 = crypto.createHash('sha512').update('Test123').digest(); // binary
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/ |
H A D | Makefile | 46 sha512.o \ 47 sha512-prf.o \ 48 sha512-internal.o
|
H A D | crypto_internal.c | 31 struct sha512_state sha512; member 72 sha512_init(&ctx->u.sha512); in crypto_hash_init() 170 sha512_process(&ctx->u.sha512, data, len); in crypto_hash_update() 241 sha512_done(&ctx->u.sha512, mac); in crypto_hash_finish()
|
/third_party/node/deps/openssl/openssl/crypto/ |
H A D | armcap.c | 180 unsigned int sha512; in OPENSSL_cpuid_setup() local 181 size_t len = sizeof(sha512); in OPENSSL_cpuid_setup() 183 if (sysctlbyname("hw.optional.armv8_2_sha512", &sha512, &len, NULL, 0) == 0 && sha512 == 1) in OPENSSL_cpuid_setup()
|
/third_party/openssl/crypto/ |
H A D | armcap.c | 180 unsigned int sha512; in OPENSSL_cpuid_setup() local 181 size_t len = sizeof(sha512); in OPENSSL_cpuid_setup() 183 if (sysctlbyname("hw.optional.armv8_2_sha512", &sha512, &len, NULL, 0) == 0 && sha512 == 1) in OPENSSL_cpuid_setup()
|
/third_party/musl/src/crypt/ |
H A D | crypt_sha512.c | 2 * public domain sha512 crypt implementation 16 /* public domain sha512 implementation based on fips180-3 */ 19 struct sha512 { struct 56 static void processblock(struct sha512 *s, const uint8_t *buf) in processblock() 103 static void pad(struct sha512 *s) in pad() 126 static void sha512_init(struct sha512 *s) in sha512_init() 139 static void sha512_sum(struct sha512 *s, uint8_t *md) in sha512_sum() 156 static void sha512_update(struct sha512 *s, const void *m, unsigned long len) in sha512_update() 199 static void hashmd(struct sha512 *s, unsigned int n, const void *md) in hashmd() 210 struct sha512 ct in sha512crypt() [all...] |
/third_party/ffmpeg/tools/ |
H A D | crypto_bench.c | 76 #include "libavutil/sha512.h" 109 DEFINE_LAVU_MD(sha512, AVSHA512, sha512, 512); 220 DEFINE_CRYPTO_WRAPPER(sha512, SHA512) 312 DEFINE_GCRYPT_WRAPPER(sha512, SHA512) 354 #include <mbedtls/sha512.h> 375 DEFINE_MBEDCRYPTO_WRAPPER_SHA2(sha512) 470 DEFINE_TOMCRYPT_WRAPPER(sha512, sha512, SHA512) 644 IMPL_ALL("SHA-512", sha512, " [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/ |
H A D | crypto_internal.c | 31 struct sha512_state sha512; member 72 sha512_init(&ctx->u.sha512); in crypto_hash_init() 170 sha512_process(&ctx->u.sha512, data, len); in crypto_hash_update() 241 sha512_done(&ctx->u.sha512, mac); in crypto_hash_finish()
|
/third_party/ffmpeg/tests/fate/ |
H A D | libavutil.mak | 147 FATE_LIBAVUTIL += fate-sha512 148 fate-sha512: libavutil/tests/sha512$(EXESUF) 149 fate-sha512: CMD = run libavutil/tests/sha512$(EXESUF)
|
/third_party/python/Lib/test/ |
H A D | test_hmac.py | 230 hashlib.sha512: '87aa7cdea5ef619d4ff0b4241a1d6cb0' 247 hashlib.sha512: '164b7a7bfcf819e2e395fbe73b56e0a3' 264 hashlib.sha512: 'fa73b0089d56a284efb0f0756c890be9' 281 hashlib.sha512: 'b0ba465637458c6990e5a8c5f61d4af7' 299 hashlib.sha512: '80b24263c7c1a3ebb71493c1dd7be8b4' 320 hashlib.sha512: 'e37b6a775dc87dbaa4dfa9f96e5e3ffd' 338 @hashlib_helper.requires_hashdigest('sha512', openssl=True) 340 self._rfc4231_test_cases(hashlib.sha512, 'sha512', 64, 128)
|
/third_party/ffmpeg/libavutil/ |
H A D | Makefile | 77 sha512.h \ 165 sha512.o \ 266 sha512 \
|
/third_party/node/deps/npm/node_modules/pacote/lib/ |
H A D | registry.js | 155 // otherwise we end up breaking if we have saved a sha512 293 sha512: statement.subject[0].digest.sha512, 308 if (subject.sha512 !== integrityHexDigest) { 312 `doesn't match what was signed: ${subject.sha512}`
|
/third_party/node/deps/openssl/openssl/crypto/rsa/ |
H A D | rsa_sign.c | 139 ENCODE_DIGESTINFO_SHA(sha512, 0x03, SHA512_DIGEST_LENGTH) 177 MD_CASE(sha512) in ossl_rsa_digestinfo_encoding() 217 MD_NID_CASE(sha512, SHA512_DIGEST_LENGTH) in digest_sz_from_nid()
|
/third_party/openssl/crypto/rsa/ |
H A D | rsa_sign.c | 139 ENCODE_DIGESTINFO_SHA(sha512, 0x03, SHA512_DIGEST_LENGTH) 177 MD_CASE(sha512) in ossl_rsa_digestinfo_encoding() 217 MD_NID_CASE(sha512, SHA512_DIGEST_LENGTH) in digest_sz_from_nid()
|
/third_party/node/deps/openssl/openssl/providers/common/der/ |
H A D | der_dsa_sig.c | 37 MD_CASE(sha512); in ossl_DER_w_algorithmIdentifier_DSA_with_MD()
|
H A D | der_ec_sig.c | 38 MD_CASE(sha512); in ossl_DER_w_algorithmIdentifier_ECDSA_with_MD()
|
/third_party/openssl/providers/common/der/ |
H A D | der_ec_sig.c | 38 MD_CASE(sha512); in ossl_DER_w_algorithmIdentifier_ECDSA_with_MD()
|
H A D | der_dsa_sig.c | 37 MD_CASE(sha512); in ossl_DER_w_algorithmIdentifier_DSA_with_MD()
|
/third_party/mbedtls/include/psa/ |
H A D | crypto_builtin_primitives.h | 35 #include "mbedtls/sha512.h" 71 mbedtls_sha512_context sha512; member
|
/third_party/backends/tools/ |
H A D | create-release.sh | 37 for check in sha256 sha512; do
|