1. 27 Feb, 2014 3 commits
  2. 26 Feb, 2014 5 commits
  3. 25 Feb, 2014 7 commits
  4. 24 Feb, 2014 4 commits
  5. 23 Feb, 2014 2 commits
    • Dr. Stephen Henson's avatar
      Only set current certificate to valid values. · 358d352a
      Dr. Stephen Henson authored
      When setting the current certificate check that it has a corresponding
      private key.
      358d352a
    • Dr. Stephen Henson's avatar
      New chain building flags. · 13dc3ce9
      Dr. Stephen Henson authored
      New flags to build certificate chains. The can be used to rearrange
      the chain so all an application needs to do is add all certificates
      in arbitrary order and then build the chain to check and correct them.
      
      Add verify error code when building chain.
      
      Update docs.
      13dc3ce9
  6. 21 Feb, 2014 2 commits
  7. 20 Feb, 2014 3 commits
  8. 19 Feb, 2014 7 commits
  9. 18 Feb, 2014 1 commit
  10. 16 Feb, 2014 1 commit
    • Dr. Stephen Henson's avatar
      Restore SSL_OP_MSIE_SSLV2_RSA_PADDING · 3c6c139a
      Dr. Stephen Henson authored
      The flag SSL_OP_MSIE_SSLV2_RSA_PADDING hasn't done anything since OpenSSL
      0.9.7h but deleting it will break source compatibility with any software
      that references it. Restore it but #define to zero.
      (cherry picked from commit b17d6b8d)
      3c6c139a
  11. 15 Feb, 2014 3 commits
  12. 14 Feb, 2014 2 commits
    • Rob Stradling's avatar
      Show the contents of the RFC6962 Signed Certificate Timestamp List Certificate/OCSP Extensions. · dcfe8df1
      Rob Stradling authored
      Add the RFC6962 OIDs to the objects table.
      dcfe8df1
    • Kurt Roeckx's avatar
      Use defaults bits in req when not given · 33432203
      Kurt Roeckx authored
      If you use "-newkey rsa" it's supposed to read the default number of bits from the
      config file.  However the value isn't used to generate the key, but it does
      print it's generating such a key.  The set_keygen_ctx() doesn't call
      EVP_PKEY_CTX_set_rsa_keygen_bits() and you end up with the default set in
      pkey_rsa_init() (1024).  Afterwards the number of bits gets read from the config
      file, but nothing is done with that anymore.
      
      We now read the config first and use the value from the config file when no size
      is given.
      
      PR: 2592
      33432203