0.1.1 • Published 10 years ago

node-ssha256 v0.1.1

Weekly downloads
491
License
-
Repository
-
Last release
10 years ago

node-ssha256

Node Module to create ssha256 hashes

Installation

npm install node-ssha256

Usage

Create a base64 encoded hash

var ssha256 = require('node-ssha256');
message = "hallo"
hash = ssha256.create(message);

Check if message matches hash

var ssha256 = require('node-ssha256');
message = "hallo"
hash = "{SSHA256}WosKbpN2dI/q4/wtG5AW82jFPeFNqXGbSfmd/ooJrRpiYWVh"
if(ssha256.check(message)) {
    // message matched
} else {
    // not matching
}