Socket
Socket
Sign inDemoInstall

js-crc

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    js-crc

Simple CRC checksum functions for JavaScript(CRC-16 and CRC-32).


Version published
Weekly downloads
8.3K
decreased by-23.04%
Maintainers
1
Install size
15.4 kB
Created
Weekly downloads
 

Changelog

Source

v0.2.0 / 2017-02-08

Added

  • AMD support.

Fixed

  • root is undefined in some special environment.

Readme

Source

js-crc

Build Status Coverage Status
NPM
Simple CRC checksum functions for JavaScript(CRC-16 and CRC-32).

Download

Compress
Uncompress

Installation

You can also install js-crc by using Bower.

bower install js-crc

For node.js, you can use this command to install:

npm install js-crc

Usage

You could use like this:

crc32('Message to hash');
crc16('Message to hash');

If you use node.js, you should require the module first:

var crc32 = require('js-crc').crc32;
var crc16 = require('js-crc').crc16;

It supports AMD:

require(['your/path/crc.js'], function (crc) {
  var crc32 = crc.crc32;
  var crc16 = crc.crc16;
  // ...
});

## Example
```JavaScript
crc32('The quick brown fox jumps over the lazy dog'); // 414fa339
crc32('The quick brown fox jumps over the lazy dog.'); // 519025e9

// It also supports byte `Array`, `Uint8Array`, `ArrayBuffer` input:
crc32([0]); // d202ef8d
crc32(new Uint8Array([0])); // d202ef8d

License

The project is released under the MIT license.

Contact

The project's website is located at https://github.com/emn178/js-crc
Author: Chen, Yi-Cyuan (emn178@gmail.com)

Keywords

FAQs

Last updated on 08 Feb 2017

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc