Fix docs for EVP_EncryptUpdate and EVP_DecryptUpdate
authorFdaSilvaYY <fdasilvayy@gmail.com>
Tue, 28 Nov 2017 22:16:02 +0000 (23:16 +0100)
committerAndy Polyakov <appro@openssl.org>
Thu, 30 Nov 2017 18:07:25 +0000 (19:07 +0100)
Fixes #4775

Reviewed-by: Andy Polyakov <appro@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4815)

doc/crypto/EVP_EncryptInit.pod

index 17bd7a99c6fc51f007fb310fde2643ad4228fa80..f842eeaf7d29f35975c53f506212aabf4968c4fa 100644 (file)
@@ -47,14 +47,14 @@ EVP_chacha20, EVP_chacha20_poly1305 - EVP cipher routines
  int EVP_EncryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *type,
          ENGINE *impl, unsigned char *key, unsigned char *iv);
  int EVP_EncryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out,
-         int *outl, unsigned char *in, int inl);
+         int *outl, const unsigned char *in, int inl);
  int EVP_EncryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *out,
          int *outl);
 
  int EVP_DecryptInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *type,
          ENGINE *impl, unsigned char *key, unsigned char *iv);
  int EVP_DecryptUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out,
-         int *outl, unsigned char *in, int inl);
+         int *outl, const unsigned char *in, int inl);
  int EVP_DecryptFinal_ex(EVP_CIPHER_CTX *ctx, unsigned char *outm,
          int *outl);