Symbol: blf_ctx
usr/src/lib/crypt_modules/bsdbf/bcrypt.c
195
blf_ctx state;
usr/src/lib/crypt_modules/bsdbf/blf.h
59
void Blowfish_encipher(blf_ctx *, uint32_t *, uint32_t *);
usr/src/lib/crypt_modules/bsdbf/blf.h
60
void Blowfish_decipher(blf_ctx *, uint32_t *, uint32_t *);
usr/src/lib/crypt_modules/bsdbf/blf.h
61
void Blowfish_initstate(blf_ctx *);
usr/src/lib/crypt_modules/bsdbf/blf.h
62
void Blowfish_expand0state(blf_ctx *, const uint8_t *, uint16_t);
usr/src/lib/crypt_modules/bsdbf/blf.h
64
(blf_ctx *, const uint8_t *, uint16_t, const uint8_t *, uint16_t);
usr/src/lib/crypt_modules/bsdbf/blf.h
68
void blf_key(blf_ctx *, const uint8_t *, uint16_t);
usr/src/lib/crypt_modules/bsdbf/blf.h
69
void blf_enc(blf_ctx *, uint32_t *, uint16_t);
usr/src/lib/crypt_modules/bsdbf/blf.h
70
void blf_dec(blf_ctx *, uint32_t *, uint16_t);
usr/src/lib/crypt_modules/bsdbf/blf.h
72
void blf_ecb_encrypt(blf_ctx *, uint8_t *, uint32_t);
usr/src/lib/crypt_modules/bsdbf/blf.h
73
void blf_ecb_decrypt(blf_ctx *, uint8_t *, uint32_t);
usr/src/lib/crypt_modules/bsdbf/blf.h
75
void blf_cbc_encrypt(blf_ctx *, uint8_t *, uint8_t *, uint32_t);
usr/src/lib/crypt_modules/bsdbf/blf.h
76
void blf_cbc_decrypt(blf_ctx *, uint8_t *, uint8_t *, uint32_t);
usr/src/lib/crypt_modules/bsdbf/blowfish.c
107
blf_ctx *c;
usr/src/lib/crypt_modules/bsdbf/blowfish.c
135
blf_ctx *c;
usr/src/lib/crypt_modules/bsdbf/blowfish.c
139
const blf_ctx initstate =
usr/src/lib/crypt_modules/bsdbf/blowfish.c
435
Blowfish_expand0state(blf_ctx *c, const uint8_t *key, uint16_t keybytes)
usr/src/lib/crypt_modules/bsdbf/blowfish.c
473
Blowfish_expandstate(blf_ctx *c, const uint8_t *data, uint16_t databytes,
usr/src/lib/crypt_modules/bsdbf/blowfish.c
515
blf_key(blf_ctx *c, const uint8_t *k, uint16_t len)
usr/src/lib/crypt_modules/bsdbf/blowfish.c
525
blf_enc(blf_ctx *c, uint32_t *data, uint16_t blocks)
usr/src/lib/crypt_modules/bsdbf/blowfish.c
538
blf_dec(blf_ctx *c, uint32_t *data, uint16_t blocks)
usr/src/lib/crypt_modules/bsdbf/blowfish.c
551
blf_ecb_encrypt(blf_ctx *c, uint8_t *data, uint32_t len)
usr/src/lib/crypt_modules/bsdbf/blowfish.c
573
blf_ecb_decrypt(blf_ctx *c, uint8_t *data, uint32_t len)
usr/src/lib/crypt_modules/bsdbf/blowfish.c
595
blf_cbc_encrypt(blf_ctx *c, uint8_t *iv, uint8_t *data, uint32_t len)
usr/src/lib/crypt_modules/bsdbf/blowfish.c
620
blf_cbc_decrypt(blf_ctx *c, uint8_t *iva, uint8_t *data, uint32_t len)
usr/src/lib/crypt_modules/bsdbf/blowfish.c
673
blf_ctx c;
usr/src/lib/crypt_modules/bsdbf/blowfish.c
79
blf_ctx *c;