aboutsummaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2006-09-08 06:00:40 +0000
committerBodo Möller <bodo@openssl.org>2006-09-08 06:00:40 +0000
commit7f4301668f83950b33f79424d047832a1989bec2 (patch)
treec061b921f4871ec0fd532b165c99d330167fb60d /crypto
parent29a1bb07e52e17a0521d33056a2ee5823f951f84 (diff)
downloadopenssl-7f4301668f83950b33f79424d047832a1989bec2.tar.gz
Make sure the int_rsa_verify() prototype matches the implementation
(m_len currently is 'unsigned int', not 'size_t') Submitted by: Gisle Vanem
Diffstat (limited to 'crypto')
-rw-r--r--crypto/rsa/rsa_locl.h2
1 files changed, 1 insertions, 1 deletions
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);