Tcl Library Source Code

Documentation
Login
Bounty program for improvements to Tcl and certain Tcl packages.


[ Main Table Of Contents | Table Of Contents | Keyword Index | Categories | Modules | Applications ]

NAME

crc32 - Perform a 32bit Cyclic Redundancy Check

Table Of Contents

SYNOPSIS

package require Tcl 8.2
package require crc32 ?1.3.3?

::crc::crc32 ?-format format? ?-seed value? [ -channel chan | -filename file | message ]
::crc::Crc32Init ?seed?
::crc::Crc32Update token data
::crc::Crc32Final token

DESCRIPTION

This package provides a Tcl implementation of the CRC-32 algorithm based upon information provided at http://www.naaccr.org/standard/crc32/document.html If either the critcl package or the Trf package are available then a compiled version may be used internally to accelerate the checksum calculation.

COMMANDS

OPTIONS

PROGRAMMING INTERFACE

The CRC-32 package implements the checksum using a context variable to which additional data can be added at any time. This is expecially useful in an event based environment such as a Tk application or a web server package. Data to be checksummed may be handled incrementally during a fileevent handler in discrete chunks. This can improve the interactive nature of a GUI application and can help to avoid excessive memory consumption.

EXAMPLES

% crc::crc32 "Hello, World!"
3964322768

% crc::crc32 -format 0x%X "Hello, World!"
0xEC4AC3D0

% crc::crc32 -file crc32.tcl
483919716

% set tok [crc::Crc32Init]
% crc::Crc32Update $tok "Hello, "
% crc::Crc32Update $tok "World!"
% crc::Crc32Final $tok
3964322768

AUTHORS

Pat Thoyts

Bugs, Ideas, Feedback

This document, and the package it describes, will undoubtedly contain bugs and other problems. Please report such in the category crc of the Tcllib Trackers. Please also report any ideas for enhancements you may have for either package and/or documentation.

When proposing code changes, please provide unified diffs, i.e the output of diff -u.

Note further that attachments are strongly preferred over inlined patches. Attachments can be made by going to the Edit form of the ticket immediately after its creation, and then using the left-most button in the secondary navigation bar.

SEE ALSO

cksum(n), crc16(n), sum(n)

KEYWORDS

checksum, cksum, crc, crc32, cyclic redundancy check, data integrity, security

CATEGORY

Hashes, checksums, and encryption

COPYRIGHT

Copyright © 2002, Pat Thoyts