LicenseChallengeResponse type

Licensing V2: a product’s answer to the engine’s license challenge. Certs are Norsk-root-signed JSON envelopes; signatures are Ed25519 by the respective cert holder’s private key.

Signature:

export type LicenseChallengeResponse = {
    studioCert: Uint8Array;
    studioSig: Uint8Array;
    productName: string;
    imageRef: string;
    productCert?: Uint8Array;
    yamlHash?: Uint8Array;
    yamlSig?: Uint8Array;
};