node-ssha256

Node module to create ssha256 hashes

Usage no npm install needed!

<script type="module">
  import nodeSsha256 from 'https://cdn.skypack.dev/node-ssha256';
</script>

README

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
}