From 00df894701f73b6164005e302785014aa7482737 Mon Sep 17 00:00:00 2001 From: Nils Larsch Date: Thu, 21 Apr 2005 09:43:09 +0000 Subject: [PATCH] the pointer to the message digest is const --- doc/crypto/RSA_sign.pod | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/crypto/RSA_sign.pod b/doc/crypto/RSA_sign.pod index 71688a665e..8553be8e99 100644 --- a/doc/crypto/RSA_sign.pod +++ b/doc/crypto/RSA_sign.pod @@ -8,10 +8,10 @@ RSA_sign, RSA_verify - RSA signatures #include - int RSA_sign(int type, unsigned char *m, unsigned int m_len, + int RSA_sign(int type, const unsigned char *m, unsigned int m_len, unsigned char *sigret, unsigned int *siglen, RSA *rsa); - int RSA_verify(int type, unsigned char *m, unsigned int m_len, + int RSA_verify(int type, const unsigned char *m, unsigned int m_len, unsigned char *sigbuf, unsigned int siglen, RSA *rsa); =head1 DESCRIPTION -- 2.34.1