March 2014 update
This commit is contained in:
parent
09687c4926
commit
a25938f123
1846 changed files with 21876 additions and 5203 deletions
7
Task/MD4/Common-Lisp/md4.lisp
Normal file
7
Task/MD4/Common-Lisp/md4.lisp
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
(ql:quickload 'ironclad)
|
||||
(defun md4 (str)
|
||||
(ironclad:byte-array-to-hex-string
|
||||
(ironclad:digest-sequence :md4
|
||||
(ironclad:ascii-string-to-byte-array str))))
|
||||
|
||||
(md4 "Rosetta Code")
|
||||
5
Task/MD4/Lua/md4.lua
Normal file
5
Task/MD4/Lua/md4.lua
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
#!/usr/bin/lua
|
||||
|
||||
require "crypto"
|
||||
|
||||
print(crypto.digest("MD4", "Rosetta Code"))
|
||||
Loading…
Add table
Add a link
Reference in a new issue