11 lines
189 B
Text
11 lines
189 B
Text
program GetMd5;
|
|
|
|
uses md5;
|
|
|
|
var
|
|
strEncrypted : string;
|
|
|
|
begin
|
|
strEncrypted := md5Print(md5String('The quick brown fox jumped over the lazy dog''s back'));
|
|
writeln(strEncrypted);
|
|
end.
|