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

322 B

Compiling

Compile on Linux or in WSL.

Compile libsodium for the host:

cd ../libsodium
./configure --disable-shared --enable-static --prefix="$PWD/install-host"
make -j
make install

Then compile and run password-hash:

cd ../password-hash
cargo run --release [--target x86_64-unknown-linux-gnu]