Keystore: {
crypto: {
cipher: string;
cipherparams: {
iv: string;
};
ciphertext: string;
kdf: string;
kdfparams: {
c: number;
dklen: number;
prf: string;
salt: string;
};
mac: string;
};
id: string;
meta: string;
version: number;
}
Type declaration
crypto: {
cipher: string;
cipherparams: {
iv: string;
};
ciphertext: string;
kdf: string;
kdfparams: {
c: number;
dklen: number;
prf: string;
salt: string;
};
mac: string;
}
cipher: string
cipherparams: {
iv: string;
}
ciphertext: string
kdf: string
kdfparams: {
c: number;
dklen: number;
prf: string;
salt: string;
}
c: number
dklen: number
prf: string
salt: string
mac: string
id: string
meta: string
version: number
The Keystore interface. Represents the structure of a keystore object.