UNPKG

n8n

Version:

n8n Workflow Automation Tool

6 lines (5 loc) 195 B
export declare class PasswordUtility { hash(plaintext: string): Promise<string>; compare(plaintext: string, hashed: string): Promise<boolean>; validate(plaintext?: string): string; }