aboutsummaryrefslogtreecommitdiff
path: root/networking/tls.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* tls: fix hash calculations if client cert is requested and sentDenys Vlasenko2018-02-141-40/+54
* tls: use capped SNI len everywhereDenys Vlasenko2017-07-041-2/+2
* tls: do not compile in TLS_RSA_WITH_NULL_SHA256 code if unreachableDenys Vlasenko2017-04-041-5/+12
* tls: avoid using int16 in pstm codeDenys Vlasenko2017-04-031-2/+2
* tls: merge sha1 and sha256 hmac functionsDenys Vlasenko2017-04-031-44/+12
* tls: covert i/o loop from using select() to poll()Denys Vlasenko2017-02-161-14/+11
* tls: fold AES CBC en/decryption into single functionsDenys Vlasenko2017-02-041-19/+11
* wget/tls: session_id of zero length is ok (arxiv.org responds with such)Denys Vlasenko2017-02-031-3/+3
* 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-231-1/+1
* separate TLS code into a library, use in in wgetDenys Vlasenko2017-01-231-106/+45
* 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
* tls: do not use common_bufsizDenys Vlasenko2017-01-201-8/+15
* tls: decode alerts and in particular, EOF alert.Denys Vlasenko2017-01-201-218/+74
* tls: add the i/o loop - largish rework of i/o bufferingDenys Vlasenko2017-01-201-108/+166
* tls: tested PSTM_X86_64, not enabling it - too largeDenys Vlasenko2017-01-191-2/+2
* 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-181-2/+1
* 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
* tls: add sha256 hmac and prf codeDenys Vlasenko2017-01-161-33/+223
* tls: rearrange code, add/improve comments, fix whitespace, no real changes hereDenys Vlasenko2017-01-151-160/+202
* tls: send CHANGE_CIPHER_SPECDenys Vlasenko2017-01-151-37/+45
* whitespace fixDenys Vlasenko2017-01-151-2/+2
* tls: format and send CLIENT_KEY_EXCHANGEDenys Vlasenko2017-01-151-37/+188
* tls: DER length byte 0x81 is actually validDenys Vlasenko2017-01-141-11/+16
* tls: a bit more workDenys Vlasenko2017-01-141-33/+39
* tls: work-in-progress TLS1.2 test appletDenys Vlasenko2017-01-141-0/+643