Searched refs:UINT4 (Results 1 – 3 of 3) sorted by relevance
| /src/sbin/ipf/ipftest/ |
| H A D | md5.c | 57 static void Transform(UINT4 *, UINT4 *); 82 {(a) += F ((b), (c), (d)) + (x) + (UINT4)(ac); \ 87 {(a) += G ((b), (c), (d)) + (x) + (UINT4)(ac); \ 92 {(a) += H ((b), (c), (d)) + (x) + (UINT4)(ac); \ 97 {(a) += I ((b), (c), (d)) + (x) + (UINT4)(ac); \ 109 mdContext->i[0] = mdContext->i[1] = (UINT4)0; in MD5Init() 113 mdContext->buf[0] = (UINT4)0x67452301; in MD5Init() 114 mdContext->buf[1] = (UINT4)0xefcdab89; in MD5Init() 115 mdContext->buf[2] = (UINT4)0x98badcfe; in MD5Init() 116 mdContext->buf[3] = (UINT4)0x10325476; in MD5Init() [all …]
|
| H A D | md5.h | 48 typedef unsigned int UINT4; typedef 52 UINT4 i[2]; /* number of _bits_ handled mod 2^64 */ 53 UINT4 buf[4]; /* scratch buffer */
|
| /src/sys/crypto/ |
| H A D | md4c.c | 38 typedef uint32_t UINT4; typedef 57 static void MD4Transform PROTO_LIST ((UINT4 [4], const unsigned char [64])); 59 ((unsigned char *, UINT4 *, unsigned int)); 61 ((UINT4 *, const unsigned char *, unsigned int)); 86 (a) += G ((b), (c), (d)) + (x) + (UINT4)0x5a827999; \ 90 (a) += H ((b), (c), (d)) + (x) + (UINT4)0x6ed9eba1; \ 122 if ((context->count[0] += ((UINT4)inputLen << 3)) in MD4Update() 123 < ((UINT4)inputLen << 3)) in MD4Update() 125 context->count[1] += ((UINT4)inputLen >> 29); in MD4Update() 186 MD4Transform(UINT4 state[4], const unsigned char block[64]) in MD4Transform() [all …]
|