Skip to content

Commit

Permalink
Fixed size_bytes assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
xuganyu96 committed Dec 11, 2023
1 parent 1a35b6e commit 9fa993a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions marvin-toolkit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This document describes the procedure for replicating the analysis for the Marvi
docker build -t marvin:latest .
docker run -d --rm \
--name marvin \
-v /path/to/keys:/home/rustcrypto/marvin-toolkit/keys \
-v /path/to/results:/home/rustcrypto/marvin-toolkit/results \
marvin:latest -h
-v /home/ec2-user/RSA/marvin-toolkit/keys:/home/rustcrypto/marvin-toolkit/keys \
-v /home/ec2-user/RSA/marvin-toolkit/results:/home/rustcrypto/marvin-toolkit/results \
marvin:latest
```
2 changes: 1 addition & 1 deletion marvin-toolkit/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ while getopts ":s:n:h" opt; do
;;
esac
done
size_bytes = $(($size / 8))
size_bytes=$(($size / 8))

# Step 1: Generate key pairs
name="rsa${size}"
Expand Down

0 comments on commit 9fa993a

Please sign in to comment.