An open API service indexing awesome lists of open source software.

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

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:
![Example Password Hash](http://i.imgur.com/SohkkuJ.png)

## 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
```