Skip to content
Snippets Groups Projects
  1. Sep 27, 2016
  2. Sep 01, 2016
    • Richard van der Hoff's avatar
      Fix Ed25519 keypair generation · 0c462cff
      Richard van der Hoff authored
      Ed25519 private keys, it turns out, have 64 bytes, not 32.
      
      We were previously generating only 32 bytes (which is all that is required to
      generate the public key), and then using the public key as the upper 32 bytes
      when generating the per-message session key. This meant that everything
      appeared to work, but the security of the private key was severely compromised.
      
      By way of fixes:
      
       * Use the correct algorithm for generating the Ed25519 private key, and store
         all 512 bits of it.
      
       * Update the account pickle format and refuse to load the old format (since we
         should consider it compromised).
      
       * Bump the library version, and add a function to retrieve the library
         version, so that applications can verify that they are linked against a
         fixed version of the library.
      
       * Remove the curve25519_{sign, verify} functions which were unused and of
         dubious quality.
      0c462cff
  3. Dec 03, 2015
    • Richard van der Hoff's avatar
      Use header files where possible · 25953b35
      Richard van der Hoff authored
      This fixes an incorrect re-declaration of ed25519_sign.
      
      Implement header files for some of the other library bits so that we don't need
      to declare functions in crypto.cpp.
      25953b35
  4. Nov 01, 2015
  5. Mar 03, 2015
Loading