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

    Interface SchnorrSignOptions

    Options for schnorr.sign: explicit aux-rand bytes, or a generator to draw them from.

    interface SchnorrSignOptions {
        auxRand?: Uint8Array<ArrayBufferLike>;
        rng?: RandomNumberGenerator;
    }
    Index
    auxRand?: Uint8Array<ArrayBufferLike>

    32 bytes of auxiliary randomness (BIP-340). Takes precedence over rng.

    rng?: RandomNumberGenerator

    Generator to draw 32 aux-rand bytes from. Default: secure.