9 lines
122 B
Julia
9 lines
122 B
Julia
using Nettle
|
|
|
|
msg = "Rosetta Code"
|
|
|
|
h = HashState(MD4)
|
|
update!(h, msg)
|
|
h = hexdigest!(h)
|
|
|
|
println("\"", msg, "\" => ", h)
|