7 lines
225 B
Text
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();
|
|
}
|
|
}
|