@qualithm/kafka-client - v0.1.6
    Preparing search index...

    Type Alias ScramCredentialUpsertion

    A SCRAM credential upsertion (create or update) entry.

    type ScramCredentialUpsertion = {
        iterations: number;
        mechanism: number;
        name: string;
        salt: Uint8Array;
        saltedPassword: Uint8Array;
        taggedFields?: readonly TaggedField[];
    }
    Index

    Properties

    iterations: number

    The number of iterations used in the SCRAM credential.

    mechanism: number

    The SCRAM mechanism (1=SCRAM-SHA-256, 2=SCRAM-SHA-512).

    name: string

    The user name.

    A random salt used to compute the hash of the password.

    saltedPassword: Uint8Array

    The salted password. When provided, the broker uses this directly instead of computing it from a plaintext password.

    taggedFields?: readonly TaggedField[]

    Tagged fields.