diff options
author | Denys Vlasenko | 2014-02-23 23:31:13 +0100 |
---|---|---|
committer | Denys Vlasenko | 2014-02-23 23:31:13 +0100 |
commit | d82046f59f8b3d338bcfe6aa3b786e13c5c54ee3 (patch) | |
tree | d5cc2c58ada8df263a83edfb1c39026498ade759 /networking/ssl_helper/README | |
parent | 8b7e8ae2249ffd9aa2c67536554eb9f6b6636ba5 (diff) | |
download | busybox-d82046f59f8b3d338bcfe6aa3b786e13c5c54ee3.zip busybox-d82046f59f8b3d338bcfe6aa3b786e13c5c54ee3.tar.gz |
networking/ssl_helper: experimental matrixssl-based ssl helper
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/ssl_helper/README')
-rw-r--r-- | networking/ssl_helper/README | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/networking/ssl_helper/README b/networking/ssl_helper/README new file mode 100644 index 0000000..4d0508f --- /dev/null +++ b/networking/ssl_helper/README @@ -0,0 +1,16 @@ +Build instructions: + +* Unpack matrixssl-3-4-2-open.tgz. +* Build it: "make" +* Drop this directory into matrixssl-3-4-2-open/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. + +The plan is to adapt it for wget https helper, and for ssl support in nc. |