CapabilityTEE represents the node's TEE capability.

interface NodeCapabilityTEE {
    attestation: Uint8Array;
    hardware: number;
    rak: Uint8Array;
    rek?: Uint8Array;
}

Properties

attestation: Uint8Array

Attestation.

hardware: number

TEE hardware type.

rak: Uint8Array

Runtime attestation key.

rek?: Uint8Array

Runtime encryption key.