npm.io
1.3.0 • Published 10 years agoCLI

cksum

Licence
MIT
Version
1.3.0
Deps
0
Vulns
0
Weekly
0
Stars
1

cksum

NPM Build Status js-standard-style

JavaScript implementation of cksum

usage

var cksum = require('cksum')

cksum(new Buffer('testwhatever')) // returns buffer (big endian) with 32bit checksum
cksum('test') // converts 'test' to buffer and then calcuates the checksum


readStream.pipe(cksum.stream(function (sum, length) {
  console.log(sum.readUInt32BE(0), len)
}))

Keywords