/** * A BBS+ key pair */ export interface BbsKeyPair { /** * Raw public key value for the key pair */ readonly publicKey: Uint8Array; /** * Raw secret/private key value for the key pair */ readonly secretKey?: Uint8Array; /** * Number of messages that can be sign */ readonly messageCount: number; }