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.
9 lines
211 B
JavaScript
9 lines
211 B
JavaScript
6 years ago
|
const { sha512 } = require('js-sha512');
|
||
|
|
||
|
const generateHash = (phrase) => sha512(phrase);
|
||
|
const matchesHash = (phrase, hash) => sha512(phrase) === hash;
|
||
|
|
||
|
module.exports = {
|
||
|
generateHash,
|
||
|
matchesHash,
|
||
|
};
|