1. 20 Jun, 2016 1 commit
  2. 17 Jun, 2016 1 commit
    • Matt Caswell's avatar
      Change default directory for storing the .rnd file on Windows · 13c03c8d
      Matt Caswell authored
      
      
      Previously we would try %RANDFILE%, then %HOME% and finally "C:".
      Unfortunately this often ends up being "C:" which the user may not
      have write permission for.
      
      Now we try %RANDFILE% first, and then the same set of environment vars
      as GetTempFile() uses, i.e. %TMP%, then %TEMP%, %USERPROFILE% and
      %SYSTEMROOT%. If all else fails we fall back to %HOME% and only then "C:".
      
      Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
      13c03c8d
  3. 16 Jun, 2016 1 commit
  4. 06 Jun, 2016 1 commit
  5. 01 Jun, 2016 1 commit
  6. 20 May, 2016 1 commit
    • Rich Salz's avatar
      Rename lh_xxx,sk_xxx tp OPENSSL_{LH,SK}_xxx · 739a1eb1
      Rich Salz authored
      
      
      Rename sk_xxx to OPENSSL_sk_xxx and _STACK to OPENSSL_STACK
      Rename lh_xxx API to OPENSSL_LH_xxx and LHASH_NODE to OPENSSL_LH_NODE
      Make lhash stuff opaque.
      Use typedefs for function pointers; makes the code simpler.
      Remove CHECKED_xxx macros.
      Add documentation; remove old X509-oriented doc.
      Add API-compat names for entire old API
      
      Reviewed-by: default avatarDr. Stephen Henson <steve@openssl.org>
      739a1eb1
  7. 16 May, 2016 1 commit
  8. 12 May, 2016 3 commits
  9. 11 May, 2016 1 commit
  10. 10 May, 2016 1 commit
  11. 09 May, 2016 1 commit
  12. 05 May, 2016 2 commits
  13. 03 May, 2016 1 commit
  14. 02 May, 2016 1 commit
  15. 15 Apr, 2016 1 commit
  16. 14 Apr, 2016 1 commit
  17. 13 Apr, 2016 2 commits
  18. 09 Apr, 2016 2 commits
  19. 06 Apr, 2016 1 commit
  20. 02 Apr, 2016 1 commit
  21. 29 Mar, 2016 1 commit
  22. 21 Mar, 2016 2 commits
  23. 20 Mar, 2016 1 commit
  24. 17 Mar, 2016 3 commits
  25. 16 Mar, 2016 1 commit
  26. 11 Mar, 2016 1 commit
  27. 09 Mar, 2016 2 commits
  28. 08 Mar, 2016 3 commits
  29. 07 Mar, 2016 1 commit
    • Emilia Kasper's avatar
      Rework the default cipherlist. · a556f342
      Emilia Kasper authored
      
      
       - Always prefer forward-secure handshakes.
       - Consistently order ECDSA above RSA.
       - Next, always prefer AEADs to non-AEADs, irrespective of strength.
       - Within AEADs, prefer GCM > CHACHA > CCM for a given strength.
       - Prefer TLS v1.2 ciphers to legacy ciphers.
       - Remove rarely used DSS, IDEA, SEED, CAMELLIA, CCM from the default
         list to reduce ClientHello bloat.
      
      Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
      a556f342