diff --git a/docs/CommandLineInterface.md b/docs/CommandLineInterface.md index 27595c2..b101272 100644 --- a/docs/CommandLineInterface.md +++ b/docs/CommandLineInterface.md @@ -202,14 +202,14 @@ also allows voter challenges. The CLIs documented here have less flexibility but ### Run AddEncryptedBallots ```` -Usage: RunExampleEncryption options_list +Usage: RunAddEncryptedBallots options_list Options: --inputDir, -in -> Directory containing input election record (always required) { String } --ballotDir, -ballots -> Directory to read Plaintext ballots from (always required) { String } --device, -device -> voting device name (always required) { String } --outputDir, -out -> Directory to write output election record (always required) { String } --challengePct, -challenge [0] -> Challenge percent of ballots { Int } - --help, -h -> Usage info + --help, -h -> Usage info ```` This reads plaintext ballots from ballotDir and writes their encryptions into the specified election record. diff --git a/docs/GettingStarted.md b/docs/GettingStarted.md index dadcd32..2afc79c 100644 --- a/docs/GettingStarted.md +++ b/docs/GettingStarted.md @@ -102,9 +102,9 @@ Install into one of the library paths, usually _/usr/lib_. You can also use sudo make install ``` -which will install into _/usr/local/lib_. +which will install libvec.ao into _/usr/local/lib_. -### Building the Verificatum Elliptic Curve Java library (VECJ) +### Building the Java wrapper for VEC (VECJ) ``` cd devhome @@ -121,7 +121,7 @@ Install into one of the library paths, usually _/usr/lib_. You can also use sudo make install ``` -which will install into _/usr/local/lib_. +which will install libvecj.so into _/usr/local/lib_. ### Make sure libraries are on the load path diff --git a/src/main/kotlin/org/cryptobiotic/eg/cli/RunAddEncryptedBallots.kt b/src/main/kotlin/org/cryptobiotic/eg/cli/RunAddEncryptedBallots.kt index 952934f..217a7eb 100644 --- a/src/main/kotlin/org/cryptobiotic/eg/cli/RunAddEncryptedBallots.kt +++ b/src/main/kotlin/org/cryptobiotic/eg/cli/RunAddEncryptedBallots.kt @@ -56,7 +56,7 @@ class RunAddEncryptedBallots { parser.parse(args) logger.info { - "starting\n inputDir= $inputDir\n ballotDir = $ballotDir\n device = $device\n" + + "starting RunAddEncryptedBallots\n inputDir= $inputDir\n ballotDir = $ballotDir\n device = $device\n" + " outputDir = $outputDir\n challengePct = $challengePct" }