| import { Service as Utility } from '@n8n/di'; | |
| import { compare, hash } from 'bcryptjs'; | |
| const SALT_ROUNDS = 10; | |
| () | |
| export class PasswordUtility { | |
| async hash(plaintext: string) { | |
| return await hash(plaintext, SALT_ROUNDS); | |
| } | |
| async compare(plaintext: string, hashed: string) { | |
| return await compare(plaintext, hashed); | |
| } | |
| } | |