▼
File
:
Racket File Format Libraries
1
gzip
Compression and File Creation
2
gzip
Decompression
3
zip
File Creation
4
tar
File Creation
5
MD5 Message Digest
6
GIF File Writing
Bibliography
Index
On this page:
md5
top
← prev
up
next →
5
MD5 Message Digest
(
require
file/md5
)
(
md5
in
)
→
bytes?
in
:
(
or/c
input-port?
bytes?
string?
)
Produces a byte string containing 32 hexadecimal digits (lowercase) that is the MD5 hash of the given input stream or byte string.
Example:
>
(
md5
#"abc"
)
#"900150983cd24fb0d6963f7d28e17f72"
top
← prev
up
next →