Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/yazatamorph/gleam-pbkdf2
- Owner: yazatamorph
- License: apache-2.0
- Created: 2025-02-12T19:10:53.000Z (3 days ago)
- Default Branch: main
- Last Pushed: 2025-02-12T19:16:31.000Z (3 days ago)
- Last Synced: 2025-02-12T20:26:25.290Z (3 days ago)
- Topics: cryptography, erlang, gleam
- Language: Gleam
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 pbkdf2pub 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
```