aboutsummaryrefslogtreecommitdiff
path: root/src/or/onion_ntor.h
Commit message (Collapse)AuthorAge
* Update the copyright date to 201.Nick Mathewson2013-01-16
|
* Add reference implementation for ntor, plus compatibility testNick Mathewson2013-01-03
| | | | | Before I started coding ntor in C, I did another one in Python. Turns out, they interoperate just fine.
* ntor: Don't fail fast server-side on an unrecognized KEYID(B)Nick Mathewson2013-01-03
|
* Massive refactoring of the various handshake typesNick Mathewson2013-01-03
| | | | | The three handshake types are now accessed from a unified interface; their state is abstracted from the rest of the cpath state, and so on.
* Move curve25519 keypair type to src/common; give it functionsNick Mathewson2013-01-02
| | | | | | This patch moves curve25519_keypair_t from src/or/onion_ntor.h to src/common/crypto_curve25519.h, and adds new functions to generate, load, and store keypairs.
* Implementat the ntor handshakeNick Mathewson2013-01-02
The ntor handshake--described in proposal 216 and in a paper by Goldberg, Stebila, and Ustaoglu--gets us much better performance than our current approach.