feat(net): process CMD_AUTH_LOGON_CHALLENGE command

This commit is contained in:
fallenoak 2023-01-08 22:40:29 -06:00 committed by GitHub
parent 4d63d1ea8b
commit 59a0883529
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 232 additions and 1 deletions

View file

@ -22,3 +22,9 @@ int32_t SRP6_Client::BeginAuthentication(const char* accountName, const char* pa
return 0;
}
int32_t SRP6_Client::CalculateProof(const uint8_t* largeSafePrime, uint32_t largeSafePrimeLen, const uint8_t* generator, uint32_t generatorLen, const uint8_t* salt, uint32_t saltLen, const uint8_t* publicKey, uint32_t publicKeyLen, SRP6_Random& random) {
// TODO
return 0;
}