export interface EncryptionServiceInterface { hashPassword(password: string): Promise; comparePassowrd(password: string, hash: string): Promise; }