RosettaCodeData/Task/SHA-1/F-Sharp/sha-1.fs

3 lines
109 B
Forth
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
let n = System.Security.Cryptography.SHA1.Create()
Array.iter (printf "%x ") (n.ComputeHash "Rosetta Code"B)