From 7f4301668f83950b33f79424d047832a1989bec2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bodo=20M=C3=B6ller?= Date: Fri, 8 Sep 2006 06:00:40 +0000 Subject: [PATCH] Make sure the int_rsa_verify() prototype matches the implementation (m_len currently is 'unsigned int', not 'size_t') Submitted by: Gisle Vanem --- crypto/rsa/rsa_locl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.34.1