Symbol: EVP_PKEY_get_security_bits
crypto/openssl/crypto/x509/x509_set.c
241
secbits = EVP_PKEY_get_security_bits(pubkey);
crypto/openssl/crypto/x509/x509_vfy.c
3698
return EVP_PKEY_get_security_bits(pkey) >= minbits_table[level - 1];
crypto/openssl/include/openssl/evp.h
1362
int EVP_PKEY_get_security_bits(const EVP_PKEY *pkey);
crypto/openssl/include/openssl/evp.h
1363
#define EVP_PKEY_security_bits EVP_PKEY_get_security_bits
crypto/openssl/ssl/ssl_lib.c
7547
EVP_PKEY_get_security_bits(dhpkey), 0, dhpkey)) {
crypto/openssl/ssl/ssl_lib.c
7559
EVP_PKEY_get_security_bits(dhpkey), 0, dhpkey)) {
crypto/openssl/ssl/statem/statem_clnt.c
2352
EVP_PKEY_get_security_bits(peer_tmp),
crypto/openssl/ssl/statem/statem_srvr.c
2617
EVP_PKEY_get_security_bits(pkdhp), 0, pkdhp)) {
crypto/openssl/ssl/t1_lib.c
4313
dh_secbits = EVP_PKEY_get_security_bits(s->s3.tmp.cert->privatekey);
crypto/openssl/ssl/t1_lib.c
4373
secbits = EVP_PKEY_get_security_bits(pkey);
crypto/openssl/test/evp_pkey_provided_test.c
1017
|| !TEST_int_eq(EVP_PKEY_get_security_bits(pk), 112)
crypto/openssl/test/evp_pkey_provided_test.c
1226
|| !TEST_int_eq(EVP_PKEY_get_security_bits(pk), 112)
crypto/openssl/test/evp_pkey_provided_test.c
1524
|| !TEST_int_eq(EVP_PKEY_get_security_bits(pk), security_bits)
crypto/openssl/test/evp_pkey_provided_test.c
1702
|| !TEST_int_eq(EVP_PKEY_get_security_bits(pk), 128)
crypto/openssl/test/evp_pkey_provided_test.c
2030
|| !TEST_int_eq(EVP_PKEY_get_security_bits(pk), 112)
crypto/openssl/test/evp_pkey_provided_test.c
396
|| !TEST_int_eq(EVP_PKEY_get_security_bits(pk), 8)
crypto/openssl/test/evp_pkey_provided_test.c
499
|| !TEST_int_eq(EVP_PKEY_get_security_bits(pk), expected_sbits)