Skip to content

CRC for node.js and browser (current version 0.2.0)

Notifications You must be signed in to change notification settings

abroweb/node-crc

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JavaScript CRC 8, 16 and 32.

This is a basic port/copy of the JavaScript CRC implementation. The module works with any CommonJS system supporting module.exports notation as well as in the browser. When loaded in the browser, all functions end up under the window.crc "namespace".

Original code is taken from http://www.digsys.se/JavaScript/CRC.aspx

Functions

The following functions are implemented:

crc8(String)	#=> Number
crcArc(String)	#=> Number
crc16(String)	#=> Number
fcs16(String)	#=> Number
crc32(String)	#=> Number
hex8(Number)	#=> String
hex16(Number)	#=> String
hex32(Number)	#=> String

Installation

git clone git://github.com/alexgorbatchev/node-crc.git

or

npm install crc

Running tests

$ npm install
$ make test

About

CRC for node.js and browser (current version 0.2.0)

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%