| 228 | } |
| 229 | |
| 230 | bool XOnlyPubKey::IsFullyValid() const |
| 231 | { |
| 232 | secp256k1_xonly_pubkey pubkey; |
| 233 | return secp256k1_xonly_pubkey_parse(secp256k1_context_static, &pubkey, m_keydata.data()); |
| 234 | } |
| 235 | |
| 236 | bool XOnlyPubKey::VerifySchnorr(const uint256& msg, std::span<const unsigned char> sigbytes) const |
| 237 | { |