包详细信息

crc32c-stream

Get the crc32c calculation from a stream

crc32c, hash, stream

自述文件

crc32c-stream Build Status

Get the crc32c calculation from a stream.

$ npm install --save crc32c-stream
var crcStream = require('crc32c-stream');
var fs = require('fs');

crcStream(fs.createReadStream('/unicorns.txt'), function(err, results) {
  if (!err) {
    // results => rw==
  }
});

API

crc32cStream(stream, callback)

input

Required Type: string

Lorem ipsum.

callback(err, results)

Required Type: Function

err

Type: Error

An error emitted from the provided stream.

results

Type: String

The base64 encoded results of the calculation.