🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

json-hash

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

json-hash

Compute JSON hash.

1.2.0
latest
Source
npm
Version published
Weekly downloads
3.6K
-13.69%
Maintainers
1
Weekly downloads
 
Created
Source

Summary

Generates hash for JSON objects.

Usage

// If you're not on babel use:
// require('babel/polyfill')

npm install json-hash

var assert = require('assert')
var hash = require('json-hash')

// hash.digest(any, options?)
assert.equal(hash.digest({foo:1,bar:1}), hash.digest({bar:1,foo:1}))

We're compatible with browserify by using a JavaScript implementation of SHA1.

If you want to use nodejs one, pass hash.digest(foo, { crypto: require('crypto') }).

Changes

  • 2.0.0 - defaults to internal js implementation of sha1, pass { crypto: require('crypto') } to use nodejs one.

Keywords

json

FAQs

Package last updated on 07 Jul 2016

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