public static interface SignerOuterClass.VerifyMessageReqOrBuilder
extends com.google.protobuf.MessageOrBuilder
| Modifier and Type | Method and Description | 
|---|---|
| boolean | getIsSchnorrSig()
Specifies if the signature is a Schnorr signature. | 
| com.google.protobuf.ByteString | getMsg()
 The message over which the signature is to be verified. | 
| com.google.protobuf.ByteString | getPubkey()
The public key the signature has to be valid for. | 
| com.google.protobuf.ByteString | getSignature()
The fixed-size LN wire encoded signature to be verified over the given
message. | 
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneofcom.google.protobuf.ByteString getMsg()
The message over which the signature is to be verified. When using REST, this field must be encoded as base64.
bytes msg = 1;com.google.protobuf.ByteString getSignature()
The fixed-size LN wire encoded signature to be verified over the given message. When using REST, this field must be encoded as base64.
bytes signature = 2;com.google.protobuf.ByteString getPubkey()
The public key the signature has to be valid for. When using REST, this field must be encoded as base64. If the is_schnorr_sig option is true, then the public key is expected to be in the 32-byte x-only serialization according to BIP-340.
bytes pubkey = 3;boolean getIsSchnorrSig()
Specifies if the signature is a Schnorr signature.
bool is_schnorr_sig = 4;