/** * KeyStore storage format (web3 secret storage format) */ export interface KeyStore { version: number; id: string; crypto: { ciphertext: string; cipherparams: { iv: string; }; cipher: string; kdf: string; kdfparams: { dklen: number; salt: string; c: number; prf: string; }; /** Must use sha3 according to web3 secret storage spec. */ mac: string; }; }