@shout-sdk/cryptography

Shout cryptography utilities including SHA3 hashing and salting.

Usage no npm install needed!

<script type="module">
  import shoutSdkCryptography from 'https://cdn.skypack.dev/@shout-sdk/cryptography';
</script>

README

@shout-sdk/cryptography

Shout cryptography utilities including SHA3 hashing and salting.

Install

npm i @shout-sdk/cryptography

Example Usage

import { CryptographyUtilities } from '@shout-sdk/cryptography';

const hashedPassword = CryptographyUtilities.hash('supersecretpassword');

const hashedAndSaltedPassword = CryptographyUtilities.saltAndRehash(hashedPassword, saltString);

const answer = CryptographyUtilities.calculateAnswer(question, hashedAndSaltedPassword);