From 9fa993a28687b6ee51962fa5848c8fc2f579fc31 Mon Sep 17 00:00:00 2001 From: "Ganyu (Bruce) Xu" Date: Sun, 10 Dec 2023 23:31:57 -0500 Subject: [PATCH] Fixed size_bytes assignment --- marvin-toolkit/README.md | 6 +++--- marvin-toolkit/entrypoint.sh | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/marvin-toolkit/README.md b/marvin-toolkit/README.md index 6c6a7017..7c2180a1 100644 --- a/marvin-toolkit/README.md +++ b/marvin-toolkit/README.md @@ -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 ``` diff --git a/marvin-toolkit/entrypoint.sh b/marvin-toolkit/entrypoint.sh index 1e29d182..ecba1206 100644 --- a/marvin-toolkit/entrypoint.sh +++ b/marvin-toolkit/entrypoint.sh @@ -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}"