You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
const { sha512 } = require('js-sha512');
|
|
|
|
const generateHash = (phrase) => sha512(phrase);
|
|
const matchesHash = (phrase, hash) => sha512(phrase) === hash;
|
|
|
|
module.exports = {
|
|
generateHash,
|
|
matchesHash,
|
|
}; |