Information structure of the division of a secret M from N.

interface MofNSplit {
    secret: Buffer;
    entropy: Buffer;
    parts: Buffer[];
}

Properties

Properties

secret: Buffer

A secret that has been divided into several parts.

entropy: Buffer

Entropy data returned by the HSM. It is not necessary for the M of N operation. It can be used, for example, as a seed in KDF operations.

parts: Buffer[]

Parts generated in the M of N.