Lines Matching refs:BF_word
62 typedef unsigned int BF_word; typedef
68 typedef BF_word BF_key[BF_N + 2];
71 BF_word S[4][0x100];
79 static BF_word BF_magic_w[6] = {
380 static int BF_decode(BF_word *dst, const char *src, int size) in BF_decode()
404 static void BF_encode(char *dst, const BF_word *src, int size) in BF_encode()
436 static void BF_swap(BF_word *x, int count) in BF_swap()
440 BF_word tmp; in BF_swap()
470 (*((BF_word *)(((unsigned char *)S) + (i))))
538 BF_word safety, sign, diff, tmp[2]; in BF_set_key()
576 safety = ((BF_word)flags & 2) << 15; in BF_set_key()
641 BF_word min) in BF_crypt()
647 BF_word salt[4]; in BF_crypt()
648 BF_word output[6]; in BF_crypt()
651 BF_word L, R; in BF_crypt()
652 BF_word tmp1, tmp2, tmp3, tmp4; in BF_crypt()
653 BF_word *ptr; in BF_crypt()
654 BF_word count; in BF_crypt()
675 count = (BF_word)1 << ((setting[4] - '0') * 10 + (setting[5] - '0')); in BF_crypt()