Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
#ifndef AUTH_H
#define AUTH_H
#include<iostream>
#include<string>
#include<tuple>
#include<vector>
#include<curses.h>
#include<map>
#include "libsqlite.hpp"
using namespace std;
class Authentication
{
public:
void new_user(string, string);
bool loginValidation(string, string);
void change_password(string, string, string);
void delete_user(string , string);
void forget_password(string);
string cipher_encryption(string);
string cipher_decryption(string);
};
#endif