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:
parent
29a1bb07e5
commit
7f4301668f
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user