https://github.com/kkirsche/gopasswordhasher
A golang based password hasher which allows you to create crypt / password hashes
https://github.com/kkirsche/gopasswordhasher
Last synced: about 2 months ago
JSON representation
A golang based password hasher which allows you to create crypt / password hashes
- Host: GitHub
- URL: https://github.com/kkirsche/gopasswordhasher
- Owner: kkirsche
- License: apache-2.0
- Created: 2016-04-22T02:10:31.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-04-24T12:05:52.000Z (about 10 years ago)
- Last Synced: 2025-03-06T15:28:11.489Z (over 1 year ago)
- Language: Go
- Homepage: https://hasher.pw
- Size: 5.94 MB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Go Password Hasher
A Golang based password hasher, currently supporting SHA-512, SHA-256, APR1-MD5, and MD5 which allows you to create password hashes for use in Linux or deployment tools like Ansible.
Example Of Hashed Password Output Page:

## Installation
```
go get github.com/kkirsche/goPasswordHasher
```
## Use
### Development
```
go run main.go
```
### Production
```
go build -race main.go
./main
```
or
```
go install -race
goPasswordHasher
```