* proposal for 'Extended Trace' packets. Using 'flags' byte, lower 2 bits, for path hash size.

Esse commit está contido em:
Scott Powell
2025-11-21 15:44:31 +11:00
commit b33d226c58
3 arquivos alterados com 40 adições e 24 exclusões
+3
Ver Arquivo
@@ -23,6 +23,9 @@ public:
bool isHashMatch(const uint8_t* hash) const {
return memcmp(hash, pub_key, PATH_HASH_SIZE) == 0;
}
bool isHashMatch(const uint8_t* hash, uint8_t len) const {
return memcmp(hash, pub_key, len) == 0;
}
/**
* \brief Performs Ed25519 signature verification.