ref: 6b0f942d7b95740123e84dbd8aeab15f336a18c6
dir: /libcryptohash/test/md5-test.myr/
use std
use cryptohash
use "printhash.use"
const main = {
print(cryptohash.md5("")[:])
print(cryptohash.md5("h")[:])
/* 64 byte block */
print(cryptohash.md5("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa")[:])
/* tail spanning */
print(cryptohash.md5("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbbbb")[:])
}