mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-06-02 13:12:45 -04:00
include/game/protocol_constants.hpp declared SESSION_KEY_HEX_LENGTH=40 but the constant was never consumed anywhere in src/ or include/. The name was also wrong: WoW SRP session keys are 40 *bytes* (320 bits → 80 hex chars), so neither interpretation of the constant matched its name. Removed rather than renamed since no one references it. If a length constant is added back later, it should be SESSION_KEY_BYTE_LENGTH=40 to match how src/auth/auth_handler.cpp:390 logs the size.