fix manpage

Submitted by: thomas poindessous <poinde_t@epita.fr>
This commit is contained in:
Bodo Möller 2002-08-15 14:22:27 +00:00
parent 0a2a5fc988
commit 8d9450deb0

View file

@ -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<npubk> 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