| Commit message (Expand) | Author | Age | Files | Lines |
* | Changes so DTLS handshake can send messages under different epochs, eg | lloyd | 2012-11-12 | 7 | -55/+85 |
* | Remove Channel::m_max_fragment. Instead derive it from the server | lloyd | 2012-11-07 | 4 | -29/+27 |
* | Store the maximum fragment value instead of the code, convert to the | lloyd | 2012-11-07 | 2 | -37/+31 |
* | Remove Channel::m_connection_closed, instead deriving it from other state | lloyd | 2012-11-07 | 2 | -8/+11 |
* | Pass read_record a callback mapping epoch to cipher state so it can | lloyd | 2012-11-06 | 4 | -53/+38 |
* | Add Channel::pending_state and Channel::active_state, use where possible | lloyd | 2012-11-06 | 2 | -73/+84 |
* | Store cipher states in Channel instead of Handshake_State. Keep all | lloyd | 2012-11-06 | 7 | -66/+145 |
* | Split asn1_obj.h into asn1_alt_name.h, asn1_attribute.h, and | lloyd | 2012-11-06 | 1 | -0/+6 |
* | Move Channel::is_{active,closed} to source file | lloyd | 2012-11-01 | 2 | -2/+12 |
* | Add TLS::Policy::negotiate_heartbeat_support which controls if the | lloyd | 2012-10-13 | 5 | -3/+20 |
* | Remove TLS::Policy::pref_version. Instead pass the version to offer to | lloyd | 2012-10-13 | 5 | -15/+19 |
* | Add TLS::Server_Information to encapsulate the hostname/port pair. | lloyd | 2012-10-13 | 13 | -103/+179 |
* | Generate the fake pre master needed if the RSA computation fails ahead | lloyd | 2012-10-02 | 1 | -4/+16 |
* | Missing return value | lloyd | 2012-09-19 | 1 | -0/+1 |
* | Inline Channel::{read,write}_cipher_state, only one caller each | lloyd | 2012-09-14 | 2 | -24/+11 |
* | Expose to public in TLS::Channel peer_supports_heartbeats, | lloyd | 2012-09-13 | 1 | -6/+16 |
* | Store the cipher states in the handshake state object as shared_ptrs. | lloyd | 2012-09-13 | 4 | -43/+94 |
* | Update creators of Session to new constructor | lloyd | 2012-09-12 | 2 | -2/+0 |
* | It seems other implementations define the secure renegotiation flag to | lloyd | 2012-09-12 | 3 | -16/+3 |
* | A quite different approach to extension handling, store both inbound | lloyd | 2012-09-12 | 8 | -282/+233 |
* | Spelling | lloyd | 2012-09-12 | 6 | -18/+17 |
* | Duplicated extension checks! | lloyd | 2012-09-12 | 1 | -12/+0 |
* | Remove Channel::m_secure_renegotiation, instead derive from current state. | lloyd | 2012-09-12 | 2 | -46/+23 |
* | CBC overwrote (encrypted) the following block in write_record. I | lloyd | 2012-09-12 | 1 | -1/+4 |
* | Formatting | lloyd | 2012-09-11 | 1 | -2/+2 |
* | Clean up the handling of close notify alerts a bit. Also return | lloyd | 2012-09-11 | 1 | -6/+7 |
* | Typo | lloyd | 2012-09-11 | 1 | -1/+1 |
* | Add helper function | lloyd | 2012-09-11 | 2 | -7/+8 |
* | Set m_readbuf_pos == m_readbuf.size(), resizing the vector as needed | lloyd | 2012-09-11 | 5 | -34/+21 |
* | The write buffer is cleared and rewritten by write_record, so we don't | lloyd | 2012-09-11 | 2 | -6/+5 |
* | Pass the record sequence # up to Channel | lloyd | 2012-09-11 | 3 | -12/+13 |
* | Move the record type checks up to Channel as besides that the record | lloyd | 2012-09-11 | 3 | -41/+22 |
* | No reason to pass a u16bit by reference | lloyd | 2012-09-10 | 2 | -2/+2 |
* | New logic for DTLS replay detection. Abstracts the sequence handling | lloyd | 2012-09-10 | 6 | -30/+168 |
* | Consider DTLS v1.0 and v1.2 known | lloyd | 2012-09-09 | 1 | -2/+3 |
* | Expect a cookie field in a DTLS client hello | lloyd | 2012-09-09 | 1 | -0/+3 |
* | Rename function | lloyd | 2012-09-09 | 2 | -16/+16 |
* | Remove redundant Channel::m_current_version | lloyd | 2012-09-09 | 4 | -30/+30 |
* | Create the IO in Channel and then pass it down to new_handshake_state | lloyd | 2012-09-09 | 7 | -37/+39 |
* | Store the is-SSLv3 flag in the cipher state as the difference is only | lloyd | 2012-09-09 | 2 | -22/+19 |
* | Clean up includes | lloyd | 2012-09-09 | 4 | -6/+5 |
* | Also hide Channel::m_handshake_fn | lloyd | 2012-09-09 | 3 | -5/+5 |
* | Hide Channel::m_rng and Channel::m_session_manager, add getters | lloyd | 2012-09-09 | 4 | -23/+28 |
* | Small cleanup | lloyd | 2012-09-08 | 1 | -1/+5 |
* | Only accept a hello request if an active state currently exists. | lloyd | 2012-09-07 | 1 | -4/+2 |
* | Per Google's spec the client is not supposed to include a NPN | lloyd | 2012-09-07 | 1 | -0/+4 |
* | Add support for key material export | lloyd | 2012-09-07 | 2 | -0/+44 |
* | Remove Channel::m_peer_certs, instead retrieve directly from the state. | lloyd | 2012-09-07 | 6 | -12/+45 |
* | Avoid another instance of pulling the key out of the certificate | lloyd | 2012-09-07 | 3 | -9/+7 |
* | Just dynamic_cast once at the start of process_handshake_msg | lloyd | 2012-09-07 | 2 | -21/+20 |