Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/foomo/htpasswd

golang htpasswd utilities
https://github.com/foomo/htpasswd

Last synced: about 1 month ago
JSON representation

golang htpasswd utilities

Awesome Lists containing this project

README

        

![Travis CI](https://travis-ci.org/foomo/htpasswd.svg?branch=master)

# This is a simple utility library to manipulate htpasswd files

If you want to authenticate against a htpasswd file use something like https://github.com/abbot/go-http-auth .

## Supported hashing algorithms:

- apr1 (do not use except for legacy support situations)
- sha (do not use except for legacy support situations)
- bcrypt

## This is what you can

Set user credentials in a htpasswd file:

```Go
file := "/tmp/demo.htpasswd"
name := "joe"
password := "secret"
err := htpasswd.SetPassword(file, name, password, htpasswd.HashBCrypt)
```

Remove a user:

```Go
err := htpasswd.RemoveUser(file, name)
```

Read user hash table:

```Go
passwords, err := htpasswd.ParseHtpasswdFile(file)
```

Have fun.