https://github.com/yazatamorph/pinkdf2
Gleam bindings to fast_pbkdf2 NIF for PBKDF2 (Password-Based Key Derivation Function 2) on Erlang.
https://github.com/yazatamorph/pinkdf2
cryptography erlang gleam
Last synced: about 1 year ago
JSON representation
Gleam bindings to fast_pbkdf2 NIF for PBKDF2 (Password-Based Key Derivation Function 2) on Erlang.
- Host: GitHub
- URL: https://github.com/yazatamorph/pinkdf2
- Owner: yazatamorph
- License: apache-2.0
- Created: 2025-02-12T19:10:53.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-21T14:10:08.000Z (over 1 year ago)
- Last Synced: 2025-02-21T14:38:46.791Z (over 1 year ago)
- Topics: cryptography, erlang, gleam
- Language: Gleam
- Homepage:
- Size: 18.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pinkdf2
[](https://hex.pm/packages/pinkdf2)
[](https://hexdocs.pm/pinkdf2/)
Gleam bindings to the heavily-optimized [fast_pbkdf2](https://github.com/esl/fast_pbkdf2) NIF for PBKDF2 (Password-Based Key Derivation Function 2) on Erlang.
```sh
gleam add pinkdf2@2
```
```gleam
import pinkdf2
pub fn main() {
let assert Ok(key) = pinkdf2.with_defaults("password", pinkdf2.get_salt())
}
```
Further documentation can be found at .