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