2014-06-16 21:27:47 +00:00
|
|
|
# crc32
|
|
|
|
|
|
|
|
Standard CRC-32 algorithm implementation in JS (for the browser and nodejs).
|
2016-10-08 18:48:03 +00:00
|
|
|
Emphasis on correctness, performance, and IE6+ support.
|
2014-06-16 21:27:47 +00:00
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
2015-05-06 21:47:18 +00:00
|
|
|
With [npm](https://www.npmjs.org/package/crc-32):
|
2014-06-16 21:27:47 +00:00
|
|
|
|
2016-10-08 18:48:03 +00:00
|
|
|
```bash
|
|
|
|
$ npm install crc-32
|
|
|
|
```
|
2014-06-16 21:27:47 +00:00
|
|
|
|
2022-01-25 05:48:10 +00:00
|
|
|
When installed globally, npm installs a script `crc32` that computes the
|
|
|
|
checksum for a specified file or standard input.
|
|
|
|
|
|
|
|
<details>
|
|
|
|
<summary><b>CDN Availability</b> (click to show)</summary>
|
|
|
|
|
|
|
|
| CDN | URL |
|
|
|
|
|-----------:|:-------------------------------------------|
|
|
|
|
| `unpkg` | <https://unpkg.com/crc-32/> |
|
|
|
|
| `jsDelivr` | <https://jsdelivr.com/package/npm/crc-32> |
|
|
|
|
| `CDNjs` | <https://cdnjs.com/libraries/crc-32> |
|
|
|
|
|
|
|
|
</details>
|
|
|
|
|
|
|
|
|
|
|
|
## Integration
|
|
|
|
|
|
|
|
Using NodeJS or a bundler:
|
|
|
|
|
|
|
|
```js
|
|
|
|
var CRC32 = require("crc-32");
|
|
|
|
```
|
|
|
|
|
|
|
|
In the browser, the `crc32.js` script can be loaded directly:
|
2014-06-16 21:27:47 +00:00
|
|
|
|
2016-10-08 18:48:03 +00:00
|
|
|
```html
|
|
|
|
<script src="crc32.js"></script>
|
|
|
|
```
|
2014-06-16 21:27:47 +00:00
|
|
|
|
2022-01-25 05:48:10 +00:00
|
|
|
The browser script exposes a variable `CRC32`.
|
2016-06-16 20:49:46 +00:00
|
|
|
|
2022-01-25 05:48:10 +00:00
|
|
|
The script will manipulate `module.exports` if available . This is not always
|
|
|
|
desirable. To prevent the behavior, define `DO_NOT_EXPORT_CRC`.
|
|
|
|
|
|
|
|
### CRC32C (Castagnoli)
|
|
|
|
|
|
|
|
The module and CDNs also include a parallel script for CRC32C calculations.
|
|
|
|
|
|
|
|
Using NodeJS or a bundler:
|
|
|
|
|
|
|
|
```js
|
|
|
|
var CRC32C = require("crc-32/crc32c");
|
|
|
|
```
|
|
|
|
|
|
|
|
In the browser, the `crc32c.js` script can be loaded directly:
|
|
|
|
|
|
|
|
```html
|
|
|
|
<script src="crc32c.js"></script>
|
|
|
|
```
|
|
|
|
|
|
|
|
The browser exposes a variable `CRC32C`.
|
2016-06-16 20:49:46 +00:00
|
|
|
|
2018-01-17 21:27:59 +00:00
|
|
|
The script will manipulate `module.exports` if available . This is not always
|
|
|
|
desirable. To prevent the behavior, define `DO_NOT_EXPORT_CRC`.
|
2014-06-16 21:27:47 +00:00
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
2016-10-08 18:48:03 +00:00
|
|
|
In all cases, the relevant function takes an argument representing data and an
|
|
|
|
optional second argument representing the starting "seed" (for rolling CRC).
|
2014-06-16 21:27:47 +00:00
|
|
|
|
2015-05-06 21:47:18 +00:00
|
|
|
The return value is a signed 32-bit integer.
|
2014-06-16 21:27:47 +00:00
|
|
|
|
2016-10-08 18:48:03 +00:00
|
|
|
- `CRC32.buf(byte array or buffer[, seed])` assumes the argument is a sequence
|
2018-01-17 21:27:59 +00:00
|
|
|
of 8-bit unsigned integers (nodejs `Buffer`, `Uint8Array` or array of bytes).
|
2014-06-16 21:27:47 +00:00
|
|
|
|
2018-01-17 21:27:59 +00:00
|
|
|
- `CRC32.bstr(binary string[, seed])` assumes the argument is a binary string
|
2016-10-08 18:48:03 +00:00
|
|
|
where byte `i` is the low byte of the UCS-2 char: `str.charCodeAt(i) & 0xFF`
|
2014-06-16 21:27:47 +00:00
|
|
|
|
2018-01-17 21:27:59 +00:00
|
|
|
- `CRC32.str(string[, seed])` assumes the argument is a standard JS string and
|
|
|
|
calculates the hash of the UTF-8 encoding.
|
2014-06-17 23:20:41 +00:00
|
|
|
|
2015-05-06 21:47:18 +00:00
|
|
|
For example:
|
2014-06-16 21:27:47 +00:00
|
|
|
|
2015-05-06 21:47:18 +00:00
|
|
|
```js
|
2022-01-25 05:48:10 +00:00
|
|
|
// var CRC32 = require('crc-32'); // uncomment this line if in node
|
|
|
|
CRC32.str("SheetJS") // -1647298270
|
|
|
|
CRC32.bstr("SheetJS") // -1647298270
|
|
|
|
CRC32.buf([ 83, 104, 101, 101, 116, 74, 83 ]) // -1647298270
|
|
|
|
|
|
|
|
crc32 = CRC32.buf([83, 104]) // -1826163454 "Sh"
|
|
|
|
crc32 = CRC32.str("eet", crc32) // 1191034598 "Sheet"
|
|
|
|
CRC32.bstr("JS", crc32) // -1647298270 "SheetJS"
|
|
|
|
|
|
|
|
[CRC32.str("\u2603"), CRC32.str("\u0003")] // [ -1743909036, 1259060791 ]
|
|
|
|
[CRC32.bstr("\u2603"), CRC32.bstr("\u0003")] // [ 1259060791, 1259060791 ]
|
|
|
|
[CRC32.buf([0x2603]), CRC32.buf([0x0003])] // [ 1259060791, 1259060791 ]
|
|
|
|
|
|
|
|
// var CRC32C = require('crc-32/crc32c'); // uncomment this line if in node
|
|
|
|
CRC32C.str("SheetJS") // -284764294
|
|
|
|
CRC32C.bstr("SheetJS") // -284764294
|
|
|
|
CRC32C.buf([ 83, 104, 101, 101, 116, 74, 83 ]) // -284764294
|
|
|
|
|
|
|
|
crc32c = CRC32C.buf([83, 104]) // -297065629 "Sh"
|
|
|
|
crc32c = CRC32C.str("eet", crc32c) // 1241364256 "Sheet"
|
|
|
|
CRC32C.bstr("JS", crc32c) // -284764294 "SheetJS"
|
|
|
|
|
|
|
|
[CRC32C.str("\u2603"), CRC32C.str("\u0003")] // [ 1253703093, 1093509285 ]
|
|
|
|
[CRC32C.bstr("\u2603"), CRC32C.bstr("\u0003")] // [ 1093509285, 1093509285 ]
|
|
|
|
[CRC32C.buf([0x2603]), CRC32C.buf([0x0003])] // [ 1093509285, 1093509285 ]
|
|
|
|
```
|
|
|
|
|
|
|
|
### Best Practices
|
|
|
|
|
|
|
|
Even though the initial seed is optional, for performance reasons it is highly
|
|
|
|
recommended to explicitly pass the default seed 0.
|
|
|
|
|
|
|
|
In NodeJS with the native Buffer implementation, it is oftentimes faster to
|
|
|
|
convert binary strings with `Buffer.from(bstr, "binary")` first:
|
|
|
|
|
|
|
|
```js
|
|
|
|
/* Frequently slower in NodeJS */
|
|
|
|
crc32 = CRC32.bstr(bstr, 0);
|
|
|
|
/* Frequently faster in NodeJS */
|
|
|
|
crc32 = CRC32.buf(Buffer.from(bstr, "binary"), 0);
|
2015-05-06 21:47:18 +00:00
|
|
|
```
|
2014-06-16 21:34:13 +00:00
|
|
|
|
2022-01-25 05:48:10 +00:00
|
|
|
This does not apply to browser `Buffer` shims, and thus is not implemented in
|
|
|
|
the library directly.
|
|
|
|
|
2015-05-06 21:47:18 +00:00
|
|
|
## Testing
|
2014-06-16 21:27:47 +00:00
|
|
|
|
2016-06-16 20:49:46 +00:00
|
|
|
`make test` will run the nodejs-based test.
|
2014-06-16 21:27:47 +00:00
|
|
|
|
2015-05-06 21:47:18 +00:00
|
|
|
To run the in-browser tests, run a local server and go to the `ctest` directory.
|
2016-06-16 20:49:46 +00:00
|
|
|
`make ctestserv` will start a python `SimpleHTTPServer` server on port 8000.
|
|
|
|
|
2015-05-06 21:47:18 +00:00
|
|
|
To update the browser artifacts, run `make ctest`.
|
2014-06-16 21:27:47 +00:00
|
|
|
|
2018-01-17 21:27:59 +00:00
|
|
|
To generate the bits file, use the `crc32` function from python `zlib`:
|
2016-06-16 20:49:46 +00:00
|
|
|
|
|
|
|
```python
|
|
|
|
>>> from zlib import crc32
|
|
|
|
>>> x="foo bar baz٪☃🍣"
|
|
|
|
>>> crc32(x)
|
|
|
|
1531648243
|
|
|
|
>>> crc32(x+x)
|
|
|
|
-218791105
|
|
|
|
>>> crc32(x+x+x)
|
|
|
|
1834240887
|
|
|
|
```
|
|
|
|
|
2018-01-17 21:27:59 +00:00
|
|
|
The included `crc32.njs` script can process files or standard input:
|
2016-06-16 20:49:46 +00:00
|
|
|
|
2016-10-08 18:48:03 +00:00
|
|
|
```bash
|
2016-06-16 20:49:46 +00:00
|
|
|
$ echo "this is a test" > t.txt
|
|
|
|
$ bin/crc32.njs t.txt
|
|
|
|
1912935186
|
|
|
|
```
|
|
|
|
|
2018-01-17 21:27:59 +00:00
|
|
|
For comparison, the included `crc32.py` script uses python `zlib`:
|
2016-06-16 20:49:46 +00:00
|
|
|
|
2016-10-08 18:48:03 +00:00
|
|
|
```bash
|
2016-06-16 20:49:46 +00:00
|
|
|
$ bin/crc32.py t.txt
|
|
|
|
1912935186
|
|
|
|
```
|
|
|
|
|
2017-04-27 21:29:43 +00:00
|
|
|
On OSX the command `cksum` generates unsigned CRC-32 with Algorithm 3:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ cksum -o 3 < IE8.Win7.For.Windows.VMware.zip
|
|
|
|
1891069052 4161613172
|
|
|
|
$ crc32 --unsigned ~/Downloads/IE8.Win7.For.Windows.VMware.zip
|
|
|
|
1891069052
|
|
|
|
```
|
|
|
|
|
2016-06-16 20:49:46 +00:00
|
|
|
## Performance
|
|
|
|
|
|
|
|
`make perf` will run algorithmic performance tests (which should justify certain
|
|
|
|
decisions in the code).
|
|
|
|
|
2022-04-26 22:35:26 +00:00
|
|
|
The [`adler-32` project](https://github.com/SheetJS/js-adler32) has more performance notes
|
2016-01-13 03:30:35 +00:00
|
|
|
|
2014-06-16 21:27:47 +00:00
|
|
|
## License
|
|
|
|
|
|
|
|
Please consult the attached LICENSE file for details. All rights not explicitly
|
|
|
|
granted by the Apache 2.0 license are reserved by the Original Author.
|
|
|
|
|
2015-05-06 21:47:18 +00:00
|
|
|
## Badges
|
2014-06-16 21:27:47 +00:00
|
|
|
|
2016-10-10 23:45:29 +00:00
|
|
|
[![Sauce Test Status](https://saucelabs.com/browser-matrix/crc32.svg)](https://saucelabs.com/u/crc32)
|
|
|
|
|
2015-05-06 21:47:18 +00:00
|
|
|
[![Build Status](https://travis-ci.org/SheetJS/js-crc32.svg?branch=master)](https://travis-ci.org/SheetJS/js-crc32)
|
|
|
|
[![Coverage Status](http://img.shields.io/coveralls/SheetJS/js-crc32/master.svg)](https://coveralls.io/r/SheetJS/js-crc32?branch=master)
|
2017-09-14 05:28:47 +00:00
|
|
|
[![Dependencies Status](https://david-dm.org/sheetjs/js-crc32/status.svg)](https://david-dm.org/sheetjs/js-crc32)
|
|
|
|
[![NPM Downloads](https://img.shields.io/npm/dt/crc-32.svg)](https://npmjs.org/package/crc-32)
|
|
|
|
[![ghit.me](https://ghit.me/badge.svg?repo=sheetjs/js-xlsx)](https://ghit.me/repo/sheetjs/js-xlsx)
|
2015-05-06 21:47:18 +00:00
|
|
|
[![Analytics](https://ga-beacon.appspot.com/UA-36810333-1/SheetJS/js-crc32?pixel)](https://github.com/SheetJS/js-crc32)
|