Denys Vlasenko | 78fb6ea | 2015-10-07 02:00:11 +0200 | [diff] [blame] | 1 | A small SSL helper for busybox wget. |
| 2 | |
| 3 | Precompiled static binary may be found in |
| 4 | http://busybox.net/downloads/binaries/ |
| 5 | |
Denys Vlasenko | 1c6c670 | 2015-10-07 01:39:40 +0200 | [diff] [blame] | 6 | Build instructions: |
| 7 | |
Denys Vlasenko | de3da6b | 2016-08-21 03:39:39 +0200 | [diff] [blame] | 8 | * Unpack wolfssl-3.9.8.tar.gz from https://github.com/wolfSSL/wolfssl/releases |
Denys Vlasenko | 4acd393 | 2016-12-22 15:13:37 +0100 | [diff] [blame] | 9 | to a wolfssl-3.9.8 subdirectory here. |
Denys Vlasenko | de3da6b | 2016-08-21 03:39:39 +0200 | [diff] [blame] | 10 | * Create configure: |
Denys Vlasenko | 4acd393 | 2016-12-22 15:13:37 +0100 | [diff] [blame] | 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 |
Denys Vlasenko | de3da6b | 2016-08-21 03:39:39 +0200 | [diff] [blame] | 17 | |
Denys Vlasenko | 1c6c670 | 2015-10-07 01:39:40 +0200 | [diff] [blame] | 18 | Usage: "ssl_helper -d FILE_DESCRIPTOR" where FILE_DESCRIPTOR is open to the peer. |
| 19 | |
| 20 | In bash, you can do it this way: |
| 21 | $ ssl_helper -d3 3<>/dev/tcp/HOST/PORT |
| 22 | |
| 23 | Stdin will be SSL-encrypted and sent to FILE_DESCRIPTOR. |
| 24 | Data from FILE_DESCRIPTOR will be decrypted and sent to stdout. |