1 /* ISC license. */
2 
3 #include <skalibs/md5.h>
4 
md5_init(MD5Schedule * ctx)5 void md5_init (MD5Schedule *ctx)
6 {
7   ctx->buf[0] = 0x67452301U ;
8   ctx->buf[1] = 0xefcdab89U ;
9   ctx->buf[2] = 0x98badcfeU ;
10   ctx->buf[3] = 0x10325476U ;
11   ctx->bits[0] = 0 ;
12   ctx->bits[1] = 0 ;
13 }
14