/third_party/rust/crates/rust-openssl/openssl/src/ |
H A D | md.rs | 223 #[corresponds(EVP_MD_size)] 226 unsafe { ffi::EVP_MD_size(self.as_ptr()) as usize } in size()
|
H A D | hash.rs | 184 unsafe { ffi::EVP_MD_size(self.0) as usize } in size()
|
/third_party/node/src/crypto/ |
H A D | crypto_hkdf.cc | 94 size_t max_length = EVP_MD_size(params->digest) * kMaxDigestMultiplier; in AdditionalConfig() 125 salt = {default_salt, static_cast<unsigned>(EVP_MD_size(params.digest))}; in DeriveBits()
|
H A D | crypto_hash.cc | 127 md_len_ = EVP_MD_size(md); in HashInit() 267 unsigned int expected = EVP_MD_size(params->digest); in AdditionalConfig()
|
H A D | crypto_rsa.cc | 85 saltlen = EVP_MD_size(params->params.md); in Setup()
|
/third_party/rust/crates/rust-openssl/openssl-sys/src/ |
H A D | evp.rs | 64 pub unsafe fn EVP_MD_size(md: *const EVP_MD) -> c_int { in EVP_MD_size() functions 114 EVP_MD_size(EVP_MD_CTX_md(ctx)) in EVP_MD_CTX_size()
|
/third_party/node/deps/ngtcp2/ngtcp2/crypto/openssl/ |
H A D | openssl.c | 176 return (size_t)EVP_MD_size(md); in crypto_md_hashlen() 347 if (EVP_KDF_derive(kctx, dest, (size_t)EVP_MD_size(prf), params) <= 0) { in ngtcp2_crypto_hkdf_extract() 358 size_t destlen = (size_t)EVP_MD_size(prf); in ngtcp2_crypto_hkdf_extract()
|
/third_party/fsverity-utils/lib/ |
H A D | hash_algs.c | 93 if (WARN_ON(EVP_MD_size(md) != alg->digest_size)) in openssl_digest_ctx_create()
|
/third_party/node/deps/ngtcp2/ngtcp2/crypto/boringssl/ |
H A D | boringssl.c | 174 return (size_t)EVP_MD_size(md); in crypto_md_hashlen() 287 size_t destlen = (size_t)EVP_MD_size(prf); in ngtcp2_crypto_hkdf_extract()
|
/third_party/node/deps/openssl/openssl/providers/implementations/kdfs/ |
H A D | pbkdf1.c | 71 mdsize = EVP_MD_size(md_type); in kdf_pbkdf1_do_derive()
|
/third_party/openssl/providers/implementations/kdfs/ |
H A D | pbkdf1.c | 71 mdsize = EVP_MD_size(md_type); in kdf_pbkdf1_do_derive()
|
/third_party/libwebsockets/lib/tls/openssl/ |
H A D | lws-genrsa.c | 377 if (EVP_DigestSignUpdate(mdctx, in, (unsigned int)EVP_MD_size(md))) {
|
H A D | lws-genec.c | 497 if (EVP_DigestSignUpdate(mdctx, in, EVP_MD_size(md))) {
|
/third_party/node/deps/openssl/openssl/ssl/ |
H A D | ssl_quic.c | 305 if ((len = EVP_MD_size(md)) <= 0) { in quic_set_encryption_secrets()
|
H A D | tls13_enc.c | 500 hashleni = EVP_MD_size(md); in quic_change_cipher_state()
|
/third_party/nghttp2/src/ |
H A D | shrpx_quic.cc | 266 unsigned int hlen = EVP_MD_size(EVP_sha256()); in generate_quic_hashed_connection_id()
|
H A D | shrpx_worker_process.cc | 201 ticket_key.hmac_keylen = EVP_MD_size(ticket_key.hmac); in generate_ticket_key()
|
H A D | util.cc | 1565 unsigned int mdlen = EVP_MD_size(meth); in message_digest()
|
/third_party/python/Modules/ |
H A D | _hashopenssl.c | 1251 dklen = EVP_MD_size(digest); in pbkdf2_hmac_impl() 1571 unsigned int digest_size = EVP_MD_size(HMAC_CTX_get_md(self->ctx)); in _hmac_digest_size()
|
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/ |
H A D | evp.rs | 34 pub fn EVP_MD_size(md: *const EVP_MD) -> c_int; in EVP_MD_size() functions
|
/third_party/openssl/ohos_lite/include/openssl/ |
H A D | evp.h | 447 int EVP_MD_size(const EVP_MD *md); 457 # define EVP_MD_CTX_size(e) EVP_MD_size(EVP_MD_CTX_md(e))
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/ |
H A D | tls_openssl.c | 3997 md_size = EVP_MD_size(h); in openssl_get_keyblock_size() 4031 EVP_CIPHER_key_length(c), EVP_MD_size(h), in openssl_get_keyblock_size() 4033 return 2 * (EVP_CIPHER_key_length(c) + EVP_MD_size(h) + in openssl_get_keyblock_size()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/ |
H A D | tls_openssl.c | 4238 md_size = EVP_MD_size(h); in openssl_get_keyblock_size() 4286 mac_key_len = EVP_MD_size(h); in openssl_get_keyblock_size()
|
/third_party/node/deps/openssl/openssl/include/openssl/ |
H A D | evp.h | 547 # define EVP_MD_size EVP_MD_get_size macro
|
/third_party/openssl/include/openssl/ |
H A D | evp.h | 545 # define EVP_MD_size EVP_MD_get_size macro
|