UNPKG

@tomei/sso

Version:
5 lines (4 loc) 153 B
export interface IPasswordHashService { hashPassword(password: string): Promise<string>; verify(password: string, hash: string): Promise<boolean>; }