UNPKG

@citrineos/data

Version:

The OCPP data module which includes all persistence layer implementation.

7 lines (6 loc) 249 B
import { Pbkdf2 } from './Pbkdf2'; export declare class CryptoUtils { static passwordHashAlgorithm: Pbkdf2; static getPasswordHash(password: string): string; static isPasswordMatch(storedValue: string, inputPassword: string): boolean; }