mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-14 15:41:30 +00:00
* Beginning of cleanup * More cleanup * More cleanup * Enc cleanup * client manager cleanup * client cleanup * More cleanup * More cleanup * Cleanup * More cleanup, account context, account management * Remove positional fmt bindings * Use LoginAccountContext * Update loginserver_webserver.cpp * Remove comments * Port CreateLoginServerAccount to repositories * More cleanup * More cleanup * More cleanup * More cleanup * Remove a ton of functions * More cleanup * More cleanup * More cleanup * Cleanup SendClientAuthToWorld * Consolidate world server logic * Update login_accounts_repository.h * Update login_accounts_repository.h * Move api tokens to repositories * Cleanup options * Move everything else to repositories * Update account_management.cpp * uint64 account * Update login_schema.sql * Fix * Update world_server.cpp * auto
63 lines
1.7 KiB
C++
63 lines
1.7 KiB
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include "../common/types.h"
|
|
#include "login_types.h"
|
|
#include "../common/eqemu_logsys.h"
|
|
#include "../common/strings.h"
|
|
|
|
enum EncryptionMode {
|
|
EncryptionModeMD5 = 1,
|
|
EncryptionModeMD5PassUser = 2,
|
|
EncryptionModeMD5UserPass = 3,
|
|
EncryptionModeMD5Triple = 4,
|
|
EncryptionModeSHA = 5,
|
|
EncryptionModeSHAPassUser = 6,
|
|
EncryptionModeSHAUserPass = 7,
|
|
EncryptionModeSHATriple = 8,
|
|
EncryptionModeSHA512 = 9,
|
|
EncryptionModeSHA512PassUser = 10,
|
|
EncryptionModeSHA512UserPass = 11,
|
|
EncryptionModeSHA512Triple = 12,
|
|
EncryptionModeArgon2 = 13,
|
|
EncryptionModeSCrypt = 14
|
|
};
|
|
|
|
namespace CryptoHash {
|
|
const int md5_hash_length = 32;
|
|
const int sha1_hash_length = 40;
|
|
const int sha512_hash_length = 128;
|
|
}
|
|
|
|
std::string GetEncryptionByModeId(uint32 mode);
|
|
const char *eqcrypt_block(const char *buffer_in, size_t buffer_in_sz, char *buffer_out, bool enc);
|
|
std::string eqcrypt_hash(const std::string &username, const std::string &password, int mode);
|
|
bool eqcrypt_verify_hash(const std::string &username, const std::string &password, const std::string &pwhash, int mode);
|
|
|
|
struct EncryptionResult {
|
|
std::string password;
|
|
int mode = 0;
|
|
std::string mode_name;
|
|
};
|
|
|
|
static EncryptionResult EncryptPasswordFromContext(LoginAccountContext c, int mode = EncryptionModeSCrypt)
|
|
{
|
|
if (mode == 0) {
|
|
LogError("Encryption mode not set!");
|
|
return {};
|
|
}
|
|
|
|
EncryptionResult r;
|
|
r.password = eqcrypt_hash(
|
|
c.username,
|
|
c.password,
|
|
mode
|
|
);
|
|
r.mode = mode;
|
|
r.mode_name = GetEncryptionByModeId(r.mode);
|
|
|
|
LogInfo("Encrypted password for user [{}] using mode [{}] ({})", c.username, r.mode_name, r.mode);
|
|
|
|
return r;
|
|
}
|