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

#pragma once

#include

#include “../common/bytevec.h”

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

Leave a Reply

Your email address will not be published. Required fields are marked *