/** * A request to verify a BBS signature for a set of messages */ export interface BbsVerifyRequest { /** * Public key of the signer of the signature */ readonly publicKey: Uint8Array; /** * Header message that was included in the signature */ readonly header?: Uint8Array; /** * Raw signature value */ readonly signature: Uint8Array; /** * Messages that were signed to produce the signature */ readonly messages?: readonly Uint8Array[]; }