Skip to content

AlyRagab/hashing-password

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 database
  • http://localhost:8080/password => POST endpoint

Dependencies: