shithub: mc

Download patch

ref: 782bc5755dc32b9386b17f49b756b250c38c703d
parent: 18da4d07e56cdbc6f6e170c4023c4c7d9ca0bd3e
author: Ori Bernstein <ori@eigenstate.org>
date: Sun Jun 22 17:02:20 EDT 2014

Add missing file for test.

--- /dev/null
+++ b/libcryptohash/test/printhash.myr
@@ -1,0 +1,12 @@
+use std
+
+pkg =
+	const print	: (b : byte[:] -> void)
+;;
+
+const print = {b
+	for x in b
+		std.put("%02xb", x)
+	;;
+        std.put("\n")
+}