Blockchain Commons Components TypeScript Library - v1.0.0-alpha.13
    Preparing search index...

    Type Alias KeyDerivationParams

    KeyDerivationParams:
        | { type: "hkdf"; params: HKDFParams }
        | { type: "pbkdf2"; params: PBKDF2Params }
        | { type: "scrypt"; params: ScryptParams }
        | { type: "argon2id"; params: Argon2idParams }
        | { type: "sshagent"; params: SSHAgentParams }

    Union type representing key derivation parameters.

    Use the method() function to get the derivation method, and lock()/unlock() for key operations.