|
|
|
@ -1,4 +1,4 @@
|
|
|
|
|
const { sha512 } = require('js-sha512');
|
|
|
|
|
const crypto = require('crypto');
|
|
|
|
|
|
|
|
|
|
const ERRORS = {
|
|
|
|
|
TYPE: 'Password must be a string',
|
|
|
|
@ -6,6 +6,12 @@ const ERRORS = {
|
|
|
|
|
CHARACTER: 'Password must only contain letters, numbers and symbols',
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const sha512 = text => {
|
|
|
|
|
const hash = crypto.createHash('sha512');
|
|
|
|
|
hash.update(text.trim());
|
|
|
|
|
return hash.digest('hex');
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const generateHash = phrase => phrase && sha512(phrase.trim());
|
|
|
|
|
const matchesHash = (phrase, hash) =>
|
|
|
|
|
phrase && sha512(phrase.trim()) === hash.trim();
|
|
|
|
@ -29,6 +35,7 @@ const validatePassword = (phrase, i18n) => {
|
|
|
|
|
return null;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
|
generateHash,
|
|
|
|
|
matchesHash,
|
|
|
|
|