Lines Matching defs:blf_ctx
51 } blf_ctx;
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);
73 void blf_ecb_decrypt(blf_ctx *, uint8_t *, uint32_t);
75 void blf_cbc_encrypt(blf_ctx *, uint8_t *, uint8_t *, uint32_t);
76 void blf_cbc_decrypt(blf_ctx *, uint8_t *, uint8_t *, uint32_t);