X-Git-Url: https://jxself.org/git/?p=b43-tools.git;a=blobdiff_plain;f=fwcutter%2Fmd5.h;h=10cb9f490838930f73b22b12cfe35e3a2a195ba8;hp=ee574e4133f69004969058acac8465845b8be05c;hb=HEAD;hpb=b9e19faa25ad9e1b24f08dc77267760df1b98504 diff --git a/fwcutter/md5.h b/fwcutter/md5.h index ee574e4..10cb9f4 100644 --- a/fwcutter/md5.h +++ b/fwcutter/md5.h @@ -4,9 +4,12 @@ #include struct MD5Context { - uint32_t buf[4]; - uint32_t bits[2]; - unsigned char in[64]; + uint32_t buf[4]; + uint32_t bits[2]; + union _u { + unsigned char in[64]; + uint32_t in_u32[16]; + } u; }; void MD5Init(struct MD5Context *ctx);