1. 07 May, 2014 1 commit
  2. 06 May, 2014 5 commits
  3. 03 May, 2014 1 commit
  4. 01 May, 2014 1 commit
  5. 30 Apr, 2014 2 commits
    • Matt Caswell's avatar
      Fixed missing =back commands · ee309266
      Matt Caswell authored
      ee309266
    • Lubomir Rintel's avatar
      POD: Fix item numbering · 3d50fef7
      Lubomir Rintel authored
      Newer pod2man considers =item [1-9] part of a numbered list, while =item
      0 starts an unnumbered list. Add a zero effect formatting mark to override
      this.
      
      doc/apps/smime.pod around line 315: Expected text after =item, not a
      number
      ...
      
      PR#3146
      3d50fef7
  6. 26 Apr, 2014 1 commit
    • mancha's avatar
      Fix version documentation. · 33c16230
      mancha authored
      Specify -f is for compilation flags. Add -d to synopsis section.
      
      (cherry picked from commit 006397ea62bbcae22c8664d53c2222b808c4bdd1)
      
      Closes #80.
      33c16230
  7. 24 Apr, 2014 2 commits
  8. 23 Apr, 2014 1 commit
  9. 22 Apr, 2014 1 commit
  10. 16 Apr, 2014 1 commit
  11. 15 Apr, 2014 2 commits
  12. 11 Apr, 2014 1 commit
  13. 09 Apr, 2014 1 commit
  14. 07 Apr, 2014 1 commit
  15. 06 Apr, 2014 1 commit
  16. 04 Apr, 2014 2 commits
  17. 03 Apr, 2014 2 commits
  18. 02 Apr, 2014 1 commit
    • Eric Young's avatar
      Fix base64 decoding bug. · 5762c185
      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)
      5762c185
  19. 12 Mar, 2014 3 commits
  20. 10 Mar, 2014 1 commit
  21. 07 Mar, 2014 1 commit
  22. 26 Feb, 2014 1 commit
  23. 25 Feb, 2014 2 commits
  24. 24 Feb, 2014 3 commits
  25. 15 Feb, 2014 1 commit
  26. 14 Feb, 2014 1 commit
    • Kurt Roeckx's avatar
      Use defaults bits in req when not given · d43301b7
      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)
      d43301b7