| 1090 | } |
| 1091 | |
| 1092 | std::vector<uint8_t> CLI::parsePublicKey(const std::string &pubkey) const { |
| 1093 | // Parse a 32-byte public key from hex |
| 1094 | return fromHex(pubkey); |
| 1095 | } |
| 1096 | |
| 1097 | std::vector<uint8_t> CLI::parseSignature(const std::string &sig) const { |
| 1098 | // Parse a signature as a vector of 32-byte arrays from hex |