00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 struct rs_mdfour {
00025 unsigned int A, B, C, D;
00026 #if HAVE_UINT64
00027 uint64_t totalN;
00028 #else
00029 uint32_t totalN_hi, totalN_lo;
00030 #endif
00031 int tail_len;
00032 unsigned char tail[64];
00033 };