Home
last modified time | relevance | path

Searched refs:blf_ctx (Results 1 – 3 of 3) sorted by relevance

/external/openssh/openbsd-compat/
Dblf.h56 } blf_ctx; typedef
64 void Blowfish_encipher(blf_ctx *, u_int32_t *, u_int32_t *);
65 void Blowfish_decipher(blf_ctx *, u_int32_t *, u_int32_t *);
66 void Blowfish_initstate(blf_ctx *);
67 void Blowfish_expand0state(blf_ctx *, const u_int8_t *, u_int16_t);
69 (blf_ctx *, const u_int8_t *, u_int16_t, const u_int8_t *, u_int16_t);
73 void blf_key(blf_ctx *, const u_int8_t *, u_int16_t);
74 void blf_enc(blf_ctx *, u_int32_t *, u_int16_t);
75 void blf_dec(blf_ctx *, u_int32_t *, u_int16_t);
77 void blf_ecb_encrypt(blf_ctx *, u_int8_t *, u_int32_t);
[all …]
Dblowfish.c74 Blowfish_encipher(blf_ctx *c, u_int32_t *xl, u_int32_t *xr) in Blowfish_encipher()
99 Blowfish_decipher(blf_ctx *c, u_int32_t *xl, u_int32_t *xr) in Blowfish_decipher()
124 Blowfish_initstate(blf_ctx *c) in Blowfish_initstate()
128 static const blf_ctx initstate = in Blowfish_initstate()
424 Blowfish_expand0state(blf_ctx *c, const u_int8_t *key, u_int16_t keybytes) in Blowfish_expand0state()
462 Blowfish_expandstate(blf_ctx *c, const u_int8_t *data, u_int16_t databytes, in Blowfish_expandstate()
505 blf_key(blf_ctx *c, const u_int8_t *k, u_int16_t len) in blf_key()
515 blf_enc(blf_ctx *c, u_int32_t *data, u_int16_t blocks) in blf_enc()
528 blf_dec(blf_ctx *c, u_int32_t *data, u_int16_t blocks) in blf_dec()
541 blf_ecb_encrypt(blf_ctx *c, u_int8_t *data, u_int32_t len) in blf_ecb_encrypt()
[all …]
Dbcrypt_pbkdf.c72 blf_ctx state; in bcrypt_hash()