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