From: Bodo Möller Date: Thu, 15 Aug 2002 14:22:27 +0000 (+0000) Subject: fix manpage X-Git-Tag: OpenSSL_0_9_6h~113 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=8d9450deb0cf86f9cb38005b42ac1c0e10aed56a;p=oweals%2Fopenssl.git fix manpage Submitted by: thomas poindessous --- diff --git a/doc/crypto/EVP_SealInit.pod b/doc/crypto/EVP_SealInit.pod index 0451eb648a..7cd12491cd 100644 --- a/doc/crypto/EVP_SealInit.pod +++ b/doc/crypto/EVP_SealInit.pod @@ -12,7 +12,7 @@ EVP_SealInit, EVP_SealUpdate, EVP_SealFinal - EVP envelope encryption 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, + void EVP_SealFinal(EVP_CIPHER_CTX *ctx, unsigned char *out, int *outl); =head1 DESCRIPTION @@ -43,8 +43,7 @@ page. EVP_SealInit() returns 0 on error or B if successful. -EVP_SealUpdate() and EVP_SealFinal() return 1 for success and 0 for -failure. +EVP_SealUpdate() returns 1 for success and 0 for failure. =head1 NOTES