mirror of
https://github.com/drwetter/testssl.sh.git
synced 2024-12-31 22:09:44 +01:00
- typos
This commit is contained in:
parent
2fe95cbe29
commit
ebbef07785
@ -39,11 +39,17 @@ If you want to compile OpenSSL yourself, here are the instructions:
|
|||||||
|
|
||||||
3.) configure the damned thing. Options I used:
|
3.) configure the damned thing. Options I used:
|
||||||
|
|
||||||
* for 64Bit:
|
**for 64Bit: **
|
||||||
./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 \
|
||||||
./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
|
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
|
||||||
|
|
||||||
Don't use -DTEMP_GOST_TLS, it breaks things!
|
Don't use -DTEMP_GOST_TLS, it breaks things!
|
||||||
|
|
||||||
@ -57,14 +63,11 @@ as you don't want your openssl binary to end up loading system libraries like li
|
|||||||
libcrypto. Alternatively you can hack the Makefile and include those
|
libcrypto. Alternatively you can hack the Makefile and include those
|
||||||
libs which you compiled statically as ".a".
|
libs which you compiled statically as ".a".
|
||||||
|
|
||||||
4.)
|
4.) make depend
|
||||||
make depend
|
|
||||||
|
|
||||||
5.)
|
5.) make
|
||||||
make
|
|
||||||
|
|
||||||
6.)
|
6.) make report (check whether it runs ok)
|
||||||
make report (check whether it runs ok)
|
|
||||||
|
|
||||||
7.) "openssl ciphers -V ALL:COMPLEMENTOFALL | wc -l" lists for me w/ kerberos and w/o GOST cipher engine
|
7.) "openssl ciphers -V ALL:COMPLEMENTOFALL | wc -l" lists for me w/ kerberos and w/o GOST cipher engine
|
||||||
167 ciphers as opposed to 111/109 from Ubuntu or Opensuse.
|
167 ciphers as opposed to 111/109 from Ubuntu or Opensuse.
|
||||||
@ -73,7 +76,7 @@ libs which you compiled statically as ".a".
|
|||||||
**Never use these binaries for anything else then for testing**
|
**Never use these binaries for anything else then for testing**
|
||||||
|
|
||||||
|
|
||||||
Enjoy! Dirk
|
Enjoy, Dirk
|
||||||
|
|
||||||
|
|
||||||
[1] https://en.wikipedia.org/wiki/GOST_%28block_cipher%29
|
[1] https://en.wikipedia.org/wiki/GOST_%29block_cipher%29
|
||||||
|
Loading…
Reference in New Issue
Block a user