Searched refs:UINT4 (Results 1 – 9 of 9) sorted by relevance
/titanic_41/usr/src/lib/gss_mechs/mech_dh/backend/crypto/ |
H A D | md5.c | 56 static void Transform (UINT4 *buf, UINT4 *in); 81 {(a) += F ((b), (c), (d)) + (x) + (UINT4)(ac); \ 86 {(a) += G ((b), (c), (d)) + (x) + (UINT4)(ac); \ 91 {(a) += H ((b), (c), (d)) + (x) + (UINT4)(ac); \ 96 {(a) += I ((b), (c), (d)) + (x) + (UINT4)(ac); \ 107 mdContext->i[0] = mdContext->i[1] = (UINT4)0; in MD5Init() 112 mdContext->buf[0] = (UINT4)0x67452301; in MD5Init() 113 mdContext->buf[1] = (UINT4)0xefcdab89; in MD5Init() 114 mdContext->buf[2] = (UINT4)0x98badcfe; in MD5Init() 115 mdContext->buf[3] = (UINT4)0x10325476; in MD5Init() [all …]
|
H A D | md5.h | 47 typedef unsigned long int UINT4; typedef 51 UINT4 i[2]; /* number of _bits_ handled mod 2^64 */ 52 UINT4 buf[4]; /* scratch buffer */
|
/titanic_41/usr/src/lib/libsum/common/ |
H A D | sum-md5.c | 55 typedef uint32_t UINT4; typedef 61 UINT4 state[4]; /* state (ABCD) */ 62 UINT4 count[2]; /* # bits handled mod 2^64 (lsb)*/ 86 md5_encode(register unsigned char* output, register UINT4* input, unsigned int len) in md5_encode() 106 md5_decode(register UINT4* output, register unsigned char* input, unsigned int len) in md5_decode() 112 output[i] = ((UINT4)input[j]) | in md5_decode() 113 (((UINT4)input[j+1]) << 8) | in md5_decode() 114 (((UINT4)input[j+2]) << 16) | in md5_decode() 115 (((UINT4)input[j+3]) << 24); in md5_decode() 178 (a) += F ((b), (c), (d)) + (x) + (UINT4)(ac); \ [all …]
|
/titanic_41/usr/src/lib/libsasl/lib/ |
H A D | md5.c | 75 static void MD5Transform PROTO_LIST ((UINT4 [4], unsigned char [64])); 77 ((unsigned char *, UINT4 *, unsigned int)); 79 ((UINT4 *, unsigned char *, unsigned int)); 112 #define FF(a, b, c, d, x, s, ac) { (a) += F ((b), (c), (d)) + (x) + (UINT4)(ac); (a) = ROTATE_LEFT … 113 #define GG(a, b, c, d, x, s, ac) { (a) += G ((b), (c), (d)) + (x) + (UINT4)(ac); (a) … 114 #define HH(a, b, c, d, x, s, ac) { (a) += H ((b), (c), (d)) + (x) + (UINT4)(ac); (a) … 115 #define II(a, b, c, d, x, s, ac) { (a) += I ((b), (c), (d)) + (x) + (UINT4)(ac); (a) … 148 if ((context->count[0] += ((UINT4)inputLen << 3)) 149 < ((UINT4)inputLen << 3)) 151 context->count[1] += ((UINT4)inputLen >> 29); [all …]
|
/titanic_41/usr/src/grub/grub-0.97/stage2/ |
H A D | md5.c | 43 typedef unsigned int UINT4; typedef 56 static UINT4 initstate[4] = 66 static UINT4 T[64] = 89 static UINT4 state[4]; 97 UINT4 a,b,c,d,tmp; in md5_transform() 98 const UINT4 *x = (UINT4 *) block; in md5_transform() 191 *(UINT4 *) (buffer + 56) = cpu_to_le32 (8 * length); in md5_final() 192 *(UINT4 *) (buffer + 60) = 0; in md5_final()
|
/titanic_41/usr/src/lib/libsasl/include/ |
H A D | md5_private.h | 43 UINT4 state[4]; /* state (ABCD) */ 44 UINT4 count[2]; /* number of bits, modulo 2^64 (lsb first) */
|
H A D | hmac-md5.h | 30 UINT4 istate[4]; 31 UINT4 ostate[4];
|
H A D | md5global.h | 26 typedef unsigned int UINT4; /* 32 bits */ typedef
|
/titanic_41/usr/src/lib/sasl_plugins/cram/ |
H A D | cram.c | 265 UINT4 digest[4]; in crammd5_server_mech_step2()
|