Coder Social home page Coder Social logo

string-crc32's Introduction

NAME

String::CRC32 - Perl interface for cyclic redundancy check generation

SYNOPSIS

use String::CRC32;

$crc = crc32("some string");
$crc = crc32("some string", initvalue);

$somestring = "some string";
$crc = crc32($somestring);

open(SOMEFILE, "location/of/some.file");
binmode SOMEFILE;
$crc = crc32(*SOMEFILE);
close(SOMEFILE);

DESCRIPTION

The CRC32 module calculates CRC sums of 32 bit lengths. It generates the same CRC values as ZMODEM, PKZIP, PICCHECK and many others.

Despite its name, this module is able to compute the checksum of files as well as strings.

EXAMPLES

$crc = crc32("some string");

results in the same as

$crc = crc32(" string", crc32("some"));

This is useful for subsequent CRC checking of substrings.

You may even check files:

open(SOMEFILE, "location/of/some.file");
binmode SOMEFILE;
$crc = crc32(*SOMEFILE);
close(SOMEFILE);

A init value may also have been supplied in the above example.

AUTHOR

Soenke J. Peters <[email protected]>

Current maintainer: LEEJO

Address bug reports and comments to: https://github.com/leejo/string-crc32/issues

LICENSE

CRC algorithm code taken from CRC-32 by Craig Bruce. The module stuff is inspired by a similar perl module called String::CRC by David Sharnoff & Matthew Dillon. Horst Fickenscher told me that it could be useful to supply an init value to the crc checking function and so I included this possibility.

The author of this package disclaims all copyrights and releases it into the public domain.

string-crc32's People

Contributors

leejo avatar choroba avatar pghmcfc avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.