mirror of
https://github.com/hilch/Bcrypt.cpp.git
synced 2026-08-26 19:26:33 +02:00
fff9aa86b07598d46255bd94dbafb88fed61ffa7
Bcrypt.cpp
A C++ wrapper around bcrypt (origin: Open BSD) password hashing
How to use
Here an example how to use this wrapper class
#include "bcrypt.h"
#include <iostream>
int main(){
std::string password = "test";
std::string hash = BCrypt::generateHash(password);
std::cout << BCrypt::validatePassword(password,hash) << std::endl;
std::cout << BCrypt::validatePassword("test1",hash) << std::endl;
return 0;
}
Languages
C++
85.5%
C
13.5%
CMake
1%