Lines Matching +full:out +full:- +full:functions
6 BF_cfb64_encrypt, BF_ofb64_encrypt, BF_options - Blowfish encryption
12 The following functions have been deprecated since OpenSSL 3.0, and can be
18 void BF_ecb_encrypt(const unsigned char *in, unsigned char *out,
20 void BF_cbc_encrypt(const unsigned char *in, unsigned char *out,
23 void BF_cfb64_encrypt(const unsigned char *in, unsigned char *out,
26 void BF_ofb64_encrypt(const unsigned char *in, unsigned char *out,
36 All of the functions described on this page are deprecated. Applications should
38 L<EVP_EncryptFinal_ex(3)> or the equivalently named decrypt functions.
58 putting the result in B<out>. B<enc> decides if encryption (B<BF_ENCRYPT>)
60 B<in> and B<out> must be 64 bits in length, no less. If they are larger,
63 The mode functions BF_cbc_encrypt(), BF_cfb64_encrypt() and BF_ofb64_encrypt()
80 putting the result in B<out>. B<enc> decides if encryption (BF_ENCRYPT) or
86 putting the result in B<out>. B<enc> decides if encryption (B<BF_ENCRYPT>)
95 BF_encrypt() and BF_decrypt() are the lowest level functions for Blowfish
97 B<data>, using the key B<key>. These functions should not be used unless you
99 If you still want to use these functions, you should be aware that they take
100 each 32-bit chunk in host-byte order, which is little-endian on little-endian
101 platforms and big-endian on big-endian ones.
105 None of the functions presented here return any value.
109 Applications should use the higher level functions
111 functions directly.
120 All of these functions were deprecated in OpenSSL 3.0.
124 Copyright 2000-2021 The OpenSSL Project Authors. All Rights Reserved.