Symbol: blf_ctx
crypto/openssh/openbsd-compat/bcrypt_pbkdf.c
75
blf_ctx state;
crypto/openssh/openbsd-compat/blf.h
61
void Blowfish_encipher(blf_ctx *, u_int32_t *, u_int32_t *);
crypto/openssh/openbsd-compat/blf.h
62
void Blowfish_decipher(blf_ctx *, u_int32_t *, u_int32_t *);
crypto/openssh/openbsd-compat/blf.h
63
void Blowfish_initstate(blf_ctx *);
crypto/openssh/openbsd-compat/blf.h
64
void Blowfish_expand0state(blf_ctx *, const u_int8_t *, u_int16_t);
crypto/openssh/openbsd-compat/blf.h
66
(blf_ctx *, const u_int8_t *, u_int16_t, const u_int8_t *, u_int16_t);
crypto/openssh/openbsd-compat/blf.h
70
void blf_key(blf_ctx *, const u_int8_t *, u_int16_t);
crypto/openssh/openbsd-compat/blf.h
71
void blf_enc(blf_ctx *, u_int32_t *, u_int16_t);
crypto/openssh/openbsd-compat/blf.h
72
void blf_dec(blf_ctx *, u_int32_t *, u_int16_t);
crypto/openssh/openbsd-compat/blf.h
74
void blf_ecb_encrypt(blf_ctx *, u_int8_t *, u_int32_t);
crypto/openssh/openbsd-compat/blf.h
75
void blf_ecb_decrypt(blf_ctx *, u_int8_t *, u_int32_t);
crypto/openssh/openbsd-compat/blf.h
77
void blf_cbc_encrypt(blf_ctx *, u_int8_t *, u_int8_t *, u_int32_t);
crypto/openssh/openbsd-compat/blf.h
78
void blf_cbc_decrypt(blf_ctx *, u_int8_t *, u_int8_t *, u_int32_t);
crypto/openssh/openbsd-compat/blowfish.c
121
Blowfish_initstate(blf_ctx *c)
crypto/openssh/openbsd-compat/blowfish.c
125
static const blf_ctx initstate =
crypto/openssh/openbsd-compat/blowfish.c
421
Blowfish_expand0state(blf_ctx *c, const u_int8_t *key, u_int16_t keybytes)
crypto/openssh/openbsd-compat/blowfish.c
459
Blowfish_expandstate(blf_ctx *c, const u_int8_t *data, u_int16_t databytes,
crypto/openssh/openbsd-compat/blowfish.c
502
blf_key(blf_ctx *c, const u_int8_t *k, u_int16_t len)
crypto/openssh/openbsd-compat/blowfish.c
512
blf_enc(blf_ctx *c, u_int32_t *data, u_int16_t blocks)
crypto/openssh/openbsd-compat/blowfish.c
525
blf_dec(blf_ctx *c, u_int32_t *data, u_int16_t blocks)
crypto/openssh/openbsd-compat/blowfish.c
538
blf_ecb_encrypt(blf_ctx *c, u_int8_t *data, u_int32_t len)
crypto/openssh/openbsd-compat/blowfish.c
560
blf_ecb_decrypt(blf_ctx *c, u_int8_t *data, u_int32_t len)
crypto/openssh/openbsd-compat/blowfish.c
582
blf_cbc_encrypt(blf_ctx *c, u_int8_t *iv, u_int8_t *data, u_int32_t len)
crypto/openssh/openbsd-compat/blowfish.c
607
blf_cbc_decrypt(blf_ctx *c, u_int8_t *iva, u_int8_t *data, u_int32_t len)
crypto/openssh/openbsd-compat/blowfish.c
660
blf_ctx c;
crypto/openssh/openbsd-compat/blowfish.c
71
Blowfish_encipher(blf_ctx *c, u_int32_t *xl, u_int32_t *xr)
crypto/openssh/openbsd-compat/blowfish.c
96
Blowfish_decipher(blf_ctx *c, u_int32_t *xl, u_int32_t *xr)
secure/lib/libcrypt/blowfish.c
392
Blowfish_expand0state(blf_ctx *c, const u_int8_t *key, u_int16_t keybytes)
secure/lib/libcrypt/blowfish.c
429
Blowfish_expandstate(blf_ctx *c, const u_int8_t *data, u_int16_t databytes,
secure/lib/libcrypt/blowfish.c
472
blf_enc(blf_ctx *c, u_int32_t *data, u_int16_t blocks)
secure/lib/libcrypt/blowfish.c
64
Blowfish_encipher(blf_ctx *c, u_int32_t *xl, u_int32_t *xr)
secure/lib/libcrypt/blowfish.c
89
Blowfish_initstate(blf_ctx *c)
secure/lib/libcrypt/blowfish.c
94
const blf_ctx initstate =
secure/lib/libcrypt/blowfish.h
61
void Blowfish_initstate(blf_ctx *);
secure/lib/libcrypt/blowfish.h
62
void Blowfish_expand0state(blf_ctx *, const u_int8_t *, u_int16_t);
secure/lib/libcrypt/blowfish.h
64
(blf_ctx *, const u_int8_t *, u_int16_t, const u_int8_t *, u_int16_t);
secure/lib/libcrypt/blowfish.h
67
void blf_enc(blf_ctx *, u_int32_t *, u_int16_t);
secure/lib/libcrypt/crypt-blowfish.c
137
blf_ctx state;