acid/firmware/password-hash/README.md
2026-02-08 21:04:28 +01:00

18 lines
322 B
Markdown

# Compiling
Compile on Linux or in WSL.
Compile libsodium for the host:
```bash
cd ../libsodium
./configure --disable-shared --enable-static --prefix="$PWD/install-host"
make -j
make install
```
Then compile and run password-hash:
```bash
cd ../password-hash
cargo run --release [--target x86_64-unknown-linux-gnu]
```