README.tor 883 B

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