Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Signed-off-by: Hanno Becker <[email protected]>
  • Loading branch information
hanno-becker committed Dec 23, 2024
1 parent 59cb691 commit c4b5182
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 13 deletions.
16 changes: 4 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,20 +26,12 @@ bounds accesses, nor integer overflows during optimized modular arithmetic.
git clone https://github.com/pq-code-package/mlkem-native.git
cd mlkem-native

# Install base packages
# Make sure to have `make`
sudo apt-get update
sudo apt-get install python3-venv python3-pip make
sudo apt-get install make

# Setup Python environment
python3 -m venv venv
source venv/bin/activate
python3 -m pip install -r requirements.txt

# Build and run base tests
make quickcheck

# Build and run all tests
./scripts/tests all
# Build & run tests
make checkall
```

See [BUILDING.md](BUILDING.md) for more information.
Expand Down
2 changes: 1 addition & 1 deletion test/acvp_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
acvp_keygen_json = f"{acvp_dir}/acvp_keygen_internalProjection.json"
acvp_encapDecap_json = f"{acvp_dir}/acvp_encapDecap_internalProjection.json"

if os.environ.get("EXEC_PREFIX","").strip() != "":
if os.environ.get("EXEC_PREFIX", "").strip() != "":
exec_wrapper = [os.environ["EXEC_PREFIX"].strip()]
else:
exec_wrapper = []
Expand Down

0 comments on commit c4b5182

Please sign in to comment.