blob: 17437606d95acd4ea172676278faab6c437855c8 [file] [log] [blame]
Denys Vlasenko1c6c6702015-10-07 01:39:40 +02001Build instructions:
2
3* Unpack wolfssl-3.6.8.zip
4* Build it:
5 ./configure --enable-static --disable-shared && make
6* Drop this directory into wolfssl-3.6.8/ssl_helper
7* Run ssl_helper.sh to compile and link the helper
8
9Usage: "ssl_helper -d FILE_DESCRIPTOR" where FILE_DESCRIPTOR is open to the peer.
10
11In bash, you can do it this way:
12$ ssl_helper -d3 3<>/dev/tcp/HOST/PORT
13
14Stdin will be SSL-encrypted and sent to FILE_DESCRIPTOR.
15Data from FILE_DESCRIPTOR will be decrypted and sent to stdout.