RosettaCodeData/Task/MD4/Julia/md4.julia

10 lines
122 B
Text
Raw Permalink Normal View History

2015-11-18 06:14:39 +00:00
using Nettle
msg = "Rosetta Code"
h = HashState(MD4)
update!(h, msg)
h = hexdigest!(h)
println("\"", msg, "\" => ", h)