UNPKG

@tomei/sso

Version:
7 lines (6 loc) 296 B
import { IPasswordHashService } from './interfaces/password-hash-service.interface'; export declare class PasswordHashService implements IPasswordHashService { constructor(); hashPassword(password: string): Promise<string>; verify(password: string, hash: string): Promise<boolean>; }