Make int_rsa_sign function match prototype.

PR: 1383
This commit is contained in:
Dr. Stephen Henson 2006-09-21 13:11:24 +00:00
parent ffa5ebf3f4
commit c80c7bf999

View File

@ -145,8 +145,8 @@ int RSA_sign(int type, const unsigned char *m, unsigned int m_len,
int int_rsa_verify(int dtype, const unsigned char *m,
unsigned int m_len,
unsigned char *rm, unsigned int *prm_len,
const unsigned char *sigbuf, unsigned int siglen,
unsigned char *rm, size_t *prm_len,
const unsigned char *sigbuf, size_t siglen,
RSA *rsa)
{
int i,ret=0,sigtype;