[openssl-commits] [openssl] OpenSSL_1_1_0-stable update

Andy Polyakov appro at openssl.org
Thu Nov 30 18:09:31 UTC 2017


The branch OpenSSL_1_1_0-stable has been updated
       via  a61c15eb9b8d0ef513d695c854516958e2ccf1eb (commit)
      from  5d227f9af07646702e1247836f7fbf1ca9b8a2bc (commit)


- Log -----------------------------------------------------------------
commit a61c15eb9b8d0ef513d695c854516958e2ccf1eb
Author: FdaSilvaYY <fdasilvayy at gmail.com>
Date:   Tue Nov 28 23:16:02 2017 +0100

    Fix docs for EVP_EncryptUpdate and EVP_DecryptUpdate
    
    Fixes #4775
    
    Reviewed-by: Andy Polyakov <appro at openssl.org>
    Reviewed-by: Matt Caswell <matt at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/4815)

-----------------------------------------------------------------------

Summary of changes:
 doc/crypto/EVP_EncryptInit.pod | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/doc/crypto/EVP_EncryptInit.pod b/doc/crypto/EVP_EncryptInit.pod
index 17bd7a9..f842eea 100644
--- a/doc/crypto/EVP_EncryptInit.pod
+++ b/doc/crypto/EVP_EncryptInit.pod
@@ -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);
 


More information about the openssl-commits mailing list