Loading crypto/evp/p_lib.c +3 −1 Original line number Diff line number Diff line Loading @@ -81,6 +81,8 @@ int EVP_PKEY_bits(EVP_PKEY *pkey) int EVP_PKEY_size(EVP_PKEY *pkey) { if (pkey == NULL) return(0); #ifndef OPENSSL_NO_RSA if (pkey->type == EVP_PKEY_RSA) return(RSA_size(pkey->pkey.rsa)); Loading Loading
crypto/evp/p_lib.c +3 −1 Original line number Diff line number Diff line Loading @@ -81,6 +81,8 @@ int EVP_PKEY_bits(EVP_PKEY *pkey) int EVP_PKEY_size(EVP_PKEY *pkey) { if (pkey == NULL) return(0); #ifndef OPENSSL_NO_RSA if (pkey->type == EVP_PKEY_RSA) return(RSA_size(pkey->pkey.rsa)); Loading