#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 users content
};
Reviews
There are no reviews yet.