Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 474 Bytes

README.md

File metadata and controls

23 lines (17 loc) · 474 Bytes

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