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;
}

The Keystore interface. Represents the structure of a keystore object.

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;
      }
      • 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

Generated using TypeDoc