sidh: sidh support in boringssl

This commit is contained in:
Henry Case 2018-10-15 11:16:32 +01:00 committed by Kris Kwiatkowski
parent cb67de3e1f
commit 96db6f14d8
2 changed files with 13972 additions and 1 deletions

View File

@ -3,6 +3,7 @@ FROM alpine
RUN apk add --update \
git \
cmake \
patch \
perl \
python \
build-base \
@ -53,9 +54,12 @@ RUN mkdir boringssl/build
# TLS 1.3
ARG REVISION=d451453067cd665a5c38830fbbaac9e599234a5e
ADD sidh_$REVISION.patch /
RUN cd boringssl && git fetch
RUN cd boringssl && git checkout $REVISION
RUN cd boringssl/build && cmake -GNinja ..
RUN cd boringssl && patch -p1 < /sidh_$REVISION.patch
RUN cd boringssl/build && cmake -DEXP_SIDH=1 -GNinja ..
RUN cd boringssl && ninja -C build
ADD httpreq.txt /httpreq.txt

File diff suppressed because it is too large Load Diff