| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Restructure IO traits. | 2019-10-09 | 16 | -343/+610 | ||
| | | ||||||
| * | Restructure dummy implementations | 2019-10-06 | 8 | -230/+320 | ||
| | | ||||||
| * | Added key_confirmed callback | 2019-09-28 | 8 | -114/+217 | ||
| | | ||||||
| * | Work on peer timers | 2019-09-22 | 8 | -64/+135 | ||
| | | ||||||
| * | Added zero_key to peer | 2019-09-21 | 6 | -66/+190 | ||
| | | ||||||
| * | WIP: TUN IO worker | 2019-09-18 | 6 | -129/+212 | ||
| | | | | | Also removed the type parameters from the handshake device. | |||||
| * | WIP: Work on handshake worker | 2019-09-16 | 5 | -24/+76 | ||
| | | ||||||
| * | WIP: Handshake queue and workers | 2019-09-15 | 4 | -26/+90 | ||
| | | ||||||
| * | Sent staged packets when key-pair confirmed | 2019-09-15 | 4 | -46/+50 | ||
| | | ||||||
| * | Begin work on the pure Wireguard implemenation | 2019-09-14 | 13 | -144/+182 | ||
| | | | | | Start joining the handshake device and router device in the top-level Wireguard implemenation. | |||||
| * | Test for confirmation of key using staged packet | 2019-09-11 | 1 | -6/+13 | ||
| | | ||||||
| * | Simplified router tests | 2019-09-11 | 4 | -145/+169 | ||
| | | ||||||
| * | Full inbound/outbound router test | 2019-09-10 | 11 | -247/+392 | ||
| | | ||||||
| * | Begin work on full router interaction unittest | 2019-09-08 | 5 | -91/+239 | ||
| | | ||||||
| * | Fixed outbound unittest | 2019-09-07 | 4 | -24/+22 | ||
| | | ||||||
| * | Write inbound packets to TUN device | 2019-09-07 | 9 | -138/+306 | ||
| | | ||||||
| * | Added outbound benchmark | 2019-09-05 | 5 | -89/+126 | ||
| | | | | | | | Decent performance (~1.5Gb/s on old XPS laptop from 2014), biggest bottleneck seems to be the heap allocator, swapping with jemalloc yields 2x performance. | |||||
| * | Output test number and parameters to debug | 2019-09-04 | 1 | -1/+3 | ||
| | | ||||||
| * | More extensive outbound test | 2019-09-04 | 6 | -116/+231 | ||
| | | ||||||
| * | Expanded outbound test | 2019-09-04 | 6 | -21/+44 | ||
| | | ||||||
| * | Simply passing of JobBuffer ownership | 2019-09-04 | 7 | -299/+274 | ||
| | | ||||||
| * | Wake workers when submitting work | 2019-09-02 | 6 | -155/+190 | ||
| | | ||||||
| * | Reconsider inorder queueing | 2019-09-02 | 6 | -17/+85 | ||
| | | ||||||
| * | Outbound cryptkey routing | 2019-09-01 | 9 | -35/+602 | ||
| | | ||||||
| * | Added Bind trait to router | 2019-08-31 | 6 | -60/+70 | ||
| | | ||||||
| * | Reduce number of type parameters in router | 2019-08-31 | 8 | -72/+137 | ||
| | | | | | | Merge multiple related type parameters into trait, allowing for easier refactoring and better maintainability. | |||||
| * | Explicitly clear t0 in KDF macro | 2019-08-31 | 1 | -3/+8 | ||
| | | ||||||
| * | Fix race condition on response processing | 2019-08-31 | 1 | -28/+52 | ||
| | | ||||||
| * | Better management of key material | 2019-08-31 | 7 | -223/+234 | ||
| | | ||||||
| * | Move to RustCrypto AEAD crate for handshake | 2019-08-30 | 6 | -271/+163 | ||
| | | ||||||
| * | Join with worker threads on device drop | 2019-08-28 | 6 | -30/+91 | ||
| | | ||||||
| * | Renamed confirmed -> initator on keypair | 2019-08-28 | 5 | -11/+13 | ||
| | | | | | | Done to reflect that the property is immutable, unlike the "confirmed" field on the decryption state. | |||||
| * | Start worker threads for device | 2019-08-28 | 2 | -26/+53 | ||
| | | ||||||
| * | Add confirm_key stub | 2019-08-27 | 2 | -6/+16 | ||
| | | ||||||
| * | Use confirmation status from keypair in dec-state | 2019-08-27 | 1 | -6/+7 | ||
| | | ||||||
| * | Work on inbound/outbound consume code | 2019-08-27 | 3 | -8/+69 | ||
| | | ||||||
| * | Added sealing/opening to the router worker | 2019-08-27 | 6 | -22/+326 | ||
| | | ||||||
| * | Removed unused sub-module | 2019-08-27 | 1 | -52/+0 | ||
| | | ||||||
| * | Removed unused sub-module | 2019-08-27 | 2 | -88/+2 | ||
| | | ||||||
| * | Unbox callback closures | 2019-08-27 | 5 | -60/+77 | ||
| | | | | | | Accepted the more verbose type signatures and added a callback to request new key-material. | |||||
| * | Work on callback structure for cryptkey router | 2019-08-26 | 6 | -59/+97 | ||
| | | ||||||
| * | Update the blake2 crate to fix bug upstream | 2019-08-26 | 3 | -119/+182 | ||
| | | | | | Included basic sanity check for the HKDF macroes, to avoid regression in future. | |||||
| * | Move to hjul crate | 2019-08-24 | 8 | -199/+42 | ||
| | | | | | Moved timer code into seperate crate (`hjul'). | |||||
| * | Allow DoS mitigation to take any endpoint impl. | 2019-08-23 | 1 | -5/+11 | ||
| | | ||||||
| * | Derieve clone for timer (handle) | 2019-08-22 | 1 | -38/+38 | ||
| | | ||||||
| * | Added benchmarks for timer code | 2019-08-22 | 3 | -6/+44 | ||
| | | ||||||
| * | Initial version of timer framework | 2019-08-22 | 7 | -2/+158 | ||
| | | ||||||
| * | Ensure peer threads are stopped on drop | 2019-08-20 | 3 | -100/+157 | ||
| | | ||||||
| * | Removed platform mod | 2019-08-20 | 1 | -2/+0 | ||
| | | ||||||
| * | Restructure and job stealing work queue | 2019-08-20 | 9 | -416/+487 | ||
| | | ||||||
