1. 09 Nov, 2015 1 commit
  2. 08 Nov, 2015 1 commit
  3. 04 Nov, 2015 2 commits
  4. 02 Nov, 2015 1 commit
  5. 01 Nov, 2015 1 commit
  6. 29 Oct, 2015 1 commit
  7. 23 Oct, 2015 8 commits
  8. 22 Oct, 2015 1 commit
  9. 15 Oct, 2015 1 commit
  10. 14 Oct, 2015 1 commit
  11. 13 Oct, 2015 2 commits
  12. 10 Oct, 2015 1 commit
  13. 08 Oct, 2015 2 commits
    • Matt Caswell's avatar
      Don't treat a bare OCTETSTRING as DigestInfo in int_rsa_verify · 985abd1f
      Matt Caswell authored
      
      
      The function int_rsa_verify is an internal function used for verifying an
      RSA signature. It takes an argument |dtype| which indicates the digest type
      that was used. Dependant on that digest type the processing of the
      signature data will vary. In particular if |dtype == NID_mdc2| and the
      signature data is a bare OCTETSTRING then it is treated differently to the
      default case where the signature data is treated as a DigestInfo (X509_SIG).
      
      Due to a missing "else" keyword the logic actually correctly processes the
      OCTETSTRING format signature first, and then attempts to continue and
      process it as DigestInfo. This will invariably fail because we already know
      that it is a bare OCTETSTRING.
      
      This failure doesn't actualy make a real difference because it ends up at
      the |err| label regardless and still returns a "success" result. This patch
      just cleans things up to make it look a bit more sane.
      
      RT#4076
      
      Reviewed-by: default avatarRichard Levitte <levitte@openssl.org>
      (cherry picked from commit dffe5109)
      985abd1f
    • Richard Levitte's avatar
      When ENGINE_add finds that id or name is missing, actually return · b0042479
      Richard Levitte authored
      
      
      Reviewed-by: default avatarMatt Caswell <matt@openssl.org>
      (cherry picked from commit 5850cc75)
      b0042479
  14. 07 Oct, 2015 4 commits
  15. 06 Oct, 2015 1 commit
  16. 05 Oct, 2015 2 commits
  17. 03 Oct, 2015 1 commit
  18. 29 Sep, 2015 2 commits
  19. 28 Sep, 2015 2 commits
  20. 25 Sep, 2015 2 commits
  21. 22 Sep, 2015 3 commits