Lines Matching refs:BF_word
68 typedef unsigned int BF_word; typedef
74 typedef BF_word BF_key[BF_N + 2];
77 BF_word S[4][0x100];
85 static BF_word BF_magic_w[6] = {
387 static int BF_decode(BF_word *dst, const char *src, int size) in BF_decode()
418 static void BF_encode(char *dst, const BF_word *src, int size) in BF_encode()
450 static void BF_swap(BF_word *x, int count) in BF_swap()
454 BF_word tmp; in BF_swap()
484 (*((BF_word *)(((unsigned char *)S) + (i))))
557 BF_word safety, sign, diff, tmp[2]; in BF_set_key()
595 safety = ((BF_word)flags & 2) << 15; in BF_set_key()
660 BF_word min) in BF_crypt()
669 BF_word salt[4]; in BF_crypt()
670 BF_word output[6]; in BF_crypt()
673 BF_word L, R; in BF_crypt()
674 BF_word tmp1, tmp2, tmp3, tmp4; in BF_crypt()
675 BF_word *ptr; in BF_crypt()
676 BF_word count; in BF_crypt()
697 count = (BF_word)1 << ((setting[4] - '0') * 10 + (setting[5] - '0')); in BF_crypt()
913 BF_encode(&output[7], (const BF_word *)input, 16);