aboutsummaryrefslogtreecommitdiff
path: root/networking (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* httpd: use "Content-Length", not "-length"Denys Vlasenko2017-02-041-3/+3
* tls: fold AES CBC en/decryption into single functionsDenys Vlasenko2017-02-043-34/+64
* wget/tls: session_id of zero length is ok (arxiv.org responds with such)Denys Vlasenko2017-02-031-3/+3
* wget: add a big explanation what TLS code implements and what does notDenys Vlasenko2017-01-301-0/+33
* typo in commentDenys Vlasenko2017-01-291-1/+1
* *: add comment about APPLET_ODDNAME formatDenys Vlasenko2017-01-292-1/+3
* httpd: defend against attempts to OOM us. Closes 9611Denys Vlasenko2017-01-261-24/+24
* ftpd/ls: show directories firstDenys Vlasenko2017-01-251-10/+5
* ftpd: new option -a ANON_USER to allow anonymous loginsAndrey Mozzhuhin2017-01-241-11/+29
* wget: add support for -S --server-responseDenys Vlasenko2017-01-241-20/+29
* tls: can download kernels now :)Denys Vlasenko2017-01-241-52/+120
* tls: if got CERTIFICATE_REQUEST, send an empty CERTIFICATEDenys Vlasenko2017-01-241-20/+45
* tls: add 2nd cipher_id, TLS_RSA_WITH_AES_128_CBC_SHA, so far it doesn't workDenys Vlasenko2017-01-241-165/+248
* tls: reorder tls_handshake_data fields for smaller size, tweak commentsDenys Vlasenko2017-01-231-16/+9
* tls: send EMPTY_RENEGOTIATION_INFO_SCSV in our client helloDenys Vlasenko2017-01-231-26/+86
* tls: set TLS_DEBUG to 0; placate a gcc indentation warningDenys Vlasenko2017-01-232-11/+13
* separate TLS code into a library, use in in wgetDenys Vlasenko2017-01-233-154/+154
* ip: better --helpDenys Vlasenko2017-01-212-48/+70
* more ip --help fixesDenys Vlasenko2017-01-211-7/+7
* make --help texts smallerDenys Vlasenko2017-01-213-44/+44
* make --help texts more uniformDenys Vlasenko2017-01-211-1/+1
* tls: reorder tls_state fields for smaller offsetsDenys Vlasenko2017-01-211-18/+20
* tls: send SNI in the client helloDenys Vlasenko2017-01-201-19/+52
* tls: check size on "MAC-only, no crypt" code path tooDenys Vlasenko2017-01-201-3/+4
* tls: AES decrypt does one unnecessary memmoveDenys Vlasenko2017-01-201-14/+11
* tls: make input buffer grow as neededDenys Vlasenko2017-01-201-49/+83
* tls: improve i/o loopDenys Vlasenko2017-01-201-38/+92
* tls: was psAesDecrypt'ing one block too many, trashing buffered dataDenys Vlasenko2017-01-201-63/+73
* rdate: make it do something remotely sane, facing 32-bit time overflowDenys Vlasenko2017-01-201-1/+1
* tls: do not use common_bufsizDenys Vlasenko2017-01-201-8/+15
* tls: decode alerts and in particular, EOF alert.Denys Vlasenko2017-01-202-219/+75
* tls: add the i/o loop - largish rework of i/o bufferingDenys Vlasenko2017-01-201-108/+166
* tls: fix ROL/ROR x86 optimizationDenys Vlasenko2017-01-191-5/+14
* tls: tested PSTM_X86_64, not enabling it - too largeDenys Vlasenko2017-01-192-3/+5
* tls: commented out psPool_t useDenys Vlasenko2017-01-1910-69/+122
* ntpd: print result of hostname resolutionDenys Vlasenko2017-01-191-1/+3
* tls: teach it to decrypt AES256-encrypted dataDenys Vlasenko2017-01-191-20/+53
* tls: trim commentsDenys Vlasenko2017-01-181-21/+2
* tls: teach it to send AES256-encrypted dataDenys Vlasenko2017-01-181-11/+148
* tls: added AES code and made it compile. not used yetDenys Vlasenko2017-01-185-10/+2272
* tls: massage writing for encryption support; finer-grained debugDenys Vlasenko2017-01-181-31/+38
* tls: address one easy FIXME, tidy up commentsDenys Vlasenko2017-01-171-70/+74
* tls: process CHANGE_CIPHER_SPEC and FINISHED from serverDenys Vlasenko2017-01-171-28/+32
* tls: rearrange function order, improve commentsDenys Vlasenko2017-01-171-171/+170
* tls: make our send_client_finished() pass server checkDenys Vlasenko2017-01-171-240/+180
* tls: format FINISHED message properly for unencrypted, but sha256 signed modeDenys Vlasenko2017-01-161-26/+480
* Assorted warning fixes and added a comment, no code changesDenys Vlasenko2017-01-161-0/+3
* tls: add sha256 hmac and prf codeDenys Vlasenko2017-01-163-35/+225
* tls: rearrange code, add/improve comments, fix whitespace, no real changes hereDenys Vlasenko2017-01-158-227/+304
* tls: send CHANGE_CIPHER_SPECDenys Vlasenko2017-01-151-37/+45