This is an automated email from the ASF dual-hosted git repository. sandreoli pushed a commit to branch review-mike in repository https://gitbox.apache.org/repos/asf/incubator-milagro-MPC.git
commit 202aa01d02af8db178794470523c3555b14f97e9 Author: Samuele Andreoli <[email protected]> AuthorDate: Wed Apr 15 09:26:18 2020 +0100 reference unmerged commit in milagro --- Dockerfile | 1 + README.md | 1 + scripts/buildAMCL.sh | 1 + 3 files changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 91b4f44..5b00e62 100755 --- a/Dockerfile +++ b/Dockerfile @@ -42,6 +42,7 @@ RUN pip3 install cffi # install AMCL RUN git clone https://github.com/apache/incubator-milagro-crypto-c.git && \ cd incubator-milagro-crypto-c && \ + git checkout b4ddc1497cba42fe7a262016794194f75569d10c && \ mkdir build && \ cd build && \ cmake -D CMAKE_BUILD_TYPE=Release -D BUILD_SHARED_LIBS=ON -D AMCL_CHUNK=64 -D AMCL_CURVE="BLS381,SECP256K1" -D AMCL_RSA="" -D BUILD_PAILLIER=ON -D BUILD_PYTHON=OFF -D BUILD_BLS=ON -D BUILD_WCC=OFF -D BUILD_MPIN=OFF -D BUILD_X509=OFF -D CMAKE_INSTALL_PREFIX=/usr/local .. && \ diff --git a/README.md b/README.md index d46afd8..9ea5115 100644 --- a/README.md +++ b/README.md @@ -66,6 +66,7 @@ Build and install the AMCL library ```sh git clone https://github.com/apache/incubator-milagro-crypto-c.git cd incubator-milagro-crypto-c +git checkout b4ddc1497cba42fe7a262016794194f75569d10c mkdir build cd build cmake -D CMAKE_BUILD_TYPE=Release -D BUILD_SHARED_LIBS=ON -D AMCL_CHUNK=64 -D AMCL_CURVE="BLS381,SECP256K1" -D AMCL_RSA="" -D BUILD_PAILLIER=ON -D BUILD_PYTHON=ON -D BUILD_BLS=ON -D BUILD_WCC=OFF -D BUILD_MPIN=ON -D BUILD_X509=OFF -D CMAKE_INSTALL_PREFIX=/usr/local .. diff --git a/scripts/buildAMCL.sh b/scripts/buildAMCL.sh index 9f16ed9..da7278b 100755 --- a/scripts/buildAMCL.sh +++ b/scripts/buildAMCL.sh @@ -13,6 +13,7 @@ CURRENTDIR=${PWD} git clone https://github.com/apache/incubator-milagro-crypto-c.git cd incubator-milagro-crypto-c +git checkout b4ddc1497cba42fe7a262016794194f75569d10c mkdir build cd build cmake -D CMAKE_BUILD_TYPE=Debug -D BUILD_SHARED_LIBS=ON -D DEBUG_NORM=OFF -D AMCL_CHUNK=64 -D AMCL_CURVE="BLS381,SECP256K1" -D AMCL_RSA="" -D BUILD_PAILLIER=ON -D BUILD_PYTHON=OFF -D BUILD_BLS=ON -D BUILD_WCC=OFF -D BUILD_MPIN=ON -D BUILD_X509=OFF -D CMAKE_INSTALL_PREFIX=/usr/local ..
