Tweak wording to be more clear.
[oweals/openssl.git] / doc / crypto / RSA_private_encrypt.pod
index 746a80c79ea0c85e87b5d1802b46550c27c5e857..3e1f895c5ad8c118e1f35f393df6e6005aa8d756 100644 (file)
@@ -8,10 +8,10 @@ RSA_private_encrypt, RSA_public_decrypt - low level signature operations
 
  #include <openssl/rsa.h>
 
- int RSA_private_encrypt(int flen, unsigned char *from,
+ int RSA_private_encrypt(int flen, const unsigned char *from,
     unsigned char *to, RSA *rsa, int padding);
 
- int RSA_public_decrypt(int flen, unsigned char *from, 
+ int RSA_public_decrypt(int flen, const unsigned char *from,
     unsigned char *to, RSA *rsa, int padding);
 
 =head1 DESCRIPTION