CS计算机代考程序代写 #pragma once

#pragma once

#include
#include

/// AuthTableEntry represents one user stored in the authentication table
struct AuthTableEntry {
std::string username; // The name of the user
std::vector salt; // The salt to use with the password
std::vector pass_hash; // The hashed password
std::vector content; // The user’s content
};