Use safestack.h exclusively internally.
[openssl.git] / doc / man3 / EVP_EncodeInit.pod
index d919b14b29a1548e7870e5b228974dd692c17064..8055b100b252246cd47c40ddb30e23c3cb8e9dd1 100644 (file)
@@ -24,8 +24,7 @@ EVP_DecodeBlock - EVP base 64 encode/decode routines
  void EVP_DecodeInit(EVP_ENCODE_CTX *ctx);
  int EVP_DecodeUpdate(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl,
                       const unsigned char *in, int inl);
- int EVP_DecodeFinal(EVP_ENCODE_CTX *ctx, unsigned
-                     char *out, int *outl);
+ int EVP_DecodeFinal(EVP_ENCODE_CTX *ctx, unsigned char *out, int *outl);
  int EVP_DecodeBlock(unsigned char *t, const unsigned char *f, int n);
 
 =head1 DESCRIPTION
@@ -148,7 +147,7 @@ EVP_DecodeBlock() returns the length of the data decoded or -1 on error.
 
 =head1 SEE ALSO
 
-L<evp(3)>
+L<evp(7)>
 
 =head1 COPYRIGHT