aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects/cryptofuzz/Dockerfile
diff options
context:
space:
mode:
authorGravatar Guido Vranken <guidovranken@users.noreply.github.com>2020-08-09 02:52:31 +0200
committerGravatar GitHub <noreply@github.com>2020-08-08 17:52:31 -0700
commitefeb20e2d5ad4eef4181c2e11133ff80fcdae92a (patch)
treea832f71ccc14b1c3b7fd233226bae888569d9a87 /projects/cryptofuzz/Dockerfile
parent29837b97ac9ebed43e47471c4875dcfe5f1739cb (diff)
[cryptofuzz] wolfCrypt: Add build options (#4286)
- Enable SHAKE - Enable additional curves - Disable tests and examples for shorter build times [cryptofuzz] Add Nettle [cryptofuzz] Nettle: Fix 32 bit build [cryptofuzz] Add libgmp [cryptofuzz] Don't build libgmp with MSAN [cryptofuzz] Add mpdecimal [cryptofuzz] Fix libgmp, mpdecimal builds
Diffstat (limited to 'projects/cryptofuzz/Dockerfile')
-rw-r--r--projects/cryptofuzz/Dockerfile5
1 files changed, 4 insertions, 1 deletions
diff --git a/projects/cryptofuzz/Dockerfile b/projects/cryptofuzz/Dockerfile
index e859cab0..63b07b3c 100644
--- a/projects/cryptofuzz/Dockerfile
+++ b/projects/cryptofuzz/Dockerfile
@@ -21,7 +21,7 @@ RUN apt-get update && \
wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | apt-key add - && \
apt-add-repository 'deb https://apt.kitware.com/ubuntu/ xenial main' && \
apt-get update && \
- apt-get install -y software-properties-common python-software-properties make autoconf automake libtool build-essential cmake libboost-all-dev mercurial gyp ninja-build zlib1g-dev libsqlite3-dev
+ apt-get install -y software-properties-common python-software-properties make autoconf automake libtool build-essential cmake libboost-all-dev mercurial gyp ninja-build zlib1g-dev libsqlite3-dev bison flex texinfo
# BoringSSL needs Go to build
RUN add-apt-repository -y ppa:gophers/archive && apt-get update && apt-get install -y golang-1.9-go
@@ -48,6 +48,9 @@ RUN hg clone https://hg.mozilla.org/projects/nss
RUN git clone --depth 1 https://github.com/jedisct1/libsodium.git
RUN git clone --depth 1 https://github.com/libtom/libtomcrypt.git
RUN git clone --depth 1 https://github.com/microsoft/SymCrypt.git
+RUN git clone --depth 1 https://git.lysator.liu.se/nettle/nettle
+RUN hg clone https://gmplib.org/repo/gmp/ libgmp/
+RUN wget https://www.bytereef.org/software/mpdecimal/releases/mpdecimal-2.5.0.tar.gz
RUN apt-get remove -y libunwind8
RUN apt-get install -y libssl-dev