1. 15 10月, 2014 1 次提交
  2. 08 9月, 2014 2 次提交
  3. 29 8月, 2014 1 次提交
  4. 27 8月, 2014 2 次提交
  5. 13 8月, 2014 1 次提交
    • I
      RT3239: Extra comma in NAME lines of two manpages · bebbb11d
      Ingo Schwarze 提交于
      In two OpenSSL manual pages, in the NAME section, the last word of the
      name list is followed by a stray trailing comma. While this may seem
      minor, it is worth fixing because it may confuse some makewhatis(8)
      implementations.
      
      While here, also add the missing word "size" to the one line
      description in SSL_CTX_set_max_cert_list(3).
      
      Reviewed by: Dr Stephen Henson <shenson@drh-consultancy.co.uk>
      bebbb11d
  6. 15 7月, 2014 1 次提交
  7. 06 7月, 2014 1 次提交
  8. 03 7月, 2014 2 次提交
  9. 02 7月, 2014 3 次提交
  10. 29 6月, 2014 1 次提交
  11. 27 6月, 2014 1 次提交
    • J
      Clarify docs. · 0535c2d6
      Jeffrey Walton 提交于
      Document that the certificate passed to SSL_CTX_add_extra_chain_cert()
      should not be freed by the application.
      
      PR#3409
      0535c2d6
  12. 02 6月, 2014 1 次提交
    • D
      Option to disable padding extension. · 01f2f18f
      Dr. Stephen Henson 提交于
      Add TLS padding extension to SSL_OP_ALL so it is used with other
      "bugs" options and can be turned off.
      
      This replaces SSL_OP_SSLREF2_REUSE_CERT_TYPE_BUG which is an ancient
      option referring to SSLv2 and SSLREF.
      
      PR#3336
      01f2f18f
  13. 26 5月, 2014 1 次提交
  14. 01 5月, 2014 1 次提交
  15. 27 4月, 2014 1 次提交
  16. 05 4月, 2014 1 次提交
  17. 29 3月, 2014 1 次提交
  18. 28 3月, 2014 1 次提交
  19. 27 3月, 2014 1 次提交
    • D
      Update chain building function. · e970f63d
      Dr. Stephen Henson 提交于
      Don't clear verification errors from the error queue unless
      SSL_BUILD_CHAIN_FLAG_CLEAR_ERROR is set.
      
      If errors occur during verification and SSL_BUILD_CHAIN_FLAG_IGNORE_ERROR
      is set return 2 so applications can issue warnings.
      (cherry picked from commit 2dd6976f6d02f98b30c376951ac38f780a86b3b5)
      e970f63d
  20. 23 2月, 2014 1 次提交
    • D
      New chain building flags. · 13dc3ce9
      Dr. Stephen Henson 提交于
      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
  21. 22 2月, 2014 1 次提交
  22. 15 2月, 2014 2 次提交
  23. 03 2月, 2014 1 次提交
    • D
      New ctrl to set current certificate. · 0f78819c
      Dr. Stephen Henson 提交于
      New ctrl sets current certificate based on certain criteria. Currently
      two options: set the first valid certificate as current and set the
      next valid certificate as current. Using these an application can
      iterate over all certificates in an SSL_CTX or SSL structure.
      0f78819c
  24. 27 1月, 2014 1 次提交
  25. 11 1月, 2014 2 次提交
  26. 09 1月, 2014 2 次提交
  27. 04 1月, 2014 2 次提交
  28. 19 11月, 2013 1 次提交
  29. 14 11月, 2013 1 次提交
    • R
      Additional "chain_cert" functions. · 7b6b246f
      Rob Stradling 提交于
      PR#3169
      
      This patch, which currently applies successfully against master and
      1_0_2, adds the following functions:
      
      SSL_[CTX_]select_current_cert() - set the current certificate without
      disturbing the existing structure.
      
      SSL_[CTX_]get0_chain_certs() - get the current certificate's chain.
      
      SSL_[CTX_]clear_chain_certs() - clear the current certificate's chain.
      
      The patch also adds these functions to, and fixes some existing errors
      in, SSL_CTX_add1_chain_cert.pod.
      7b6b246f
  30. 22 10月, 2013 2 次提交
    • L
      POD: Fix list termination · ed77017b
      Lubomir Rintel 提交于
      This fixes problems in POD list formatting: extra or missing =back
      sequences.
      
      doc/ssl/SSL_CTX_set1_curves.pod around line 90: =back without =over
      doc/ssl/SSL_CTX_set1_verify_cert_store.pod around line 73: =back without =over
      doc/ssl/SSL_CTX_add1_chain_cert.pod around line 82: =back without =over
      doc/crypto/evp.pod around line 40: '=item' outside of any '=over'
      crypto/des/des.pod around line 184: You forgot a '=back' before '=head1'
      
      PR#3147
      ed77017b
    • L
      POD: Fix item numbering · c8919dde
      Lubomir Rintel 提交于
      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
      c8919dde