summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorDariusz Michaluk <d.michaluk@samsung.com>2018-05-09 13:32:36 +0200
committerDariusz Michaluk <d.michaluk@samsung.com>2018-05-09 13:32:36 +0200
commit452b9ebcc5c6e26bd6b9f9cb3f339d3f268c4078 (patch)
tree464247600738f67a718db56450f0698c58839dfc /doc
parent0b4b09ecbb62e4256d6626b97ef48ddd9fec72f2 (diff)
downloadopenssl-452b9ebcc5c6e26bd6b9f9cb3f339d3f268c4078.tar.gz
openssl-452b9ebcc5c6e26bd6b9f9cb3f339d3f268c4078.tar.bz2
openssl-452b9ebcc5c6e26bd6b9f9cb3f339d3f268c4078.zip
Imported Upstream version 1.0.2nupstream/1.0.2n
Diffstat (limited to 'doc')
-rw-r--r--doc/crypto/EVP_EncryptInit.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/crypto/EVP_EncryptInit.pod b/doc/crypto/EVP_EncryptInit.pod
index dc9a2d7..4cd24d7 100644
--- a/doc/crypto/EVP_EncryptInit.pod
+++ b/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);