/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Request body for `POST /waas/aleo/prover/{network}/prove/encrypted`. * Iframe sends the libsodium `crypto_box_seal` ciphertext of the * Provable SDK's `ProvingRequest`, paired with the `key_id` returned * by `/pubkey`. Redcoast forwards verbatim; the plaintext never * leaves the iframe. * @export * @interface AleoProverEncryptedRequest */ export interface AleoProverEncryptedRequest { /** * Base64-encoded libsodium-sealed proving request. * @type {string} * @memberof AleoProverEncryptedRequest */ ciphertext: string; /** * The key_id from the matching `/pubkey` response. * @type {string} * @memberof AleoProverEncryptedRequest */ keyId: string; } export declare function AleoProverEncryptedRequestFromJSON(json: any): AleoProverEncryptedRequest; export declare function AleoProverEncryptedRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AleoProverEncryptedRequest; export declare function AleoProverEncryptedRequestToJSON(value?: AleoProverEncryptedRequest | null): any;