New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

cyclic-32

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cyclic-32 - npm Package Compare versions

Comparing version 1.1.1 to 1.2.0

4

lib/crc32.js

@@ -47,2 +47,6 @@ 'use strict'

crc32.c = function crc32c( buffer, seed ) {
return crc32( buffer, seed, crc32.TABLE.CASTAGNOLI )
}
module.exports = crc32

@@ -49,0 +53,0 @@

2

package.json
{
"name": "cyclic-32",
"version": "1.1.1",
"version": "1.2.0",
"description": "Tiny, streaming, seedable CRC32 library, compatible with the crypto.Hash API",

@@ -5,0 +5,0 @@ "license": "MIT",

@@ -5,3 +5,2 @@ # cyclic-32

[![npm downloads](https://img.shields.io/npm/dm/cyclic-32.svg?style=flat-square)](https://npmjs.com/package/cyclic-32)
[![build status](https://img.shields.io/travis/jhermsmeier/node-cyclic-32.svg?style=flat-square)](https://travis-ci.org/jhermsmeier/node-cyclic-32)

@@ -37,2 +36,7 @@ A tiny, streaming, seedable [CRC32] library, compatible with Node's [crypto.Hash API].

```js
// Shorthand for Castagnoli
var castagnoli = crc32.c( buffer, seed = 0, table = crc32.TABLE.DEFAULT )
```
```js
var checksumStream = crc32.createHash({

@@ -39,0 +43,0 @@ seed: 0,

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc