Home | History | Annotate | Download | only in C

Lines Matching full:uint32

74 static const UInt32 K[64] = {

93 static void Sha256_Transform(UInt32 *state, const UInt32 *data)
95 UInt32 W[16];
98 UInt32 a,b,c,d,e,f,g,h;
108 UInt32 T[8];
149 UInt32 data32[16];
153 ((UInt32)(p->buffer[i * 4 ]) << 24) +
154 ((UInt32)(p->buffer[i * 4 + 1]) << 16) +
155 ((UInt32)(p->buffer[i * 4 + 2]) << 8) +
156 ((UInt32)(p->buffer[i * 4 + 3]));
162 UInt32 curBufferPos = (UInt32)p->count & 0x3F;
179 UInt32 curBufferPos = (UInt32)p->count & 0x3F;