https://github.com/authpass/argon2_ffi
Flutter ffi library for argon2 implementation
https://github.com/authpass/argon2_ffi
Last synced: about 2 months ago
JSON representation
Flutter ffi library for argon2 implementation
- Host: GitHub
- URL: https://github.com/authpass/argon2_ffi
- Owner: authpass
- License: mit
- Created: 2020-02-15T07:08:21.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-08-19T20:47:53.000Z (almost 2 years ago)
- Last Synced: 2025-04-24T05:46:11.304Z (about 2 months ago)
- Language: C
- Size: 272 KB
- Stars: 5
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# argon2_ffi
Simple wrapper around argon2 for usage in https://github.com/authpass/kdbx.dart
## To compile
(Use cmake from android sdk `sdk/cmake/3.10.2.4988404/bin/cmake`)
```
cd ios/Classes
cmake .
cmake --build .
```### Using docker:
```
docker run -v `pwd`:/build --rm rikorose/gcc-cmake bash -c "cd /build/ios/Classes && cmake . && cmake --build ."
```