aboutsummaryrefslogtreecommitdiff
path: root/crypto/openssl/doc
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2017-12-07 18:02:57 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2017-12-07 18:02:57 +0000
commitc4ad4dffb36f4c6a204680ed8d2adfbdb6210297 (patch)
treecd7bd81ef925aea7e7f5fd272e0538659f3d390f /crypto/openssl/doc
parent8f2246242eb7dddea36c7cda048774d7114ab051 (diff)
parent4f94f84d8491a2455678402b5c7c92e692a272bc (diff)
downloadsrc-c4ad4dffb36f4c6a204680ed8d2adfbdb6210297.tar.gz
src-c4ad4dffb36f4c6a204680ed8d2adfbdb6210297.zip
Merge OpenSSL 1.0.2n.
Notes
Notes: svn path=/head/; revision=326662
Diffstat (limited to 'crypto/openssl/doc')
-rw-r--r--crypto/openssl/doc/crypto/EVP_EncryptInit.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/openssl/doc/crypto/EVP_EncryptInit.pod b/crypto/openssl/doc/crypto/EVP_EncryptInit.pod
index b19d7887345f..a2c418e9efd4 100644
--- a/crypto/openssl/doc/crypto/EVP_EncryptInit.pod
+++ b/crypto/openssl/doc/crypto/EVP_EncryptInit.pod
@@ -40,14 +40,14 @@ EVP_aes_128_cbc_hmac_sha256, EVP_aes_256_cbc_hmac_sha256
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);