Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
11
Task/MD5-Implementation/Modula-3/md5-implementation-3.mod3
Normal file
11
Task/MD5-Implementation/Modula-3/md5-implementation-3.mod3
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
MODULE Main;
|
||||
|
||||
IMPORT MD5, IO;
|
||||
|
||||
VAR md5ctx: MD5.T;
|
||||
|
||||
BEGIN
|
||||
MD5.Init(md5ctx);
|
||||
MD5.Update(md5ctx, "The quick brown fox jumped over the lazy dog's back");
|
||||
IO.Put(MD5.ToText(MD5.Final(md5ctx)) & "\n");
|
||||
END Main.
|
||||
Loading…
Add table
Add a link
Reference in a new issue