• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

00cfg-wolfssl-3.6.8D26-Dec-2021414 2315

00cfg-wolfssl-3.9.8D26-Dec-2021907 4019

READMED26-Dec-2021704 2518

ssl_helper.cD26-Dec-202112.1 KiB481211

ssl_helper.shD26-Dec-2021372 135

README

1A small SSL helper for busybox wget.
2
3Precompiled static binary may be found in
4http://busybox.net/downloads/binaries/
5
6Build instructions:
7
8* Unpack wolfssl-3.9.8.tar.gz from https://github.com/wolfSSL/wolfssl/releases
9  to a wolfssl-3.9.8 subdirectory here.
10* Create configure:
11	(cd wolfssl-* && ./autogen.sh)
12* Build it: see
13	(cd wolfssl-* && ../00cfg-wolfssl-3.9.8)
14* Run
15	./ssl_helper.sh
16  to compile and link the helper
17
18Usage: "ssl_helper -d FILE_DESCRIPTOR" where FILE_DESCRIPTOR is open to the peer.
19
20In bash, you can do it this way:
21$ ssl_helper -d3 3<>/dev/tcp/HOST/PORT
22
23Stdin will be SSL-encrypted and sent to FILE_DESCRIPTOR.
24Data from FILE_DESCRIPTOR will be decrypted and sent to stdout.
25