Commit 92dad6cc authored by Ben Laurie's avatar Ben Laurie
Browse files

Reinstate accidentally deleted code.

parent 61454a9f
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -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));