From cee2aa92f9244d1dcfc65c5553f5d7f0bbfb3871 Mon Sep 17 00:00:00 2001 From: Sheogorath Date: Tue, 20 Nov 2018 01:26:10 +0100 Subject: Switch scrypt library to a successor Since our previous scrypt library is unmaintained since 3 years, it's time to look for an alternative. A refactoring towards another password algorithm was worked on and this is probably still the way to go. But for now the successor of our previous library should already be enough. https://www.npmjs.com/package/scrypt (old library) https://github.com/ml1nk/node-scrypt (new library) Signed-off-by: Sheogorath --- lib/models/user.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/models/user.js') diff --git a/lib/models/user.js b/lib/models/user.js index 2ebf6d06..648db73e 100644 --- a/lib/models/user.js +++ b/lib/models/user.js @@ -1,7 +1,7 @@ 'use strict' // external modules var Sequelize = require('sequelize') -var scrypt = require('scrypt') +var scrypt = require('@mlink/scrypt') // core var logger = require('../logger') -- cgit v1.2.3