aboutsummaryrefslogtreecommitdiff
path: root/networking/ssl_helper-wolfssl/README
blob: ff46f4bdfec940ff90e318a56554fabe6ae90cf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
A small SSL helper for busybox wget.

Precompiled static binary may be found in
http://busybox.net/downloads/binaries/

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

* Unpack wolfssl-3.9.8.tar.gz from https://github.com/wolfSSL/wolfssl/releases
* Create configure:
  ./autogen.sh
* Build it: see 00cfg-wolfssl-3.9.8 shell script
* Drop this directory into wolfssl-x.y.z/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.