From 2f0f906dbfd7cd85761286d4938b472b0d6a4f53 Mon Sep 17 00:00:00 2001 From: Hubert Kario Date: Thu, 19 Mar 2015 17:25:47 +0100 Subject: [PATCH] how to compile the openssl with all features --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index 5c822ab..f015d87 100644 --- a/README.md +++ b/README.md @@ -179,6 +179,19 @@ bits. OpenSSL is build from a custom branch maintained by Peter Mosmans that includes a number of patches not merged upstream. It can be found here: https://github.com/PeterMosmans/openssl +You can build it yourself using following commands: +``` +git clone https://github.com/PeterMosmans/openssl.git --depth 1 -b 1.0.2-chacha +cd openssl +./Configure zlib no-shared experimental-jpake enable-md2 enable-rc5 \ +enable-rfc3779 enable-gost enable-static-engine linux-x86_64 +make depend +make +make report +``` + +The statically linked binary will be `apps/openssl`. + Contributors ------------