2007-09-20 18:09:08 -04:00
|
|
|
USING: help.markup help.syntax math ;
|
|
|
|
IN: io.crc32
|
|
|
|
|
|
|
|
HELP: crc32
|
2008-02-04 12:50:20 -05:00
|
|
|
{ $values { "seq" "a sequence of bytes" } { "n" integer } }
|
2007-09-20 18:09:08 -04:00
|
|
|
{ $description "Computes the CRC32 checksum of a sequence of bytes." } ;
|
|
|
|
|
2008-02-04 12:50:20 -05:00
|
|
|
HELP: lines-crc32
|
|
|
|
{ $values { "lines" "a sequence of strings" } { "n" integer } }
|
|
|
|
{ $description "Computes the CRC32 checksum of a sequence of lines of bytes." } ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
ARTICLE: "io.crc32" "CRC32 checksum calculation"
|
|
|
|
"The CRC32 checksum algorithm provides a quick but unreliable way to detect changes in data."
|
|
|
|
{ $subsection crc32 }
|
2008-02-04 12:50:20 -05:00
|
|
|
{ $subsection lines-crc32 } ;
|
2007-09-20 18:09:08 -04:00
|
|
|
|
|
|
|
ABOUT: "io.crc32"
|