Marmot-TS
    Preparing search index...

    Type Alias WelcomeKeyPackageCandidate

    A locally-held key package selected as a candidate for joining from a specific Welcome message. Produced by KeyPackageManager.selectForWelcome and consumed by GroupsManager.joinFromWelcome.

    type WelcomeKeyPackageCandidate = {
        hasMatchingSecret: boolean;
        keyPackageRef: Uint8Array;
        privatePackage: PrivateKeyPackage;
        publicPackage: KeyPackage;
    }
    Index

    Client - Key Package Manager

    hasMatchingSecret: boolean

    Whether this package's ref matches an encrypted secret in the Welcome.

    keyPackageRef: Uint8Array

    The RFC 9420 KeyPackageRef of this package.

    privatePackage: PrivateKeyPackage

    The matching local private material.

    publicPackage: KeyPackage

    The public key package to hand to joinGroup.