- keystoreEncrypt(privateKeyLike, chainCodeLike, password): Promise<{
id: string;
crypto: {
ciphertext: string;
cipherparams: {
iv: string;
};
cipher: string;
kdf: string;
kdfparams: {
n: number;
r: number;
p: number;
dklen: number;
salt: string;
};
mac: string;
};
}> Returns Promise<{
id: string;
crypto: {
ciphertext: string;
cipherparams: {
iv: string;
};
cipher: string;
kdf: string;
kdfparams: {
n: number;
r: number;
p: number;
dklen: number;
salt: string;
};
mac: string;
};
}>