mirror of
https://github.com/pseXperiments/icicle.git
synced 2026-01-09 13:07:59 -05:00
* initial commit * random elliptic points * initial complete example * public random seed to prevent knowing dlogs * cleaned up code * add README * Update examples/c++/pedersen-commitment/README.md Co-authored-by: Jeremy Felder <jeremy.felder1@gmail.com> * updates to PR comments * codespell compliance * corrected terminology in README --------- Co-authored-by: Jeremy Felder <jeremy.felder1@gmail.com>
10 lines
117 B
Bash
Executable File
10 lines
117 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Exit immediately on error
|
|
set -e
|
|
|
|
rm -rf build
|
|
mkdir -p build
|
|
cmake -S . -B build
|
|
cmake --build build
|