Port from stable branch.

This commit is contained in:
Dr. Stephen Henson 2005-04-26 22:07:17 +00:00
parent 49e179cc52
commit 667aef4c6a
2 changed files with 2 additions and 12 deletions

View File

@ -381,16 +381,6 @@ be added to the end of this file.
Dont forget req.
2003-04-10 03:13 steve
Changed:
crypto/rsa/rsa_sign.c (1.11.2.6), "Exp", lines: +2 -2
Only call redirected rsa_sign or rsa_verify if the pointer is set.
This allows, for example, a smart card to redirect rsa_sign
and keep the default rsa_verify.
2003-07-03 23:43 levitte
Changed:

View File

@ -76,7 +76,7 @@ int RSA_sign(int type, const unsigned char *m, unsigned int m_len,
const unsigned char *s = NULL;
X509_ALGOR algor;
ASN1_OCTET_STRING digest;
if(rsa->flags & RSA_FLAG_SIGN_VER)
if((rsa->flags & RSA_FLAG_SIGN_VER) && rsa->meth->rsa_sign)
{
return rsa->meth->rsa_sign(type, m, m_len,
sigret, siglen, rsa);
@ -155,7 +155,7 @@ int RSA_verify(int dtype, const unsigned char *m, unsigned int m_len,
return(0);
}
if(rsa->flags & RSA_FLAG_SIGN_VER)
if((rsa->flags & RSA_FLAG_SIGN_VER) && rsa->meth->rsa_verify)
{
return rsa->meth->rsa_verify(dtype, m, m_len,
sigbuf, siglen, rsa);