Home
last modified time | relevance | path

Searched refs:hash_type (Results 1 – 25 of 25) sorted by relevance

/third_party/libwebsockets/lib/tls/openssl/
Dlws-gencrypto.c36 lws_gencrypto_openssl_hash_to_NID(enum lws_genhash_types hash_type) in lws_gencrypto_openssl_hash_to_NID() argument
40 switch (hash_type) { in lws_gencrypto_openssl_hash_to_NID()
64 lws_gencrypto_openssl_hash_to_EVP_MD(enum lws_genhash_types hash_type) in lws_gencrypto_openssl_hash_to_EVP_MD() argument
68 switch (hash_type) { in lws_gencrypto_openssl_hash_to_EVP_MD()
Dlws-genrsa.c285 enum lws_genhash_types hash_type, const uint8_t *sig, argument
288 int n = lws_gencrypto_openssl_hash_to_NID(hash_type),
289 h = (int)lws_genhash_size(hash_type);
301 md = lws_gencrypto_openssl_hash_to_EVP_MD(hash_type);
329 enum lws_genhash_types hash_type, uint8_t *sig, argument
332 int n = lws_gencrypto_openssl_hash_to_NID(hash_type),
333 h = (int)lws_genhash_size(hash_type);
352 md = lws_gencrypto_openssl_hash_to_EVP_MD(hash_type);
Dprivate-lib-tls-openssl.h52 lws_gencrypto_openssl_hash_to_NID(enum lws_genhash_types hash_type);
55 lws_gencrypto_openssl_hash_to_EVP_MD(enum lws_genhash_types hash_type);
Dlws-genec.c475 enum lws_genhash_types hash_type,
478 const EVP_MD *md = lws_gencrypto_openssl_hash_to_EVP_MD(hash_type);
521 enum lws_genhash_types hash_type, int keybits, in lws_genecdsa_hash_sign_jws() argument
525 size_t hs = lws_genhash_size(hash_type); in lws_genecdsa_hash_sign_jws()
604 enum lws_genhash_types hash_type, int keybits, in lws_genecdsa_hash_sig_verify_jws() argument
607 int ret = -1, n, hlen = (int)lws_genhash_size(hash_type), in lws_genecdsa_hash_sig_verify_jws()
/third_party/flutter/engine/flutter/third_party/txt/src/utils/
DTypeHelpers.h328 hash_t hash_type(const TKey& key);
333 inline hash_t hash_type(const T& value) { \
338 inline hash_t hash_type(const T& value) { \
343 inline hash_t hash_type(const T& value) { \
347 return hash_type(newValue); \
363 inline hash_t hash_type(T* const& value) {
364 return hash_type(uintptr_t(value));
DLruCache.h90 return hash_type(entry->getKey()); in operator()
/third_party/libwebsockets/lib/tls/mbedtls/
Dlws-genrsa.c369 enum lws_genhash_types hash_type, const uint8_t *sig, argument
372 int n, h = (int)lws_gencrypto_mbedtls_hash_to_MD_TYPE(hash_type);
389 (unsigned int)lws_genhash_size(hash_type),
399 (unsigned int)lws_genhash_size(hash_type),
416 enum lws_genhash_types hash_type, uint8_t *sig, argument
419 int n, h = (int)lws_gencrypto_mbedtls_hash_to_MD_TYPE(hash_type);
444 (unsigned int)lws_genhash_size(hash_type),
455 (unsigned int)lws_genhash_size(hash_type),
Dlws-gencrypto.c31 lws_gencrypto_mbedtls_hash_to_MD_TYPE(enum lws_genhash_types hash_type) in lws_gencrypto_mbedtls_hash_to_MD_TYPE() argument
35 switch (hash_type) { in lws_gencrypto_mbedtls_hash_to_MD_TYPE()
Dlws-genec.c395 enum lws_genhash_types hash_type, int keybits, in lws_genecdsa_hash_sign_jws() argument
399 size_t hlen = lws_genhash_size(hash_type); in lws_genecdsa_hash_sign_jws()
457 enum lws_genhash_types hash_type, int keybits, in lws_genecdsa_hash_sig_verify_jws() argument
461 size_t hlen = lws_genhash_size(hash_type); in lws_genecdsa_hash_sig_verify_jws()
Dprivate-lib-tls-mbedtls.h45 lws_gencrypto_mbedtls_hash_to_MD_TYPE(enum lws_genhash_types hash_type);
/third_party/boost/boost/multi_index/detail/
Dhash_index_args.hpp82 >::type hash_type; typedef
95 BOOST_STATIC_ASSERT(!mpl::is_na<hash_type>::value);
/third_party/libwebsockets/include/libwebsockets/
Dlws-genec.h175 enum lws_genhash_types hash_type, int keybits,
198 enum lws_genhash_types hash_type, int keybits,
Dlws-genrsa.h208 enum lws_genhash_types hash_type,
229 enum lws_genhash_types hash_type,
Dlws-jose.h81 enum lws_genhash_types hash_type; member
/third_party/libwebsockets/lib/jose/jws/
Djws.c499 if (lws_genhash_init(&hash_ctx, jose.alg->hash_type)) in lws_jws_sig_confirm()
529 jose.alg->hash_type, in lws_jws_sig_confirm()
620 if (lws_genhash_init(&hash_ctx, jose.alg->hash_type) || in lws_jws_sig_confirm()
632 h_len = (int)lws_genhash_size(jose.alg->hash_type); in lws_jws_sig_confirm()
647 jose.alg->hash_type, in lws_jws_sig_confirm()
752 if (jose->alg->hash_type == LWS_GENHASH_TYPE_UNKNOWN && in lws_jws_sign_from_b64()
757 if (lws_genhash_init(&hash_ctx, jose->alg->hash_type) || in lws_jws_sign_from_b64()
791 n = lws_genrsa_hash_sign(&rsactx, digest, jose->alg->hash_type, in lws_jws_sign_from_b64()
811 lws_genhash_size(jose->alg->hash_type), in lws_jws_sign_from_b64()
855 jose->alg->hash_type, in lws_jws_sign_from_b64()
/third_party/ffmpeg/libavcodec/
Dhevc_sei.c34 uint8_t hash_type; in decode_nal_sei_decoded_picture_hash() local
37 hash_type = get_bits(gb, 8); in decode_nal_sei_decoded_picture_hash()
40 if (hash_type == 0) { in decode_nal_sei_decoded_picture_hash()
44 } else if (hash_type == 1) { in decode_nal_sei_decoded_picture_hash()
47 } else if (hash_type == 2) { in decode_nal_sei_decoded_picture_hash()
Dcbs_h265_syntax_template.c1919 u(8, hash_type, 0, 2); in FUNC()
1922 if (current->hash_type == 0) { in FUNC()
1925 } else if (current->hash_type == 1) { in FUNC()
1927 } else if (current->hash_type == 2) { in FUNC()
Dcbs_h265.h616 uint8_t hash_type; member
/third_party/flutter/engine/flutter/third_party/txt/src/minikin/
DLayout.cpp202 hash = android::JenkinsHashMix(hash, hash_type(mStyle)); in computeHash()
203 hash = android::JenkinsHashMix(hash, hash_type(mSize)); in computeHash()
204 hash = android::JenkinsHashMix(hash, hash_type(mScaleX)); in computeHash()
205 hash = android::JenkinsHashMix(hash, hash_type(mSkewX)); in computeHash()
206 hash = android::JenkinsHashMix(hash, hash_type(mLetterSpacing)); in computeHash()
207 hash = android::JenkinsHashMix(hash, hash_type(mPaintFlags)); in computeHash()
208 hash = android::JenkinsHashMix(hash, hash_type(mHyphenEdit.getHyphen())); in computeHash()
209 hash = android::JenkinsHashMix(hash, hash_type(mIsRtl)); in computeHash()
214 android::hash_t hash_type(const LayoutCacheKey& key) { in hash_type() function
DFontFamily.h87 inline android::hash_t hash_type(const FontStyle& style) { in hash_type() function
/third_party/boost/boost/multi_index/
Dhashed_index.hpp1738 typedef typename index_args::hash_type hash_type; typedef
1751 key_from_value_type,hash_type,pred_type,
1763 typedef typename index_args::hash_type hash_type; typedef
1776 key_from_value_type,hash_type,pred_type,
/third_party/python/Lib/test/
Dtest_hashlib.py932 hash_type = type(constructor())
935 with self.subTest(hash_type=hash_type):
937 hash_type.value = False
/third_party/libwebsockets/minimal-examples/api-tests/api-test-jose/
Djws.c497 if (lws_genhash_init(&hash_ctx, jose.alg->hash_type) || in test_jws_ES256()
659 if (lws_genhash_init(&hash_ctx, jose.alg->hash_type) || in test_jws_ES512()
/third_party/node/src/
Dnode_crypto.h616 void HmacInit(const char* hash_type, const char* key, int key_len);
Dnode_crypto.cc4198 void Hmac::HmacInit(const char* hash_type, const char* key, int key_len) { in HmacInit() argument
4201 const EVP_MD* md = EVP_get_digestbyname(hash_type); in HmacInit()
4221 const node::Utf8Value hash_type(env->isolate(), args[0]); in HmacInit() local
4223 hmac->HmacInit(*hash_type, key.get(), key.size()); in HmacInit()
4318 const node::Utf8Value hash_type(env->isolate(), args[0]); in New() local
4319 md = EVP_get_digestbyname(*hash_type); in New()