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