RosettaCodeData/Task/CRC-32/Common-Lisp/crc-32.lisp

9 lines
354 B
Common Lisp
Raw Permalink Normal View History

2013-04-10 16:57:12 -07:00
(ql:quickload :ironclad)
2014-04-02 16:56:35 +00:00
(defun string-to-digest (str digest)
"Return the specified digest for the ASCII string as a hex string."
(ironclad:byte-array-to-hex-string
(ironclad:digest-sequence digest
(ironclad:ascii-string-to-byte-array str))))
2013-04-10 16:57:12 -07:00
2014-04-02 16:56:35 +00:00
(string-to-digest "The quick brown fox jumps over the lazy dog" :crc32)