shithub: mc

ref: 18da4d07e56cdbc6f6e170c4023c4c7d9ca0bd3e
dir: /libcryptohash/test/sha384-test.myr/

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