hush/networking/ssl_helper-wolfssl
Denys Vlasenko 1c6c670ed4 wget: make openssl/ssl_helper choice configurable
I got sick of not being able to wget a https file...

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2015-10-07 01:39:40 +02:00
..
00cfg-wolfssl-3.6.8 wget: make openssl/ssl_helper choice configurable 2015-10-07 01:39:40 +02:00
README wget: make openssl/ssl_helper choice configurable 2015-10-07 01:39:40 +02:00
ssl_helper.c wget: make openssl/ssl_helper choice configurable 2015-10-07 01:39:40 +02:00
ssl_helper.sh wget: make openssl/ssl_helper choice configurable 2015-10-07 01:39:40 +02:00

Build instructions:

* Unpack wolfssl-3.6.8.zip
* Build it:
  ./configure --enable-static --disable-shared && make
* Drop this directory into wolfssl-3.6.8/ssl_helper
* Run ssl_helper.sh to compile and link the helper

Usage: "ssl_helper -d FILE_DESCRIPTOR" where FILE_DESCRIPTOR is open to the peer.

In bash, you can do it this way:
$ ssl_helper -d3 3<>/dev/tcp/HOST/PORT

Stdin will be SSL-encrypted and sent to FILE_DESCRIPTOR.
Data from FILE_DESCRIPTOR will be decrypted and sent to stdout.