summaryrefslogtreecommitdiffstats
path: root/src/method_null.c
AgeCommit message (Collapse)Author
2012-09-15Rework some parts of the AES128-GCM methodMatthias Schiffer
These changes improve the performance of the AES128-GCM method by ~10% on my Intel CPU when compiled with -O2. Furthermore, the AES and the GHASH parts are separated now, allowing to switch to other implementations of the algorithms more easily.
2012-06-15Avoid using the same handshake key to establish more than one sessionMatthias Schiffer
This fix prevents a potential attack using intentional packet reordering to initialize more than one session with using the same handshake keys, leading to more that one session to be initialized with the same key data altogether, allowing to decrypt some packets in the worst case.
2012-06-05Fix possible duplicate session establishmentMatthias Schiffer
This is causing duplicate nonces in the worst case.
2012-06-05Add support for receiving reordered packetsMatthias Schiffer
2012-04-14Separate handshake from encryption methodMatthias Schiffer
2012-03-24Rename methods to protocols; fix some command line parse bugs; implement ↵Matthias Schiffer
most of the config file parser
2012-03-16Move command line parsing to a new fileMatthias Schiffer
2012-03-14Require libuecc; rename cfxp to ecfxp; add some basic infrastructure for ↵Matthias Schiffer
crypto implementation
2012-03-08Add curve25519-fhmqvc-xsalsa20-poly1305 method stubMatthias Schiffer
2012-03-08Moved some codeMatthias Schiffer
2012-03-08New and improved handshakeMatthias Schiffer
2012-03-07New debug print functionMatthias Schiffer
2012-03-02Allow floating peersMatthias Schiffer
2012-02-28Rework buffer structureMatthias Schiffer
2012-02-28Make simple handshake workMatthias Schiffer
2012-02-27Use custom buffers instead of struct iovecMatthias Schiffer
2012-02-26Implement I/O for a fixed peerMatthias Schiffer
2012-02-25Init tun interface and define some structuresMatthias Schiffer