commonform-hash

1.0.1 • Public • Published

commonform-hash

cryptographically hash Common Forms

This package wraps different implementations of SHA-256, one for the browser, via browserify, and the other for Node.js, via the core crypto module.

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

assert.strictEqual(
  hash({ content: [ 'This is a form.' ] }),
  '0cb94c21d8e303ae4785e9433afe33132b4fe76275ae96d9b2d0b10a6fdf716a'
)

assert.strictEqual(
  hash({ conspicuous: 'yes', content: [ 'This is a form.' ] }),
  '76b69d4004186e35b26fb816835a92de5cfa8b1e553e45516b878bb3d35187d5'
)

assert.strictEqual(
  hash({ content: [ 'This is a form.' ], conspicuous: 'yes' }),
  '76b69d4004186e35b26fb816835a92de5cfa8b1e553e45516b878bb3d35187d5'
)

Package Sidebar

Install

npm i commonform-hash

Weekly Downloads

4

Version

1.0.1

License

BlueOak-1.0.0

Unpacked Size

3.93 kB

Total Files

5

Last publish

Collaborators

  • kemitchell