]> git.ipfire.org Git - thirdparty/openssl.git/blame - doc/man3/BF_encrypt.pod
OPENSSL_s390xcap.pod: list msa9 facility bit (155)
[thirdparty/openssl.git] / doc / man3 / BF_encrypt.pod
CommitLineData
9dd2b2a9
RL
1=pod
2
3=head1 NAME
4
53934822 5BF_set_key, BF_encrypt, BF_decrypt, BF_ecb_encrypt, BF_cbc_encrypt,
9dd2b2a9
RL
6BF_cfb64_encrypt, BF_ofb64_encrypt, BF_options - Blowfish encryption
7
8=head1 SYNOPSIS
9
10 #include <openssl/blowfish.h>
11
12 void BF_set_key(BF_KEY *key, int len, const unsigned char *data);
13
4d524e10 14 void BF_ecb_encrypt(const unsigned char *in, unsigned char *out,
e9b77246 15 BF_KEY *key, int enc);
4d524e10 16 void BF_cbc_encrypt(const unsigned char *in, unsigned char *out,
e9b77246
BB
17 long length, BF_KEY *schedule,
18 unsigned char *ivec, int enc);
4d524e10 19 void BF_cfb64_encrypt(const unsigned char *in, unsigned char *out,
e9b77246
BB
20 long length, BF_KEY *schedule,
21 unsigned char *ivec, int *num, int enc);
4d524e10 22 void BF_ofb64_encrypt(const unsigned char *in, unsigned char *out,
e9b77246
BB
23 long length, BF_KEY *schedule,
24 unsigned char *ivec, int *num);
9dd2b2a9
RL
25 const char *BF_options(void);
26
aebb9aac
RS
27 void BF_encrypt(BF_LONG *data, const BF_KEY *key);
28 void BF_decrypt(BF_LONG *data, const BF_KEY *key);
8fdec3e5 29
9dd2b2a9
RL
30=head1 DESCRIPTION
31
6ce46d69 32This library implements the Blowfish cipher, which was invented and described
447a9638 33by Counterpane (see http://www.counterpane.com/blowfish.html ).
9dd2b2a9
RL
34
35Blowfish is a block cipher that operates on 64 bit (8 byte) blocks of data.
36It uses a variable size key, but typically, 128 bit (16 byte) keys are
5286db69 37considered good for strong encryption. Blowfish can be used in the same
9b86974e 38modes as DES (see L<des_modes(7)>). Blowfish is currently one
9dd2b2a9
RL
39of the faster block ciphers. It is quite a bit faster than DES, and much
40faster than IDEA or RC2.
41
42Blowfish consists of a key setup phase and the actual encryption or decryption
43phase.
44
45BF_set_key() sets up the B<BF_KEY> B<key> using the B<len> bytes long key
46at B<data>.
47
9dd2b2a9
RL
48BF_ecb_encrypt() is the basic Blowfish encryption and decryption function.
49It encrypts or decrypts the first 64 bits of B<in> using the key B<key>,
50putting the result in B<out>. B<enc> decides if encryption (B<BF_ENCRYPT>)
51or decryption (B<BF_DECRYPT>) shall be performed. The vector pointed at by
52B<in> and B<out> must be 64 bits in length, no less. If they are larger,
53everything after the first 64 bits is ignored.
54
55The mode functions BF_cbc_encrypt(), BF_cfb64_encrypt() and BF_ofb64_encrypt()
c8973693 56all operate on variable length data. They all take an initialization vector
1bc74519 57B<ivec> which needs to be passed along into the next call of the same function
c8973693
UM
58for the same message. B<ivec> may be initialized with anything, but the
59recipient needs to know what it was initialized with, or it won't be able
1bb30673 60to decrypt. Some programs and protocols simplify this, like SSH, where
c8973693 61B<ivec> is simply initialized to zero.
6ce46d69 62BF_cbc_encrypt() operates on data that is a multiple of 8 bytes long, while
9dd2b2a9
RL
63BF_cfb64_encrypt() and BF_ofb64_encrypt() are used to encrypt an variable
64number of bytes (the amount does not have to be an exact multiple of 8). The
65purpose of the latter two is to simulate stream ciphers, and therefore, they
66need the parameter B<num>, which is a pointer to an integer where the current
c8973693
UM
67offset in B<ivec> is stored between calls. This integer must be initialized
68to zero when B<ivec> is initialized.
9dd2b2a9
RL
69
70BF_cbc_encrypt() is the Cipher Block Chaining function for Blowfish. It
71encrypts or decrypts the 64 bits chunks of B<in> using the key B<schedule>,
72putting the result in B<out>. B<enc> decides if encryption (BF_ENCRYPT) or
73decryption (BF_DECRYPT) shall be performed. B<ivec> must point at an 8 byte
c8973693 74long initialization vector.
9dd2b2a9
RL
75
76BF_cfb64_encrypt() is the CFB mode for Blowfish with 64 bit feedback.
77It encrypts or decrypts the bytes in B<in> using the key B<schedule>,
78putting the result in B<out>. B<enc> decides if encryption (B<BF_ENCRYPT>)
79or decryption (B<BF_DECRYPT>) shall be performed. B<ivec> must point at an
c8973693 808 byte long initialization vector. B<num> must point at an integer which must
1bb30673 81be initially zero.
9dd2b2a9
RL
82
83BF_ofb64_encrypt() is the OFB mode for Blowfish with 64 bit feedback.
c8973693 84It uses the same parameters as BF_cfb64_encrypt(), which must be initialized
9dd2b2a9
RL
85the same way.
86
c15602f4
RL
87BF_encrypt() and BF_decrypt() are the lowest level functions for Blowfish
88encryption. They encrypt/decrypt the first 64 bits of the vector pointed by
89B<data>, using the key B<key>. These functions should not be used unless you
90implement 'modes' of Blowfish. The alternative is to use BF_ecb_encrypt().
91If you still want to use these functions, you should be aware that they take
92each 32-bit chunk in host-byte order, which is little-endian on little-endian
93platforms and big-endian on big-endian ones.
94
9dd2b2a9
RL
95=head1 RETURN VALUES
96
97None of the functions presented here return any value.
98
99=head1 NOTE
100
d52c9734 101Applications should use the higher level functions
9b86974e 102L<EVP_EncryptInit(3)> etc. instead of calling these
c7497f34 103functions directly.
9dd2b2a9
RL
104
105=head1 SEE ALSO
106
9b86974e
RS
107L<EVP_EncryptInit(3)>,
108L<des_modes(7)>
9dd2b2a9 109
e2f92610
RS
110=head1 COPYRIGHT
111
112Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved.
113
4746f25a 114Licensed under the Apache License 2.0 (the "License"). You may not use
e2f92610
RS
115this file except in compliance with the License. You can obtain a copy
116in the file LICENSE in the source distribution or at
117L<https://www.openssl.org/source/license.html>.
118
119=cut