Как добавить пользовательскую аутентификацию в аутентификации feathersjs с SHA256 для пароля - PullRequest
0 голосов
/ 31 января 2019

Я заметил, что аутентификация Feathersjs использует bcrypt для пароля.

Это код в hooks.js

const { authenticate } = require('@feathersjs/authentication').hooks;

const {
  hashPassword, protect
} = require('@feathersjs/authentication-local').hooks;


module.exports = {
  before: {
    all: [],
    find: [ authenticate('jwt') ],
    get: [ authenticate('jwt') ],
    create: [ hashPassword() ],
    update: [ hashPassword(),  authenticate('jwt') ],
    patch: [ hashPassword(),  authenticate('jwt') ],
    remove: [ authenticate('jwt') ]
  },

  after: {
    all: [ 
      // Make sure the password field is never sent to the client
      // Always must be the last hook
      protect('password')
    ],
    find: [],
    get: [],
    create: [],
    update: [],
    patch: [],
    remove: []
  },

  error: {
    all: [],
    find: [],
    get: [],
    create: [],
    update: [],
    patch: [],
    remove: []
  }
};

Теперь я хочу изменить хэш-пароль по умолчанию на sha256, а не bycrpt.У кого-нибудь есть решение?

Спасибо

...