| /freebsd-9-stable/contrib/ipfilter/ |
| D | md5.c | 58 static void Transform __P((UINT4 *, UINT4 *)); 83 {(a) += F ((b), (c), (d)) + (x) + (UINT4)(ac); \ 88 {(a) += G ((b), (c), (d)) + (x) + (UINT4)(ac); \ 93 {(a) += H ((b), (c), (d)) + (x) + (UINT4)(ac); \ 98 {(a) += I ((b), (c), (d)) + (x) + (UINT4)(ac); \ 115 mdContext->i[0] = mdContext->i[1] = (UINT4)0; 119 mdContext->buf[0] = (UINT4)0x67452301; 120 mdContext->buf[1] = (UINT4)0xefcdab89; 121 mdContext->buf[2] = (UINT4)0x98badcfe; 122 mdContext->buf[3] = (UINT4)0x10325476; [all …]
|
| D | md5.h | 57 typedef unsigned int UINT4; typedef 61 UINT4 i[2]; /* number of _bits_ handled mod 2^64 */ 62 UINT4 buf[4]; /* scratch buffer */
|
| /freebsd-9-stable/sys/kern/ |
| D | md4c.c | 35 typedef u_int32_t UINT4; typedef 54 static void MD4Transform PROTO_LIST ((UINT4 [4], const unsigned char [64])); 56 ((unsigned char *, UINT4 *, unsigned int)); 58 ((UINT4 *, const unsigned char *, unsigned int)); 83 (a) += G ((b), (c), (d)) + (x) + (UINT4)0x5a827999; \ 87 (a) += H ((b), (c), (d)) + (x) + (UINT4)0x6ed9eba1; \ 120 if ((context->count[0] += ((UINT4)inputLen << 3)) 121 < ((UINT4)inputLen << 3)) 123 context->count[1] += ((UINT4)inputLen >> 29); 185 UINT4 state[4]; in MD4Transform() [all …]
|
| /freebsd-9-stable/lib/libmd/ |
| D | md4c.c | 35 typedef u_int32_t UINT4; typedef 54 static void MD4Transform PROTO_LIST ((UINT4 [4], const unsigned char [64])); 56 ((unsigned char *, UINT4 *, unsigned int)); 58 ((UINT4 *, const unsigned char *, unsigned int)); 83 (a) += G ((b), (c), (d)) + (x) + (UINT4)0x5a827999; \ 87 (a) += H ((b), (c), (d)) + (x) + (UINT4)0x6ed9eba1; \ 121 if ((context->count[0] += ((UINT4)inputLen << 3)) 122 < ((UINT4)inputLen << 3)) 124 context->count[1] += ((UINT4)inputLen >> 29); 189 UINT4 state[4]; in MD4Transform() [all …]
|
| D | md2c.c | 32 typedef u_int32_t UINT4; typedef
|
| /freebsd-9-stable/contrib/opie/libopie/ |
| D | md4c.c | 62 static VOIDRET MD4Transform __P((UINT4[4], unsigned char[64])); 63 static VOIDRET Encode __P((unsigned char *, UINT4 *, unsigned int)); 64 static VOIDRET Decode __P((UINT4 *, unsigned char *, unsigned int)); 91 (a) += G ((b), (c), (d)) + (x) + (UINT4)0x5a827999; \ 95 (a) += H ((b), (c), (d)) + (x) + (UINT4)0x6ed9eba1; \ 123 if ((context->count[0] += ((UINT4) inputLen << 3)) 124 < ((UINT4) inputLen << 3)) 126 context->count[1] += ((UINT4) inputLen >> 29); 173 static VOIDRET MD4Transform FUNCTION((state, block), UINT4 state[4] AND unsigned char block[64]) 175 UINT4 a = state[0], b = state[1], c = state[2], d = state[3], x[16]; [all …]
|
| D | md5c.c | 70 static VOIDRET MD5Transform __P((UINT4[4], unsigned char[64])); 83 static VOIDRET EEncode FUNCTION((output, input, len), unsigned char *output AND UINT4 *input AND un… 99 static VOIDRET EDecode FUNCTION((output, input, len), UINT4 *output AND unsigned char *input AND un… 104 output[i] = ((UINT4) input[j]) | (((UINT4) input[j + 1]) << 8) | 105 (((UINT4) input[j + 2]) << 16) | (((UINT4) input[j + 3]) << 24); 121 (a) += F ((b), (c), (d)) + (x) + (UINT4)(ac); \ 127 (a) += G ((b), (c), (d)) + (x) + (UINT4)(ac); \ 133 (a) += H ((b), (c), (d)) + (x) + (UINT4)(ac); \ 139 (a) += I ((b), (c), (d)) + (x) + (UINT4)(ac); \ 168 if ((context->count[0] += ((UINT4) inputLen << 3)) < ((UINT4) inputLen << 3)) [all …]
|
| D | hash.c | 32 UINT4 *results = (UINT4 *)x; 38 UINT4 digest[5]; 56 UINT4 mdx_tmp[4]; 68 UINT4 mdx_tmp[4];
|
| D | hashlen.c | 29 UINT4 *results = (UINT4 *)out; 30 UINT4 mdx_tmp[4]; 35 UINT4 digest[5];
|
| D | btoe.c | 34 static UINT4 extract __P((char *s, int start, int length)); 2232 UINT4 y; 2253 static UINT4 extract FUNCTION((s, start, length), char *s AND int start AND int length) 2255 UINT4 x; 2263 x = ((UINT4) (cl << 8 | cc) << 8 | cr);
|
| /freebsd-9-stable/sys/netncp/ |
| D | ncp_crypt.c | 138 typedef u_int32_t UINT4; typedef 144 ((UINT4 *, const unsigned char *, unsigned int)); 178 (a) += G ((b), (c), (d)) + (x) + (UINT4)0x5a827999; \ 182 (a) += H ((b), (c), (d)) + (x) + (UINT4)0x6ed9eba1; \ 188 UINT4 a, b, c, d, x[16]; in ncp_sign() 260 UINT4 *output; in Decode() 267 output[i] = ((UINT4)input[j]) | (((UINT4)input[j+1]) << 8) | 268 (((UINT4)input[j+2]) << 16) | (((UINT4)input[j+3]) << 24);
|
| /freebsd-9-stable/contrib/opie/ |
| D | opie.h | 94 #define UINT4 u_int32_t macro 97 UINT4 words[2];
|