/** * A request to verify a BBS proof */ export interface BbsVerifyProofRequest { /** * The BBS proof to verify */ readonly proof: Uint8Array; /** * Public key of the signer of the proof to verify */ readonly publicKey: Uint8Array; /** * Revealed messages to verify */ readonly messages: readonly Uint8Array[]; /** * Nonce included in the proof for the un-revealed attributes */ readonly nonce: Uint8Array; } //# sourceMappingURL=BbsVerifyProofRequest.d.ts.map