summaryrefslogtreecommitdiffstats
path: root/doc/crypto/blowfish.pod
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>2000-02-24 11:55:57 +0000
committerUlf Möller <ulf@openssl.org>2000-02-24 11:55:57 +0000
commit4d524e10b4853436a1bfbc83822c5d0e87d64fbd (patch)
treeb231a1742332385b25a7038b036174003333fd5e /doc/crypto/blowfish.pod
parentc6a33c6f6128172baf30f50edeb0def90e7d0618 (diff)
nicer manpages
Diffstat (limited to 'doc/crypto/blowfish.pod')
-rw-r--r--doc/crypto/blowfish.pod19
1 files changed, 10 insertions, 9 deletions
diff --git a/doc/crypto/blowfish.pod b/doc/crypto/blowfish.pod
index 962ba24bf8..80cb44edba 100644
--- a/doc/crypto/blowfish.pod
+++ b/doc/crypto/blowfish.pod
@@ -14,14 +14,15 @@ BF_cfb64_encrypt, BF_ofb64_encrypt, BF_options - Blowfish encryption
void BF_encrypt(BF_LONG *data,const BF_KEY *key);
void BF_decrypt(BF_LONG *data,const BF_KEY *key);
- void BF_ecb_encrypt(const unsigned char *in,unsigned char *out,BF_KEY *key,
- int enc);
- void BF_cbc_encrypt(const unsigned char *in, unsigned char *out, long length,
- BF_KEY *schedule, unsigned char *ivec, int enc);
- void BF_cfb64_encrypt(const unsigned char *in, unsigned char *out, long length,
- BF_KEY *schedule, unsigned char *ivec, int *num, int enc);
- void BF_ofb64_encrypt(const unsigned char *in, unsigned char *out, long length,
- BF_KEY *schedule, unsigned char *ivec, int *num);
+ void BF_ecb_encrypt(const unsigned char *in, unsigned char *out,
+ BF_KEY *key, int enc);
+ void BF_cbc_encrypt(const unsigned char *in, unsigned char *out,
+ long length, BF_KEY *schedule, unsigned char *ivec, int enc);
+ void BF_cfb64_encrypt(const unsigned char *in, unsigned char *out,
+ long length, BF_KEY *schedule, unsigned char *ivec, int *num,
+ int enc);
+ void BF_ofb64_encrypt(const unsigned char *in, unsigned char *out,
+ long length, BF_KEY *schedule, unsigned char *ivec, int *num);
const char *BF_options(void);
=head1 DESCRIPTION
@@ -89,7 +90,7 @@ None of the functions presented here return any value.
=head1 NOTE
-Applications should use the higher level functions EVP_DigestInit(3) etc.
+Applications should use the higher level functions EVP_EncryptInit(3) etc.
instead of calling the blowfish functions directly.
=head1 SEE ALSO