Documentation
    Preparing search index...

    Interface DecryptOptions

    interface DecryptOptions {
        checkShareConsistency?: boolean;
        data: Uint8Array;
        sessionKey: SessionKey;
        txBytes: Uint8Array;
    }
    Index

    Properties

    checkShareConsistency?: boolean

    Whether to check share consistency.

    data: Uint8Array

    The encrypted bytes to decrypt.

    sessionKey: SessionKey

    The session key to use.

    txBytes: Uint8Array

    The transaction bytes to use (that calls seal_approve* functions).