Symbol: BF_KEY
crypto/libressl/apps/openssl/speed.c
278
BF_KEY bf_ks;
crypto/libressl/crypto/bf/bf_cfb64.c
68
const BF_KEY *schedule, unsigned char *ivec, int *num, int encrypt)
crypto/libressl/crypto/bf/bf_ecb.c
80
const BF_KEY *key, int encrypt)
crypto/libressl/crypto/bf/bf_enc.c
149
void BF_decrypt(BF_LONG *data, const BF_KEY *key)
crypto/libressl/crypto/bf/bf_enc.c
225
const BF_KEY *schedule, unsigned char *ivec, int encrypt)
crypto/libressl/crypto/bf/bf_enc.c
72
void BF_encrypt(BF_LONG *data, const BF_KEY *key)
crypto/libressl/crypto/bf/bf_ofb64.c
67
const BF_KEY *schedule, unsigned char *ivec, int *num)
crypto/libressl/crypto/bf/bf_pi.h
61
static const BF_KEY bf_init= {
crypto/libressl/crypto/bf/bf_skey.c
66
void BF_set_key(BF_KEY *key, int len, const unsigned char *data)
crypto/libressl/crypto/bf/bf_skey.c
73
memcpy(key,&bf_init,sizeof(BF_KEY));
crypto/libressl/crypto/evp/e_bf.c
73
BF_KEY ks;
crypto/libressl/include/openssl/blowfish.h
100
const BF_KEY *schedule, unsigned char *ivec, int enc);
crypto/libressl/include/openssl/blowfish.h
102
const BF_KEY *schedule, unsigned char *ivec, int *num, int enc);
crypto/libressl/include/openssl/blowfish.h
104
const BF_KEY *schedule, unsigned char *ivec, int *num);
crypto/libressl/include/openssl/blowfish.h
92
void BF_set_key(BF_KEY *key, int len, const unsigned char *data);
crypto/libressl/include/openssl/blowfish.h
94
void BF_encrypt(BF_LONG *data,const BF_KEY *key);
crypto/libressl/include/openssl/blowfish.h
95
void BF_decrypt(BF_LONG *data,const BF_KEY *key);
crypto/libressl/include/openssl/blowfish.h
98
const BF_KEY *key, int enc);
sys/crypto/blowfish/bf_enc.c
119
BF_decrypt(BF_LONG *data, BF_KEY *key)
sys/crypto/blowfish/bf_enc.c
79
BF_encrypt(BF_LONG *data, BF_KEY *key)
sys/crypto/blowfish/bf_pi.h
62
static const BF_KEY bf_init= {
sys/crypto/blowfish/bf_skey.c
71
BF_set_key(BF_KEY *key, int len, unsigned char *data)
sys/crypto/blowfish/bf_skey.c
77
memcpy((char *)key, (const char *)&bf_init, sizeof(BF_KEY));
sys/crypto/blowfish/blowfish.h
83
void BF_set_key(BF_KEY *, int, unsigned char *);
sys/crypto/blowfish/blowfish.h
84
void BF_encrypt(BF_LONG *, BF_KEY *);
sys/crypto/blowfish/blowfish.h
85
void BF_decrypt(BF_LONG *, BF_KEY *);
sys/crypto/blowfish/blowfish.h
87
BF_KEY *, int);