Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/yazatamorph/gleam-pbkdf2

A Gleam implementation of PBKDF2 (Password-Based Key Derivation Function 2) for Erlang.
https://github.com/yazatamorph/gleam-pbkdf2

cryptography erlang gleam

Last synced: 2 days ago
JSON representation

A Gleam implementation of PBKDF2 (Password-Based Key Derivation Function 2) for Erlang.

Awesome Lists containing this project

README

        

# pbkdf2

[![Package Version](https://img.shields.io/hexpm/v/pbkdf2)](https://hex.pm/packages/pbkdf2)
[![Hex Docs](https://img.shields.io/badge/hex-docs-ffaff3)](https://hexdocs.pm/pbkdf2/)

A Gleam implementation of PBKDF2 (Password-Based Key Derivation Function 2) for Erlang. Heavily indebted to [erlang-pbkdf2](github.com/whitelynx/erlang-pbkdf2).

Currently a work in progress!

```sh
gleam add pbkdf2@1
```
```gleam
import pbkdf2

pub fn main() {
// TODO: An example of the project in use
}
```

Further documentation can be found at .

## Development

```sh
gleam run # Run the project
gleam test # Run the tests
```