Socket
Socket
Sign inDemoInstall

deflate-crc32-stream

Package Overview
Dependencies
1
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    deflate-crc32-stream

a streaming deflater with CRC32 checksumer


Version published
Weekly downloads
1.4K
increased by11.07%
Maintainers
1
Install size
14.9 kB
Created
Weekly downloads
 

Readme

Source

deflate-crc32-stream v0.1.2

deflate-crc32-stream is a streaming deflater with CRC32 checksumer. It uses buffer-crc32 behind the scenes to reliably handle binary data and fancy character sets. Data comes through compressed with zlib.DeflateRaw.

Install

This module has been merged into CRC32Stream. No future updates will be made to this module.

Usage

var CRC32Stream = require('deflate-crc32-stream');

var source = fs.createReadStream('file.txt');
var deflate = new DeflateCRC32Stream();

deflate.on('end', function(err) {
  // do something with deflate.digest() here
});

// either pipe it
source.pipe(deflate);

// or write it
deflate.write('string');
deflate.end();

Instance API

Inherits zlib.DeflateRaw methods.

digest()

Returns the checksum digest in unsigned form.

hex()

Returns the hexadecimal representation of the checksum digest. (ie E81722F0)

size(compressed)

Returns the raw uncompressed size/length of passed-through data.

If compressed is true, it returns compressed length instead.

Instance Options

Inherits zlib.DeflateRaw options.

Things of Interest

Keywords

FAQs

Last updated on 26 Aug 2014

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