2014-07-04 11:59:01 +02:00
|
|
|
|
|
|
|
Compilation instructions
|
|
|
|
========================
|
|
|
|
|
2014-07-16 18:35:42 +02:00
|
|
|
The precompiled versions here are from an OpenSSL 1.0.2 fork
|
|
|
|
from Peter Mosmans. He has patched the master git branch
|
|
|
|
to support chacha20+poly1305 and other ciphers (CAMELIA 256 Bit).
|
|
|
|
|
|
|
|
CHACHA20+POLY1305 cipher suites from the official git repo didn't
|
|
|
|
work for me work correctly, it's also likely they'll disappear shortly
|
2014-07-04 12:27:17 +02:00
|
|
|
(https://www.mail-archive.com/openssl-dev@openssl.org/msg34756.html).
|
2014-07-04 11:59:01 +02:00
|
|
|
|
|
|
|
|
2014-07-16 18:35:42 +02:00
|
|
|
General
|
|
|
|
-------
|
|
|
|
|
|
|
|
* 64 bit versions were compiled under Opensuse 12.3
|
|
|
|
* 32 bit versions were compiled under Ubuntu 12.04 LTS
|
2014-07-04 11:59:01 +02:00
|
|
|
|
2014-07-16 18:35:42 +02:00
|
|
|
Likely you cannot use older distributions, younger should work.
|
|
|
|
I provide for each distributions two sets of binaries:
|
2014-07-04 11:59:01 +02:00
|
|
|
|
2014-07-16 18:35:42 +02:00
|
|
|
* statically linked binaries (except a few libs which are nowadays difficult to statically link)
|
|
|
|
* dynamically linked binaries with MIT Kerberos support ("krb5" in the name)
|
2014-07-04 11:59:01 +02:00
|
|
|
|
2014-07-16 18:35:42 +02:00
|
|
|
For the latter you need a whopping bunch of kerberos libraries which you maybe need to
|
|
|
|
install from your distributor (libgssapi_krb5, libkrb5, libcom_err, libk5crypto, libkrb5support,
|
|
|
|
libkeyutils). For the 'static' binaries kerberos is not compiled in, so that's is not needed.
|
2014-07-04 11:59:01 +02:00
|
|
|
|
2014-07-16 18:35:42 +02:00
|
|
|
All binaries are signed with my gpg key (.asc files).
|
2014-07-04 12:15:13 +02:00
|
|
|
|
2014-07-04 11:59:01 +02:00
|
|
|
|
2014-07-16 18:35:42 +02:00
|
|
|
Compilation instructions
|
|
|
|
------------------------
|
|
|
|
|
2014-07-04 11:59:01 +02:00
|
|
|
If you want to compile OpenSSL yourself, here are the instructions:
|
|
|
|
|
2014-07-16 18:35:42 +02:00
|
|
|
1.) get openssl from Peter Mosmans' repo:
|
2014-07-04 12:27:17 +02:00
|
|
|
|
2014-07-16 18:35:42 +02:00
|
|
|
git clone https://github.com/PeterMosmans/openssl
|
|
|
|
cd openssl
|
2014-07-04 11:59:01 +02:00
|
|
|
|
2014-07-16 18:35:42 +02:00
|
|
|
2.) configure the damned thing. Options I used:
|
2014-07-04 11:59:01 +02:00
|
|
|
|
2014-07-14 20:19:03 +02:00
|
|
|
**for 64Bit:**
|
2014-07-04 11:59:01 +02:00
|
|
|
|
2014-07-04 14:37:15 +02:00
|
|
|
./config --prefix=/usr/ --openssldir=/etc/ssl enable-zlib enable-ssl2 enable-rc5 enable-rc2 enable-GOST \
|
|
|
|
enable-cms enable-md2 enable-mdc2 enable-ec enable-ec2m enable-ecdh enable-ecdsa enable-seed enable-camellia \
|
|
|
|
enable-idea enable-rfc3779 enable-ec_nistp_64_gcc_128 --with-krb5-flavor=MIT experimental-jpake
|
|
|
|
|
|
|
|
**for 32 Bit:**
|
|
|
|
|
|
|
|
./config --prefix=/usr/ --openssldir=/etc/ssl enable-zlib enable-ssl2 enable-rc5 enable-rc2 enable-GOST \
|
|
|
|
enable-cms enable-md2 enable-mdc2 enable-ec enable-ec2m enable-ecdh enable-ecdsa enable-seed enable-camellia \
|
|
|
|
enable-idea enable-rfc3779 no-ec_nistp_64_gcc_128 --with-krb5-flavor=MIT experimental-jpake
|
2014-07-04 11:59:01 +02:00
|
|
|
|
2014-07-16 18:35:42 +02:00
|
|
|
Don't use -DTEMP_GOST_TLS, it currently breaks things and it is not needed for general GOST support.
|
2014-07-04 11:59:01 +02:00
|
|
|
|
2014-07-04 12:15:13 +02:00
|
|
|
If you don't have / don't want Kerberos libraries and devel rpms/debs, omit "--with-krb5-flavor=MIT".
|
|
|
|
If you have other Kerberos flavors you need to figure out by yourself.
|
2014-07-04 11:59:01 +02:00
|
|
|
|
2014-07-16 18:35:42 +02:00
|
|
|
3.) make depend
|
2014-07-04 11:59:01 +02:00
|
|
|
|
2014-07-16 18:35:42 +02:00
|
|
|
4.) make
|
2014-07-04 12:15:13 +02:00
|
|
|
|
2014-07-16 18:35:42 +02:00
|
|
|
5.) make report (check whether it runs ok)
|
2014-07-04 12:15:13 +02:00
|
|
|
|
2014-07-16 18:35:42 +02:00
|
|
|
6.) "openssl ciphers -V ALL:COMPLEMENTOFALL | wc -l" lists for me
|
|
|
|
* 187 + 4 russian GOST ciphers -- including kerberos
|
|
|
|
* 173 + 4 russian GOST ciphers without kerberos
|
2014-07-04 11:59:01 +02:00
|
|
|
|
2014-07-16 18:35:42 +02:00
|
|
|
as opposed to 111/109 from Ubuntu or Opensuse.
|
2014-07-04 11:59:01 +02:00
|
|
|
|
2014-07-14 20:19:03 +02:00
|
|
|
Enjoy, Dirk
|
|
|
|
|
|
|
|
PS: **Never use these binaries for anything else then for testing**
|
2014-07-04 14:15:45 +02:00
|
|
|
|
2014-07-04 11:59:01 +02:00
|
|
|
|
2014-07-04 14:37:15 +02:00
|
|
|
[1] https://en.wikipedia.org/wiki/GOST_%29block_cipher%29
|