UNPKG

alapa

Version:

A cutting-edge web development framework designed to revolutionize the way developers build modern web applications.

7 lines (6 loc) 305 B
export declare class HashPassword { static encrypt(password: string): Promise<string>; static verify(password: string, hashedPassword: string): Promise<boolean>; static hash(password: string): Promise<string>; static validate(password: string, hashedPassword: string): Promise<boolean>; }