Marten Seemann
8da53885fc
split STREAM and ACK frames in seperate files
2016-04-15 12:34:23 +07:00
Marten Seemann
9e87ee8ed9
detect different types of frames
2016-04-15 12:29:02 +07:00
Lucas Clemente
86b4ffdaaf
use chacha20poly1305 instead of AES and include cert in key derivation
...
Unfortunately QUIC uses non-standard tag sizes with both AES-GCM and
Poly1305. Adopting AES-GCM seems much harder, so I changed it to
Chacha20Poly1305 and only made some slight changes to an existing algo.
This should probably be double-checked at some point.
2016-04-14 23:44:31 +02:00
Lucas Clemente
388fdf7399
decrease debug output
2016-04-14 20:40:20 +02:00
Lucas Clemente
1760bc3227
add key derivation and change AEAD in session, not working right now :(
2016-04-14 20:39:51 +02:00
Lucas Clemente
70531832af
don't panic! 🎉
2016-04-14 20:04:04 +02:00
Lucas Clemente
0febba87ba
move crypto handshake stuff to its own package
2016-04-14 19:50:04 +02:00
Lucas Clemente
04921c29af
introduce ConnectionID type
2016-04-14 19:39:49 +02:00
Lucas Clemente
09879ed4f7
move stuff from example server to new Session and SessionConfig classes
2016-04-14 17:56:31 +02:00
Lucas Clemente
49ccd0bb01
don't accept 0-byte connection IDs since we are a server
2016-04-14 17:56:31 +02:00
Marten Seemann
c0edd24a2e
remove readNBytes func
2016-04-14 17:55:28 +07:00
Lucas Clemente
3d767401d0
introduce PacketNumber type & protocol package
2016-04-14 10:29:21 +02:00
Lucas Clemente
c6b3ce72eb
Merge pull request #4 from lucas-clemente/aes-gcm
...
implement AES-GCM as AEAD
2016-04-14 10:10:05 +02:00
Lucas Clemente
8b7e2744da
implement AES-GCM as AEAD
2016-04-14 09:56:43 +02:00
marten-seemann
3588f24ad4
Merge pull request #3 from marten-seemann/master
...
use Utils function to read / write data from the packet public header
2016-04-14 14:55:50 +07:00
Marten Seemann
55c6a51b45
send Version Negotiation Packet if the client uses the wrong QUIC version
2016-04-14 14:29:25 +07:00
Marten Seemann
703aad12c0
make WritePublicHeader set the VersionFlag and the ResetFlag
2016-04-14 14:28:16 +07:00
Marten Seemann
5b78f1613c
add function to read and write uint32 big endians, use it for the QuicVersion
2016-04-14 13:35:25 +07:00
Marten Seemann
4f39e0f14d
add tests for utils
2016-04-14 11:30:22 +07:00
Lucas Clemente
98cd4aa513
Merge pull request #2 from marten-seemann/master
...
fix QuicVersion32, enforce exact QuicVersion
2016-04-13 11:41:06 +02:00
Marten Seemann
e8fc95466d
fix QuicVersion32, enforce exact QuicVersion
2016-04-13 14:39:59 +07:00
Lucas Clemente
d5edeaf5c4
clean up example server debug output
2016-04-12 17:28:49 +02:00
Lucas Clemente
59ed21e690
add entropy accumulation
2016-04-12 17:03:24 +02:00
Lucas Clemente
284b86c02c
send proper kex value in example server
2016-04-12 15:29:26 +02:00
Lucas Clemente
8b0d17828b
add curve25519 key exchange
2016-04-12 15:20:16 +02:00
Lucas Clemente
83d8cb003d
add test for RSA proof
2016-04-12 15:05:04 +02:00
Lucas Clemente
aa786a1af1
read certificate path from $GOPATH in example server
2016-04-12 14:10:52 +02:00
Lucas Clemente
95e1b87302
add certificate handling to example server
2016-04-12 12:18:01 +02:00
Lucas Clemente
1e33917574
improve version check in example server
2016-04-12 12:17:29 +02:00
Lucas Clemente
d3097ed82a
implement basic certificate compression
2016-04-12 12:17:03 +02:00
Lucas Clemente
97187c5a31
fix proof signature algorithm
2016-04-12 12:16:46 +02:00
Lucas Clemente
f634d2a577
add basic RSA server proof generation
2016-04-11 20:35:34 +02:00
Lucas Clemente
daa77ec2a6
add writing of basic ack frames
2016-04-11 20:35:07 +02:00
Lucas Clemente
df96797e9c
fix an error reading n-byte integers
2016-04-11 14:41:21 +02:00
Lucas Clemente
f293b525da
add mock reply packet to example server
2016-04-10 20:33:46 +02:00
Lucas Clemente
96ae3efa64
simplify AEAD.Seal
2016-04-10 20:33:24 +02:00
Lucas Clemente
893704e38f
implement sealing for NullAEAD
2016-04-10 20:23:51 +02:00
Lucas Clemente
ab14684299
implement basic public header writing
2016-04-10 20:23:36 +02:00
Lucas Clemente
4a44e4982e
move utils.go to its own package so that it's available for aeads
2016-04-10 20:23:15 +02:00
Lucas Clemente
07f5daa7ba
remove lengths from public header struct
2016-04-10 20:02:35 +02:00
Lucas Clemente
551d5798e4
implement stream frame writer
2016-04-10 19:42:40 +02:00
Lucas Clemente
3dc0209b84
add godoc badge to readme
2016-04-10 18:43:32 +02:00
Lucas Clemente
9cb328ef8b
implement sample server REJ message in example server
2016-04-10 18:40:09 +02:00
Lucas Clemente
b2098f8f13
add some more crypto message tags
2016-04-10 16:34:05 +02:00
Lucas Clemente
120d255f38
implement writing of crypto messages
2016-04-10 16:33:55 +02:00
Lucas Clemente
0d4ebe0cfe
update example program
2016-04-08 19:34:15 +02:00
Lucas Clemente
4df279dd81
implement parsing of sample CHLO crypto stream
2016-04-08 19:28:46 +02:00
Lucas Clemente
3492497230
improve util functions
2016-04-08 19:28:14 +02:00
Lucas Clemente
671557542b
add example server
2016-04-08 12:56:15 +02:00
Lucas Clemente
981b061c0c
implement parsing of stream frames
2016-04-08 12:17:47 +02:00