Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/manelli/ex_bcrypt
Elixir wrapper for the OpenBSD bcrypt password hashing algorithm
https://github.com/manelli/ex_bcrypt
bcrypt cryptography elixir password security
Last synced: about 1 month ago
JSON representation
Elixir wrapper for the OpenBSD bcrypt password hashing algorithm
- Host: GitHub
- URL: https://github.com/manelli/ex_bcrypt
- Owner: manelli
- License: mit
- Created: 2016-05-26T23:46:58.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-05-05T20:23:25.000Z (over 3 years ago)
- Last Synced: 2024-11-01T07:33:12.241Z (about 1 month ago)
- Topics: bcrypt, cryptography, elixir, password, security
- Language: Elixir
- Size: 4.88 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- freaking_awesome_elixir - Elixir - Elixir wrapper for the OpenBSD bcrypt password hashing algorithm. (Cryptography)
- fucking-awesome-elixir - ex_bcrypt - Elixir wrapper for the OpenBSD bcrypt password hashing algorithm. (Cryptography)
- awesome-elixir - ex_bcrypt - Elixir wrapper for the OpenBSD bcrypt password hashing algorithm. (Cryptography)
README
# ExBcrypt
**Elixir wrapper for the OpenBSD bcrypt password hashing algorithm.**
[![Build Status](https://travis-ci.org/manelli/ex_bcrypt.svg?branch=master)](https://travis-ci.org/manelli/ex_bcrypt)
## Installation
1. Add ex_bcrypt to your list of dependencies in `mix.exs`:
```elixir
def deps do
[{:ex_bcrypt, "~> 0.0.1"}]
end
```2. Ensure ex_bcrypt is started before your application:
```elixir
def application do
[applications: [:ex_bcrypt]]
end
```## Documentation
API documentation is available at [https://hexdocs.pm/ex_bcrypt](https://hexdocs.pm/ex_bcrypt)