modulepackage
0.0.0-20220210075956-6089db4d0bfd
Repository: https://github.com/alyragab/hashing-password.git
Documentation: pkg.go.dev
# README
hashing-password
An API for hashing password in PostgreSQL with Golang
Using PostgreSQL to store Encrypted string (can be passwords ideally) using Salt secret
- How it works ?
- Just executing the Docker Compose file after adding the proper Env Vars.
- Login to Database to create table like below and for sure we can use something like Gorm:
create table hashed_password(
password varchar(100) not null
);
- Test it :)
curl -d "password123" -X POST http://localhost:8080/password
- Check the database
select * from hashed_password;
- EndPoints
localhost:8080/health
=> Health status with databasehttp://localhost:8080/password
=> POST endpoint
Dependencies:
# Packages
No description provided by the author