shithub: mc

ref: 80f3197039716af937a80f3f3516c3c8af1a4b58
dir: /lib/crypto/bld.sub/

View raw version
testdeps = ../testr:testr ;;

lib crypto =
	# hashes
	md5.myr
	sha1.myr
	sha256.myr
	sha512.myr
	sha3.myr

	# ciphers
	chacha20.myr
	aes.myr

	# randomness
	entropy.myr	# currently assumes a /dev/random
	rand.myr

	lib ../std:std
	lib ../sys:sys
	lib ../thread:thread
;;


lib testutil {noinst} =
	util.myr

	lib ../std:std
	lib ../sys:sys
	lib ../thread:thread
;;

testdeps =
	testutil
	../testr:testr
	../sys:sys
	../iter:iter
	../std:std
;;