onvif
    Preparing search index...

    Interface KeyAttribute

    The attributes of a key in the keystore.

    interface KeyAttribute {
        alias?: string;
        extension?: Extension;
        externallyGenerated?: boolean;
        hasPrivateKey?: boolean;
        keyID: string;
        keyStatus: string;
        securelyStored?: boolean;
    }
    Index
    alias?: string

    The client-defined alias of the key.

    extension?: Extension
    externallyGenerated?: boolean

    True if and only if the key was generated outside the device.

    hasPrivateKey?: boolean

    Absent if the key is not a key pair. True if and only if the key is a key pair and contains a private key. False if and only if the key is a key pair and does not contain a private key.

    keyID: string

    The ID of the key.

    keyStatus: string

    The status of the key. The value should be one of the values in the tas:KeyStatus enumeration.

    securelyStored?: boolean

    True if and only if the key is stored in a specially protected hardware component inside the device.