API Docs
    Preparing search index...

    Interface Key

    Encryption / decryption key.

    Corresponds to #EXT-X-KEY and #EXT-X-SESSION-KEY tags.

    interface Key {
        format?: string;
        formatVersion?: string;
        iv?: Uint8Array<ArrayBufferLike>;
        method: string;
        uri?: string;
    }
    Index

    Properties

    format?: string

    Key format identifier.

    "identity"

    formatVersion?: string

    Key format version(s), separated by /.

    iv?: Uint8Array<ArrayBufferLike>

    Initialization Vector.

    Must be exactly 128 bits (16 bytes) when present.

    method: string

    Encryption method.

    Valid values: "NONE", "AES-128", "SAMPLE-AES".

    uri?: string

    URI to obtain the key file.