tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

README.tor (883B)


      1 
      2 We've made the following changes to the stock ed25519_ref10 from
      3 supercop-20140622:
      4 
      5    * We added the necessary glue to provide integers of fixed bit
      6      sizes, SHA512, and to compile without warnings everywhere we need
      7      to build.
      8 
      9    * Secret keys are stored in expanded format.  There are functions
     10      to expand them from the 32-byte seed.
     11 
     12    * Signatures are made and processed detached from the messages that
     13      they sign.  (In other words, we support "make signature" and
     14      "check signature", not "create signed message" and "check and
     15      unpack signed message".)
     16 
     17    * There's an implementation of 'convert a curve25519 key to an
     18      ed25519 key' so we can do cross-certification with curve25519 keys.
     19      (keyconv.c)
     20 
     21    * There's an implementation of multiplicative key blinding so we
     22      can use it for next-gen hidden srevice descriptors. (blinding.c)
     23