From: Nils Larsch Date: Tue, 29 Mar 2005 17:50:08 +0000 (+0000) Subject: the second argument of EVP_SealInit is const X-Git-Tag: OpenSSL_0_9_7g~17^2~12 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4a6a2032edde65f180a794665adf82c0cc4cd9d1;p=openssl the second argument of EVP_SealInit is const --- 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 - 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,