shithub: mc

ref: 20cea781b95e1a6c1fa2f6cd2bb6c05ec9a4480d
dir: /bench/sha1-compute.myr/

View raw version
use cryptohash
use std

const N = 20
const main = {
	var i, b
	var buf : byte[1024*1024]
	var st

	b = 0
	for i = 0; i < buf.len; i++
		buf[i] = b++
	;;
	for i = 0; i < N; i++
		cryptohash.sha1init(&st)
		cryptohash.sha1add(&st, buf[:])
		cryptohash.sha1fin(&st)
	;;
}