BF_encrypt.pod 5.5 KB

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