From: Bodo Möller Date: Fri, 8 Sep 2006 06:00:40 +0000 (+0000) Subject: Make sure the int_rsa_verify() prototype matches the implementation X-Git-Tag: OpenSSL_0_9_8k^2~1151 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=7f4301668f83950b33f79424d047832a1989bec2;p=oweals%2Fopenssl.git Make sure the int_rsa_verify() prototype matches the implementation (m_len currently is 'unsigned int', not 'size_t') Submitted by: Gisle Vanem --- diff --git a/crypto/rsa/rsa_locl.h b/crypto/rsa/rsa_locl.h index 48ebfa3816..f5d2d56628 100644 --- a/crypto/rsa/rsa_locl.h +++ b/crypto/rsa/rsa_locl.h @@ -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);