mdb-reader
Version:
JavaScript library to read data from Access databases
9 lines (8 loc) • 394 B
TypeScript
import type { CryptoAlgorithm } from "./CryptoAlgorithm.js";
export interface EncryptionVerifier {
readonly salt: Buffer;
readonly encryptionVerifier: Buffer;
readonly encryptionVerifierHashSize: number;
readonly encryptionVerifierHash: Buffer;
}
export declare function parseEncryptionVerifier(encryptionProvider: Buffer, cryptoAlgorithm: CryptoAlgorithm): EncryptionVerifier;