kaios-types
    Preparing search index...

    Interface SEChannel

    Represents a channel to a Secure Element applet. Preference: "dom.secureelement.enabled"

    secureelement-manage

    CertifiedApps

    interface SEChannel {
        isClosed: boolean;
        openResponse: Uint8Array<ArrayBuffer> | null;
        session: SESession;
        type: SEChannelType;
        close(): Promise<void>;
        transmit(command?: SECommand): Promise<SEResponse>;
    }
    Index

    Properties

    isClosed: boolean

    Whether the channel is closed.

    openResponse: Uint8Array<ArrayBuffer> | null

    The response from the open command.

    session: SESession

    The session associated with this channel.

    The type of the channel.

    Methods