Lines Matching refs:openssl
63 # Build a static, legacy openssl from sources with sslv3 enabled
64 # Based on https://gist.github.com/bmaupin/8caca3a1e8c3c5686141 (build-openssl.sh)
65 # Note: openssl-1.0.2 and earlier has known build issues with parallel make.
67 && wget https://www.openssl.org/source/old/1.0.1/openssl-1.0.1j.tar.gz -qO- | tar xz \
68 && cd openssl-1.0.1j \
69 && ./config --openssldir=/usr/local/openssl-1.0.1j no-shared \
72 && rm -rf /tmp/openssl*
73 ENV OPENSSL_LEGACY=/usr/local/openssl-1.0.1j/bin/openssl
77 && wget https://www.openssl.org/source/old/1.0.2/openssl-1.0.2g.tar.gz -qO- | tar xz \
78 && cd openssl-1.0.2g \
79 && ./config --openssldir=/usr/local/openssl-1.0.2g no-shared \
82 && rm -rf /tmp/openssl*
83 ENV OPENSSL=/usr/local/openssl-1.0.2g/bin/openssl
85 # Build a new openssl binary for ARIA/CHACHA20 support
86 # Based on https://gist.github.com/bmaupin/8caca3a1e8c3c5686141 (build-openssl.sh)
88 && wget https://www.openssl.org/source/openssl-1.1.1a.tar.gz -qO- | tar xz \
89 && cd openssl-1.1.1a \
90 …&& ./config --prefix=/usr/local/openssl-1.1.1a -Wl,--enable-new-dtags,-rpath,'${LIBRPATH}' no-shar…
93 && rm -rf /tmp/openssl*
94 ENV OPENSSL_NEXT=/usr/local/openssl-1.1.1a/bin/openssl