1. 22 Apr, 2014 1 commit
  2. 16 Apr, 2014 1 commit
  3. 15 Apr, 2014 2 commits
  4. 11 Apr, 2014 1 commit
  5. 09 Apr, 2014 1 commit
  6. 08 Apr, 2014 1 commit
  7. 07 Apr, 2014 7 commits
  8. 06 Apr, 2014 2 commits
  9. 05 Apr, 2014 1 commit
  10. 04 Apr, 2014 2 commits
  11. 03 Apr, 2014 2 commits
  12. 02 Apr, 2014 1 commit
    • Eric Young's avatar
      Fix base64 decoding bug. · bfc3424d
      Eric Young authored
      A short PEM encoded sequence if passed to the BIO, and the file
      had 2 \n following would fail.
      
      PR#3289
      (cherry picked from commit 10378fb5)
      bfc3424d
  13. 12 Mar, 2014 3 commits
  14. 10 Mar, 2014 1 commit
  15. 07 Mar, 2014 2 commits
  16. 27 Feb, 2014 1 commit
  17. 26 Feb, 2014 1 commit
  18. 25 Feb, 2014 3 commits
  19. 24 Feb, 2014 4 commits
  20. 15 Feb, 2014 2 commits
  21. 14 Feb, 2014 1 commit
    • Kurt Roeckx's avatar
      Use defaults bits in req when not given · e420060a
      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
      (cherry picked from commit 33432203)
      e420060a