@blockchaincommons/sskr - v1.0.0-beta.3
    Preparing search index...

    Interface SskrShare

    One SSKR share. All fields are wire; the objects generateShares and parseShare return are frozen.

    interface SskrShare {
        identifier: number;
        groupIndex: number;
        groupThreshold: number;
        groupCount: number;
        memberIndex: number;
        memberThreshold: number;
        value: Secret;
    }
    Index
    identifier: number

    16-bit random identifier shared by every share of one split.

    groupIndex: number

    Position of the share's group in the spec, 0..=15.

    groupThreshold: number

    Groups needed to recover, 1..=16.

    groupCount: number

    Groups in the split, 1..=16.

    memberIndex: number

    Position of the share within its group, 0..=15.

    memberThreshold: number

    Members of the group needed to recover its share, 1..=16.

    value: Secret

    The share's bytes, a Secret of the master secret's length.