Skip to content

An ASP.NET Core Identity password hasher implemented in go.

License

Notifications You must be signed in to change notification settings

Balder1840/password-hasher

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

password-hasher

An ASP.NET Core Identity password hasher implemented in go.

How to build

go build -ldflags="-w -s" -o hasher.exe main.go

for cross compile, e.g., build a linux binary on windows:

set GOOS=linux
set GOARCH=arm
set CGO_ENABLED=0

go build -ldflags="-w -s" -o hasher_arm.exe main.go

Usage

hasher.exe your-password

About

An ASP.NET Core Identity password hasher implemented in go.

Resources

License

Stars

Watchers

Forks

Languages