1. 07 Apr, 2014 2 commits
  2. 06 Apr, 2014 2 commits
  3. 05 Apr, 2014 1 commit
  4. 04 Apr, 2014 2 commits
  5. 03 Apr, 2014 2 commits
  6. 02 Apr, 2014 2 commits
  7. 01 Apr, 2014 1 commit
  8. 27 Mar, 2014 3 commits
  9. 25 Mar, 2014 1 commit
  10. 19 Mar, 2014 1 commit
  11. 18 Mar, 2014 1 commit
  12. 12 Mar, 2014 2 commits
    • Dr. Stephen Henson's avatar
      Update ordinals. · 8b0336c8
      Dr. Stephen Henson authored
      Use a previously unused value as we will be updating multiple released
      branches.
      (cherry picked from commit 0737acd2)
      8b0336c8
    • Dr. Stephen Henson's avatar
      Fix for CVE-2014-0076 · 0a9f7780
      Dr. Stephen Henson authored
      Fix for the attack described in the paper "Recovering OpenSSL
      ECDSA Nonces Using the FLUSH+RELOAD Cache Side-channel Attack"
      by Yuval Yarom and Naomi Benger. Details can be obtained from:
      http://eprint.iacr.org/2014/140
      
      Thanks to Yuval Yarom and Naomi Benger for discovering this
      flaw and to Yuval Yarom for supplying a fix.
      (cherry picked from commit 2198be34)
      
      Conflicts:
      
      	CHANGES
      0a9f7780
  13. 10 Mar, 2014 1 commit
  14. 07 Mar, 2014 3 commits
  15. 06 Mar, 2014 3 commits
  16. 03 Mar, 2014 2 commits
  17. 02 Mar, 2014 3 commits
  18. 01 Mar, 2014 4 commits
    • Dr. Stephen Henson's avatar
      Add additional FIPS digests. · 813cfd9c
      Dr. Stephen Henson authored
      Add a few special case digests not returned by FIPS_get_digestbynid().
      
      Thanks to Roumen Petrov <openssl@roumenpetrov.info> for reporting this
      issue.
      813cfd9c
    • Dr. Stephen Henson's avatar
      Add function to free compression methods. · 976c5830
      Dr. Stephen Henson authored
      Although the memory allocated by compression methods is fixed and
      cannot grow over time it can cause warnings in some leak checking
      tools. The function SSL_COMP_free_compression_methods() will free
      and zero the list of supported compression methods. This should
      *only* be called in a single threaded context when an application
      is shutting down to avoid interfering with existing contexts
      attempting to look up compression methods.
      976c5830
    • Dr. Stephen Henson's avatar
      PKCS#8 support for alternative PRFs. · b60272b0
      Dr. Stephen Henson authored
      Add option to set an alternative to the default hmacWithSHA1 PRF
      for PKCS#8 private key encryptions. This is used automatically
      by PKCS8_encrypt if the nid specified is a PRF.
      
      Add option to pkcs8 utility.
      
      Update docs.
      b60272b0
    • Dr. Stephen Henson's avatar
      Fix memory leak. · 124d2188
      Dr. Stephen Henson authored
      124d2188
  19. 28 Feb, 2014 2 commits
  20. 27 Feb, 2014 2 commits
    • Dr. Stephen Henson's avatar
      Fix fips flag handling. · 5f2329b8
      Dr. Stephen Henson authored
      Don't set the fips flags in cipher and digests as the implementations
      aren't suitable for FIPS mode and will be redirected to the FIPS module
      versions anyway.
      
      Return EVP_CIPH_FLAG_FIPS or EVP_MD_FLAG_FIPS if a FIPS implementation
      exists when calling EVP_CIPHER_flags and EVP_MD_flags repectively.
      
      Remove unused FIPS code from e_aes.c: the 1.0.2 branch will never be
      used to build a FIPS module.
      5f2329b8
    • Dr. Stephen Henson's avatar
      Remove unused file. · 01fb5e13
      Dr. Stephen Henson authored
      The file evp_fips.c isn't used in OpenSSL 1.0.2 as FIPS and non-FIPS
      implementations of algorithms can coexist.
      01fb5e13