Commit 7f430166 authored by Bodo Möller's avatar Bodo Möller
Browse files

Make sure the int_rsa_verify() prototype matches the implementation

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

Submitted by: Gisle Vanem
parent 29a1bb07
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
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);