aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNils Larsch <nils@openssl.org>2005-03-29 17:50:08 +0000
committerNils Larsch <nils@openssl.org>2005-03-29 17:50:08 +0000
commit4a6a2032edde65f180a794665adf82c0cc4cd9d1 (patch)
tree6c866c8aea879a245131cb15f99e8a88135d8d44
parentc01d2b974e9ed2dcc3944204b339ee50d4abb634 (diff)
downloadopenssl-4a6a2032edde65f180a794665adf82c0cc4cd9d1.tar.gz
the second argument of EVP_SealInit is const
-rw-r--r--doc/crypto/EVP_SealInit.pod5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/crypto/EVP_SealInit.pod b/doc/crypto/EVP_SealInit.pod
index b5e477e294..7d793e19ef 100644
--- a/doc/crypto/EVP_SealInit.pod
+++ b/doc/crypto/EVP_SealInit.pod
@@ -8,8 +8,9 @@ EVP_SealInit, EVP_SealUpdate, EVP_SealFinal - EVP envelope encryption
#include <openssl/evp.h>
- int EVP_SealInit(EVP_CIPHER_CTX *ctx, EVP_CIPHER *type, unsigned char **ek,
- int *ekl, unsigned char *iv,EVP_PKEY **pubk, int npubk);
+ int EVP_SealInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *type,
+ unsigned char **ek, int *ekl, unsigned char *iv,
+ EVP_PKEY **pubk, int npubk);
int EVP_SealUpdate(EVP_CIPHER_CTX *ctx, unsigned char *out,
int *outl, unsigned char *in, int inl);
int EVP_SealFinal(EVP_CIPHER_CTX *ctx, unsigned char *out,