Type alias KeyRingOptions

KeyRingOptions: {
    passwordMemLimit?: PasswordMemLimit;
    passwordOpsLimit?: PasswordOpsLimit;
    strictMemoryLock: boolean;
} & (ObjectEmpty | {
    recoveryCode: RecoveryCode;
} | {
    privateKey: PrivateKey;
} | {
    privateKeyPath: string;
})

Options for the KeyRing

Type declaration

Generated using TypeDoc