summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorNils Larsch <nils@openssl.org>2005-04-21 09:43:09 +0000
committerNils Larsch <nils@openssl.org>2005-04-21 09:43:09 +0000
commit00df894701f73b6164005e302785014aa7482737 (patch)
treeed8a95408da4dde0c8fab7ced8af04c98a5fec07 /doc
parent630e4a6e59c2500c2a45e96c8027bca82dfd41c3 (diff)
the pointer to the message digest is const
Diffstat (limited to 'doc')
-rw-r--r--doc/crypto/RSA_sign.pod4
1 files 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 <openssl/rsa.h>
- 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