Symbol: blf_ctx
include/blf.h
57
void Blowfish_encipher(blf_ctx *, u_int32_t *, u_int32_t *);
include/blf.h
58
void Blowfish_decipher(blf_ctx *, u_int32_t *, u_int32_t *);
include/blf.h
59
void Blowfish_initstate(blf_ctx *);
include/blf.h
60
void Blowfish_expand0state(blf_ctx *, const u_int8_t *, u_int16_t);
include/blf.h
62
(blf_ctx *, const u_int8_t *, u_int16_t, const u_int8_t *, u_int16_t);
include/blf.h
66
void blf_key(blf_ctx *, const u_int8_t *, u_int16_t);
include/blf.h
67
void blf_enc(blf_ctx *, u_int32_t *, u_int16_t);
include/blf.h
68
void blf_dec(blf_ctx *, u_int32_t *, u_int16_t);
include/blf.h
70
void blf_ecb_encrypt(blf_ctx *, u_int8_t *, u_int32_t);
include/blf.h
71
void blf_ecb_decrypt(blf_ctx *, u_int8_t *, u_int32_t);
include/blf.h
73
void blf_cbc_encrypt(blf_ctx *, u_int8_t *, u_int8_t *, u_int32_t);
include/blf.h
74
void blf_cbc_decrypt(blf_ctx *, u_int8_t *, u_int8_t *, u_int32_t);
lib/libc/crypt/bcrypt.c
95
blf_ctx state;
lib/libc/crypt/blowfish.c
109
Blowfish_initstate(blf_ctx *c)
lib/libc/crypt/blowfish.c
113
static const blf_ctx initstate =
lib/libc/crypt/blowfish.c
411
Blowfish_expand0state(blf_ctx *c, const u_int8_t *key, u_int16_t keybytes)
lib/libc/crypt/blowfish.c
450
Blowfish_expandstate(blf_ctx *c, const u_int8_t *data, u_int16_t databytes,
lib/libc/crypt/blowfish.c
494
blf_key(blf_ctx *c, const u_int8_t *k, u_int16_t len)
lib/libc/crypt/blowfish.c
505
blf_enc(blf_ctx *c, u_int32_t *data, u_int16_t blocks)
lib/libc/crypt/blowfish.c
519
blf_dec(blf_ctx *c, u_int32_t *data, u_int16_t blocks)
lib/libc/crypt/blowfish.c
533
blf_ecb_encrypt(blf_ctx *c, u_int8_t *data, u_int32_t len)
lib/libc/crypt/blowfish.c
556
blf_ecb_decrypt(blf_ctx *c, u_int8_t *data, u_int32_t len)
lib/libc/crypt/blowfish.c
57
Blowfish_encipher(blf_ctx *c, u_int32_t *xl, u_int32_t *xr)
lib/libc/crypt/blowfish.c
579
blf_cbc_encrypt(blf_ctx *c, u_int8_t *iv, u_int8_t *data, u_int32_t len)
lib/libc/crypt/blowfish.c
605
blf_cbc_decrypt(blf_ctx *c, u_int8_t *iva, u_int8_t *data, u_int32_t len)
lib/libc/crypt/blowfish.c
659
blf_ctx c;
lib/libc/crypt/blowfish.c
83
Blowfish_decipher(blf_ctx *c, u_int32_t *xl, u_int32_t *xr)
lib/libutil/bcrypt_pbkdf.c
59
blf_ctx state;
sbin/isakmpd/crypto.h
84
blf_ctx blfks;
sys/crypto/blf.c
105
Blowfish_initstate(blf_ctx *c)
sys/crypto/blf.c
109
static const blf_ctx initstate =
sys/crypto/blf.c
406
Blowfish_expand0state(blf_ctx *c, const u_int8_t *key, u_int16_t keybytes)
sys/crypto/blf.c
443
Blowfish_expandstate(blf_ctx *c, const u_int8_t *data, u_int16_t databytes,
sys/crypto/blf.c
485
blf_key(blf_ctx *c, const u_int8_t *k, u_int16_t len)
sys/crypto/blf.c
495
blf_enc(blf_ctx *c, u_int32_t *data, u_int16_t blocks)
sys/crypto/blf.c
508
blf_dec(blf_ctx *c, u_int32_t *data, u_int16_t blocks)
sys/crypto/blf.c
521
blf_ecb_encrypt(blf_ctx *c, u_int8_t *data, u_int32_t len)
sys/crypto/blf.c
547
blf_ecb_decrypt(blf_ctx *c, u_int8_t *data, u_int32_t len)
sys/crypto/blf.c
55
Blowfish_encipher(blf_ctx *c, u_int32_t *x)
sys/crypto/blf.c
573
blf_cbc_encrypt(blf_ctx *c, u_int8_t *iv, u_int8_t *data, u_int32_t len)
sys/crypto/blf.c
602
blf_cbc_decrypt(blf_ctx *c, u_int8_t *iva, u_int8_t *data, u_int32_t len)
sys/crypto/blf.c
80
Blowfish_decipher(blf_ctx *c, u_int32_t *x)
sys/crypto/blf.h
58
void Blowfish_encipher(blf_ctx *, u_int32_t *);
sys/crypto/blf.h
59
void Blowfish_decipher(blf_ctx *, u_int32_t *);
sys/crypto/blf.h
60
void Blowfish_initstate(blf_ctx *);
sys/crypto/blf.h
61
void Blowfish_expand0state(blf_ctx *, const u_int8_t *, u_int16_t);
sys/crypto/blf.h
62
void Blowfish_expandstate(blf_ctx *, const u_int8_t *, u_int16_t, const u_int8_t *, u_int16_t);
sys/crypto/blf.h
66
void blf_key(blf_ctx *, const u_int8_t *, u_int16_t);
sys/crypto/blf.h
67
void blf_enc(blf_ctx *, u_int32_t *, u_int16_t);
sys/crypto/blf.h
68
void blf_dec(blf_ctx *, u_int32_t *, u_int16_t);
sys/crypto/blf.h
74
void blf_ecb_encrypt(blf_ctx *, u_int8_t *, u_int32_t);
sys/crypto/blf.h
75
void blf_ecb_decrypt(blf_ctx *, u_int8_t *, u_int32_t);
sys/crypto/blf.h
77
void blf_cbc_encrypt(blf_ctx *, u_int8_t *, u_int8_t *, u_int32_t);
sys/crypto/blf.h
78
void blf_cbc_decrypt(blf_ctx *, u_int8_t *, u_int8_t *, u_int32_t);
sys/crypto/xform.c
137
sizeof(blf_ctx),
sys/crypto/xform.c
336
blf_ecb_encrypt((blf_ctx *) key, blk, 8);
sys/crypto/xform.c
342
blf_ecb_decrypt((blf_ctx *) key, blk, 8);
sys/crypto/xform.c
348
blf_key((blf_ctx *)sched, key, len);
sys/dev/vnd.c
95
blf_ctx *sc_keyctx; /* key context */
sys/lib/libsa/bcrypt_pbkdf.c
57
blf_ctx state;
sys/lib/libsa/blowfish.c
108
Blowfish_initstate(blf_ctx *c)
sys/lib/libsa/blowfish.c
112
static const blf_ctx initstate =
sys/lib/libsa/blowfish.c
408
Blowfish_expand0state(blf_ctx *c, const u_int8_t *key, u_int16_t keybytes)
sys/lib/libsa/blowfish.c
445
Blowfish_expandstate(blf_ctx *c, const u_int8_t *data, u_int16_t databytes,
sys/lib/libsa/blowfish.c
488
blf_key(blf_ctx *c, const u_int8_t *k, u_int16_t len)
sys/lib/libsa/blowfish.c
498
blf_enc(blf_ctx *c, u_int32_t *data, u_int16_t blocks)
sys/lib/libsa/blowfish.c
511
blf_dec(blf_ctx *c, u_int32_t *data, u_int16_t blocks)
sys/lib/libsa/blowfish.c
524
blf_ecb_encrypt(blf_ctx *c, u_int8_t *data, u_int32_t len)
sys/lib/libsa/blowfish.c
546
blf_ecb_decrypt(blf_ctx *c, u_int8_t *data, u_int32_t len)
sys/lib/libsa/blowfish.c
568
blf_cbc_encrypt(blf_ctx *c, u_int8_t *iv, u_int8_t *data, u_int32_t len)
sys/lib/libsa/blowfish.c
58
Blowfish_encipher(blf_ctx *c, u_int32_t *xl, u_int32_t *xr)
sys/lib/libsa/blowfish.c
593
blf_cbc_decrypt(blf_ctx *c, u_int8_t *iva, u_int8_t *data, u_int32_t len)
sys/lib/libsa/blowfish.c
646
blf_ctx c;
sys/lib/libsa/blowfish.c
83
Blowfish_decipher(blf_ctx *c, u_int32_t *xl, u_int32_t *xr)
sys/lib/libsa/blowfish.h
57
void Blowfish_encipher(blf_ctx *, u_int32_t *, u_int32_t *);
sys/lib/libsa/blowfish.h
58
void Blowfish_decipher(blf_ctx *, u_int32_t *, u_int32_t *);
sys/lib/libsa/blowfish.h
59
void Blowfish_initstate(blf_ctx *);
sys/lib/libsa/blowfish.h
60
void Blowfish_expand0state(blf_ctx *, const u_int8_t *, u_int16_t);
sys/lib/libsa/blowfish.h
62
(blf_ctx *, const u_int8_t *, u_int16_t, const u_int8_t *, u_int16_t);
sys/lib/libsa/blowfish.h
66
void blf_key(blf_ctx *, const u_int8_t *, u_int16_t);
sys/lib/libsa/blowfish.h
67
void blf_enc(blf_ctx *, u_int32_t *, u_int16_t);
sys/lib/libsa/blowfish.h
68
void blf_dec(blf_ctx *, u_int32_t *, u_int16_t);
sys/lib/libsa/blowfish.h
70
void blf_ecb_encrypt(blf_ctx *, u_int8_t *, u_int32_t);
sys/lib/libsa/blowfish.h
71
void blf_ecb_decrypt(blf_ctx *, u_int8_t *, u_int32_t);
sys/lib/libsa/blowfish.h
73
void blf_cbc_encrypt(blf_ctx *, u_int8_t *, u_int8_t *, u_int32_t);
sys/lib/libsa/blowfish.h
74
void blf_cbc_decrypt(blf_ctx *, u_int8_t *, u_int8_t *, u_int32_t);