From: Nils Larsch Date: Tue, 29 Mar 2005 17:48:34 +0000 (+0000) Subject: the second argument of EVP_SealInit is const X-Git-Tag: OpenSSL_0_9_7g~19 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e72b9658f8565d8a9da92ace67d077c0d71083e4;p=oweals%2Fopenssl.git the second argument of EVP_SealInit is const --- diff --git a/doc/crypto/EVP_SealInit.pod b/doc/crypto/EVP_SealInit.pod index b5e477e294..48a0e29954 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,