RosettaCodeData/Task/MD5/Objeck/md5.objeck
2023-07-01 13:44:08 -04:00

7 lines
225 B
Text

class MD5 {
function : Main(args : String[]) ~ Nil {
in := "The quick brown fox jumped over the lazy dog's back"->ToByteArray();
hash := Encryption.Hash->MD5(in);
hash->ToHexString()->PrintLine();
}
}