| 198 | } |
| 199 | |
| 200 | bool XOnlyPubKey::IsFullyValid() const |
| 201 | { |
| 202 | secp256k1_xonly_pubkey pubkey; |
| 203 | return secp256k1_xonly_pubkey_parse(secp256k1_context_verify, &pubkey, m_keydata.data()); |
| 204 | } |
| 205 | |
| 206 | bool XOnlyPubKey::VerifySchnorr(const Span<const unsigned char> msg, Span<const unsigned char> sigbytes) const |
| 207 | { |