node-ssha256
Advanced tools
Node module to create ssha256 hashes
Weekly downloads
Readme
Node Module to create ssha256 hashes
npm install node-ssha256
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
}
FAQs
Node module to create ssha256 hashes
The npm package node-ssha256 receives a total of 456 weekly downloads. As such, node-ssha256 popularity was classified as not popular.
We found that node-ssha256 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.