@wireapp/core-crypto
    Preparing search index...

    Interface CommitBundle

    Data shape for a MLS generic commit + optional bundle (aka stapled commit & welcome)

    interface CommitBundle {
        commit: Uint8Array;
        encryptedMessage?: Uint8Array<ArrayBufferLike>;
        groupInfo: GroupInfoBundle;
        welcome?: Welcome;
    }
    Index

    Properties

    commit: Uint8Array

    TLS-serialized MLS Commit that needs to be fanned out to other (existing) members of the conversation

    encryptedMessage?: Uint8Array<ArrayBufferLike>

    An encrypted message to fan out to all other conversation members in the new epoch

    groupInfo: GroupInfoBundle

    MLS GroupInfo which is required for joining a group by external commit

    welcome?: Welcome

    Optional TLS-serialized MLS Welcome message that needs to be fanned out to the clients newly added to the conversation