js-crc32/README.md

69 lines
2.3 KiB
Markdown
Raw Normal View History

2014-06-16 21:27:47 +00:00
# crc32
Standard CRC-32 algorithm implementation in JS (for the browser and nodejs).
Emphasis on correctness and performance.
## 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
2015-05-06 21:47:18 +00:00
$ npm install crc-32
2014-06-16 21:27:47 +00:00
In the browser:
2015-05-06 21:47:18 +00:00
<script src="crc32.js"></script>
2014-06-16 21:27:47 +00:00
2015-05-06 21:47:18 +00:00
The script will manipulate `module.exports` if available (e.g. in a CommonJS
`require` context). This is not always desirable. To prevent the behavior,
define `DO_NOT_EXPORT_CRC`
2014-06-16 21:27:47 +00:00
## Usage
2015-05-06 21:47:18 +00:00
In all cases, the relevant function takes a single argument representing data.
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
2015-05-06 21:47:18 +00:00
- `CRC32.buf(byte array or buffer)` assumes the argument is a set of 8-bit
unsigned integers (e.g. nodejs `Buffer` or simple array of ints).
2014-06-16 21:27:47 +00:00
2015-05-06 21:47:18 +00:00
- `CRC32.bstr(binary string)` interprets the argument as a binary string where
the `i`-th byte is the low byte of the UCS-2 char: `str.charCodeAt(i) & 0xFF`
2014-06-16 21:27:47 +00:00
2015-05-06 21:47:18 +00:00
- `CRC32.str(string)` interprets the argument as a standard JS string
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
> // 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
2014-06-16 21:34:13 +00:00
2015-05-06 21:47:18 +00:00
> [CRC32.str("\u2603"), CRC32.str("\u0003")] // [ -1743909036, 1259060791 ]
> [CRC32.bstr("\u2603"), CRC32.bstr("\u0003")] // [ 1259060791, 1259060791 ]
> [CRC32.buf([0x2603]), CRC32.buf([0x0003])] // [ 1259060791, 1259060791 ]
```
2014-06-16 21:34:13 +00:00
2015-05-06 21:47:18 +00:00
## Testing
2014-06-16 21:27:47 +00:00
2015-05-06 21:47:18 +00:00
`make test` will run the node-based tests.
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.
To update the browser artifacts, run `make ctest`.
2014-06-16 21:27:47 +00:00
`make baseline` will generate baseline files based on the unicode mapping at
<http://mathias.html5.org>
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
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)
2014-06-16 21:27:47 +00:00
2015-05-06 21:47:18 +00:00
[![Coverage Status](http://img.shields.io/coveralls/SheetJS/js-crc32/master.svg)](https://coveralls.io/r/SheetJS/js-crc32?branch=master)
2014-06-16 21:27:47 +00:00
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)