shithub: mc

ref: 124965cc6607aacf1c8a292e9d9bd1b8f2ea5ca4
dir: /libcryptohash/test/sha512-test.myr/

View raw version
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")[:])
}