Searched refs:blf_ctx (Results 1 – 3 of 3) sorted by relevance
/illumos-gate/usr/src/lib/crypt_modules/bsdbf/ |
H A D | blf.h | 51 } blf_ctx; typedef 59 void Blowfish_encipher(blf_ctx *, uint32_t *, uint32_t *); 60 void Blowfish_decipher(blf_ctx *, uint32_t *, uint32_t *); 61 void Blowfish_initstate(blf_ctx *); 62 void Blowfish_expand0state(blf_ctx *, const uint8_t *, uint16_t); 64 (blf_ctx *, const uint8_t *, uint16_t, const uint8_t *, uint16_t); 68 void blf_key(blf_ctx *, const uint8_t *, uint16_t); 69 void blf_enc(blf_ctx *, uint32_t *, uint16_t); 70 void blf_dec(blf_ctx *, uint32_t *, uint16_t); 72 void blf_ecb_encrypt(blf_ctx *, uint8_t *, uint32_t); [all …]
|
H A D | blowfish.c | 79 blf_ctx *c; in Blowfish_encipher() 107 blf_ctx *c; in Blowfish_decipher() 135 blf_ctx *c; in Blowfish_initstate() 139 const blf_ctx initstate = 435 Blowfish_expand0state(blf_ctx *c, const uint8_t *key, uint16_t keybytes) in Blowfish_expand0state() 473 Blowfish_expandstate(blf_ctx *c, const uint8_t *data, uint16_t databytes, in Blowfish_expandstate() 515 blf_key(blf_ctx *c, const uint8_t *k, uint16_t len) in blf_key() 525 blf_enc(blf_ctx *c, uint32_t *data, uint16_t blocks) in blf_enc() 538 blf_dec(blf_ctx *c, uint32_t *data, uint16_t blocks) in blf_dec() 551 blf_ecb_encrypt(blf_ctx *c, uint8_t *data, uint32_t len) in blf_ecb_encrypt() [all …]
|
H A D | bcrypt.c | 195 blf_ctx state;
|