Socket
Socket
Sign inDemoInstall

hash-stream-validation

Package Overview
Dependencies
0
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    hash-stream-validation

Hash a stream of data, then validate


Version published
Weekly downloads
676K
increased by4.25%
Maintainers
1
Install size
9.98 kB
Created
Weekly downloads
 

Readme

Source

hash-stream-validation

Hash a stream of data, then validate

$ npm install --save hash-stream-validation
var hashStreamValidation = require('hash-stream-validation');

var validateStream = hashStreamValidation();

fs.createReadStream(filePath)
  .pipe(validateStream)
  .on('data', function() { /*... */ })
  .on('end', function() {
    validateStream.test('md5', /*checksum*/);
  });

Do this for faster crc32c computation

If the speeds are too slow for your use, this module will try to require fast-crc32c. We chose not to make it an optionalDependency because npm's scary warning output confuses users into thinking their hard drive was just erased.

$ npm install --save fast-crc32c

Use Case

After a successful upload to a Google Cloud Storage bucket, the API will respond with the hash of data it has received. During our upload, we can run the data through this module, then confirm after the upload if we both arrived at the same results. If not, we know something went wrong during the transmission.

API

validateStream = hashStreamValidation([opts])

opts.crc32c
  • Type: Boolean
  • Default: true

Enable crc32c hashing via sse4_crc32.*

  • Note: Any issues installing this module on your system should be opened at their repository.
opts.md5
  • Type: Boolean
  • Default: true

Enable MD5 hashing.

validateStream.test(algo, sum)

algo
  • Type: String

The alogrithm to test the sum against ('crc32c' or 'md5').

sum
  • Type: String

The base64-encoded sum to validate.

Keywords

FAQs

Last updated on 25 Aug 2020

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