Symbol: BF_KEY
sys/crypto/blowfish/bf_cbc.c
103
BF_encrypt(tin,(const BF_KEY *)schedule);
sys/crypto/blowfish/bf_cbc.c
123
BF_decrypt(tin,(const BF_KEY *)schedule);
sys/crypto/blowfish/bf_cbc.c
137
BF_decrypt(tin,(const BF_KEY *)schedule);
sys/crypto/blowfish/bf_cbc.c
70
const BF_KEY *schedule, unsigned char *ivec, int encrypt)
sys/crypto/blowfish/bf_cbc.c
90
BF_encrypt(tin,(const BF_KEY *)schedule);
sys/crypto/blowfish/bf_ecb.c
75
const BF_KEY *key, int encrypt)
sys/crypto/blowfish/bf_enc.c
121
BF_decrypt(BF_LONG *data, const BF_KEY *key)
sys/crypto/blowfish/bf_enc.c
80
BF_encrypt(BF_LONG *data, const BF_KEY *key)
sys/crypto/blowfish/bf_pi.h
62
static const BF_KEY bf_init= {
sys/crypto/blowfish/bf_skey.c
77
BF_set_key(BF_KEY *key, int len, const unsigned char *data)
sys/crypto/blowfish/bf_skey.c
83
memcpy(key, &bf_init, sizeof(BF_KEY));
sys/crypto/blowfish/blowfish.h
83
void BF_set_key(BF_KEY *, int, const unsigned char *);
sys/crypto/blowfish/blowfish.h
84
void BF_encrypt(BF_LONG *, const BF_KEY *);
sys/crypto/blowfish/blowfish.h
85
void BF_decrypt(BF_LONG *, const BF_KEY *);
sys/crypto/blowfish/blowfish.h
87
const BF_KEY *, unsigned char *, int);
sys/crypto/blowfish/blowfish.h
89
const BF_KEY *, int);
sys/dev/cgd_crypto.c
363
BF_KEY bp_key;
sys/dev/cgd_crypto.c
367
BF_KEY *be_key;
sys/opencrypto/cryptosoft_xform.c
496
BF_ecb_encrypt(blk, blk, (BF_KEY *)key, 1);
sys/opencrypto/cryptosoft_xform.c
503
BF_ecb_encrypt(blk, blk, (BF_KEY *)key, 0);
sys/opencrypto/cryptosoft_xform.c
510
*sched = malloc(sizeof(BF_KEY),
sys/opencrypto/cryptosoft_xform.c
514
BF_set_key((BF_KEY *) *sched, len, key);
sys/opencrypto/cryptosoft_xform.c
521
memset(*sched, 0, sizeof(BF_KEY));