Symbol: EVP_MD_size
crypto/libressl/apps/openssl/ts.c
683
md_value_len = EVP_MD_size(md);
crypto/libressl/crypto/ecdh/ecdh_kdf.c
83
mdlen = EVP_MD_size(md);
crypto/libressl/crypto/evp/m_sigver.c
180
int s = EVP_MD_size(ctx->digest);
crypto/libressl/crypto/evp/p5_crpt.c
99
mdsize = EVP_MD_size(md);
crypto/libressl/crypto/evp/p5_crpt2.c
90
mdlen = EVP_MD_size(digest);
crypto/libressl/crypto/hkdf/hkdf.c
73
const size_t digest_len = EVP_MD_size(digest);
crypto/libressl/crypto/kdf/hkdf_evp.c
242
*keylen = EVP_MD_size(kctx->md);
crypto/libressl/crypto/ocsp/ocsp_vfy.c
335
mdlen = EVP_MD_size(dgst);
crypto/libressl/crypto/pkcs12/p12_key.c
114
if ((u = EVP_MD_size(md_type)) <= 0)
crypto/libressl/crypto/pkcs12/p12_mutl.c
143
if ((md_size = EVP_MD_size(md_type)) < 0)
crypto/libressl/crypto/rsa/rsa_ameth.c
669
saltlen = EVP_MD_size(sigmd);
crypto/libressl/crypto/rsa/rsa_ameth.c
671
saltlen = EVP_PKEY_size(pk) - EVP_MD_size(sigmd) - 2;
crypto/libressl/crypto/rsa/rsa_oaep.c
111
if ((mdlen = EVP_MD_size(md)) <= 0)
crypto/libressl/crypto/rsa/rsa_oaep.c
186
if ((mdlen = EVP_MD_size(md)) <= 0)
crypto/libressl/crypto/rsa/rsa_oaep.c
331
mdlen = EVP_MD_size(dgst);
crypto/libressl/crypto/rsa/rsa_pmeth.c
195
if (tbslen != (size_t)EVP_MD_size(rctx->md)) {
crypto/libressl/crypto/rsa/rsa_pmeth.c
264
if (ret != EVP_MD_size(rctx->md)) {
crypto/libressl/crypto/rsa/rsa_pmeth.c
303
if (tbslen != (size_t)EVP_MD_size(rctx->md)) {
crypto/libressl/crypto/rsa/rsa_pmeth.c
490
rctx->min_saltlen > EVP_MD_size(rctx->md)) ||
crypto/libressl/crypto/rsa/rsa_pmeth.c
829
max_saltlen = RSA_size(rsa) - EVP_MD_size(md);
crypto/libressl/crypto/rsa/rsa_pss.c
205
hLen = EVP_MD_size(Hash);
crypto/libressl/crypto/rsa/rsa_pss.c
99
hLen = EVP_MD_size(Hash);
crypto/libressl/crypto/rsa/rsa_sign.c
238
if ((m_len = EVP_MD_size(md)) > (size_t)decrypt_len) {
crypto/libressl/crypto/ts/ts_rsp_sign.c
561
if (digest->length != EVP_MD_size(md)) {
crypto/libressl/crypto/ts/ts_rsp_verify.c
716
if ((length = EVP_MD_size(md)) < 0)
crypto/libressl/crypto/x509/x509_vfy.c
2699
bits = EVP_MD_size(md) * 4;
crypto/libressl/include/openssl/evp.h
344
int EVP_MD_size(const EVP_MD *md);
crypto/libressl/include/openssl/evp.h
370
#define EVP_MD_CTX_size(e) EVP_MD_size(EVP_MD_CTX_md(e))
crypto/libressl/include/openssl/hmac.h
75
#define HMAC_size(e) (EVP_MD_size(HMAC_CTX_get_md((e))))
crypto/libressl/ssl/ssl_ciph.c
524
*mac_secret_size = EVP_MD_size(*md);
crypto/libressl/ssl/ssl_seclevel.c
359
return EVP_MD_size(md) * 4;
crypto/libressl/ssl/ssl_sigalgs.c
306
EVP_PKEY_size(pkey) < (2 * EVP_MD_size(sigalg->md()) + 2))
crypto/libressl/ssl/t1_enc.c
173
chunk = EVP_MD_size(md);
crypto/libressl/ssl/tls12_key_schedule.c
123
mac_key_len = EVP_MD_size(mac_hash);
crypto/libressl/ssl/tls12_record_layer.c
497
if (EVP_MD_size(rl->mac_hash) != CBS_len(mac_key))
crypto/libressl/ssl/tls13_client.c
1013
if (!tls13_secret_init(&finished_key, EVP_MD_size(ctx->hash)))
crypto/libressl/ssl/tls13_client.c
732
finished_key.len = EVP_MD_size(ctx->hash);
crypto/libressl/ssl/tls13_key_schedule.c
59
hash_length = EVP_MD_size(digest);
crypto/libressl/ssl/tls13_lib.c
620
md_len = EVP_MD_size(secrets->digest);
crypto/libressl/ssl/tls13_server.c
1048
finished_key.len = EVP_MD_size(ctx->hash);
crypto/libressl/ssl/tls13_server.c
805
if (!tls13_secret_init(&finished_key, EVP_MD_size(ctx->hash)))