Make sure the int_rsa_verify() prototype matches the implementation

(m_len currently is 'unsigned int', not 'size_t')

Submitted by: Gisle Vanem
This commit is contained in:
Bodo Möller 2006-09-08 06:00:40 +00:00
parent 29a1bb07e5
commit 7f4301668f

View File

@ -1,4 +1,4 @@
extern int int_rsa_verify(int dtype, const unsigned char *m, size_t m_len,
extern int int_rsa_verify(int dtype, const unsigned char *m, unsigned int m_len,
unsigned char *rm, size_t *prm_len,
const unsigned char *sigbuf, size_t siglen,
RSA *rsa);