UNPKG

@citrineos/data

Version:

The OCPP data module which includes all persistence layer implementation.

10 lines (9 loc) 375 B
import { PasswordHashAlgorithm } from './PasswordHashAlgorithm'; export declare class Pbkdf2 implements PasswordHashAlgorithm { iterations: number; keyLen: number; digest: string; getSaltedHash(password: string): string; isHashMatch(storedValue: string, inputPassword: string): boolean; getHashFromStringWithSalt(str: string, salt: string): string; }