Socket
Book a DemoInstallSign in
Socket

adler32-js

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

adler32-js

adler32-js ----------

latest
Source
npmnpm
Version
1.0.2
Version published
Maintainers
1
Created
Source

adler32-js

This is a coffee-script port of adler32.c from zlib, written by Mark Adler. Port by Jason Walton.

Installation

npm install --save adler32-js

Usage

adler32-js complies to the Hash interface from the node.js crypto package:

Adler32 = require('adler32-js');
hash = new Adler32();
hash.update('Hello world!');
console.log("Digest: ", hash.digest('hex'));

Unlike crypto Hash objects, Adler32 object can be recycled using the reset() method.

If you are after the raw integer value, you can also use:

hash = new Adler32();
hash.update('Hello world!');
console.log("Digest as int: ", hash.result());

Helper functions are also available for hashing strings, files, and streams:

Adler32.fromStream(stream, {encoding: 'hex'}, function(err, result) {
    console.log("Digest", result);
});

Adler32.fromFile('./foo.txt', {encoding: 'hex'}, function(err, result) {
    console.log("Digest", result);
});

result = Adler32.fromFileSync('./foo.txt', {encoding: 'hex'});

result = Adler32.fromString('Hello world!');

Keywords

checksum

FAQs

Package last updated on 13 Sep 2014

Did you know?

Socket

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