#ifndef ENCRYPT_H #define ENCRYPT_H #pragma once #include #include #include #include using std::string; string hash_password(string password); bool verify_password(string hashed_password, string unhashed_password); #endif