1. 11 3月, 2021 1 次提交
  2. 09 9月, 2020 1 次提交
  3. 17 3月, 2020 1 次提交
  4. 13 3月, 2020 1 次提交
  5. 27 2月, 2020 1 次提交
  6. 06 2月, 2020 1 次提交
  7. 27 11月, 2019 1 次提交
  8. 10 9月, 2019 1 次提交
  9. 19 8月, 2019 1 次提交
  10. 27 6月, 2019 1 次提交
  11. 20 12月, 2018 1 次提交
  12. 16 12月, 2018 1 次提交
    • D
      man: harmonize the various formulations in the HISTORY sections · df75c2bf
      Dr. Matthias St. Pierre 提交于
      While stereotyped repetitions are frowned upon in literature, they
      serve a useful purpose in manual pages, because it is easier for
      the user to find certain information if it is always presented in
      the same way. For that reason, this commit harmonizes the varying
      formulations in the HISTORY section about which functions, flags,
      etc. were added in which OpenSSL version.
      
      It also attempts to make the pod files more grep friendly by
      avoiding to insert line breaks between the symbol names and the
      corresponding version number in which they were introduced
      (wherever possible). Some punctuation and typographical errors
      were fixed on the way.
      Reviewed-by: NTim Hudson <tjh@openssl.org>
      (Merged from https://github.com/openssl/openssl/pull/7854)
      df75c2bf
  13. 17 9月, 2018 1 次提交
  14. 07 9月, 2018 3 次提交
  15. 01 9月, 2018 1 次提交
  16. 23 8月, 2018 1 次提交
  17. 20 8月, 2018 1 次提交
  18. 21 6月, 2018 1 次提交
  19. 19 6月, 2018 1 次提交
  20. 13 6月, 2018 1 次提交
  21. 07 6月, 2018 1 次提交
  22. 02 6月, 2018 1 次提交
  23. 14 5月, 2018 1 次提交
  24. 05 5月, 2018 1 次提交
  25. 03 5月, 2018 1 次提交
  26. 17 4月, 2018 1 次提交
  27. 13 4月, 2018 1 次提交
    • R
      Split the scrypt and RSA-PSS into man3 and man7 pages · a8ca496d
      Richard Levitte 提交于
      The scrypt and RSA-PSS documents were a mixture of section 3 and
      section 7 material.  With pre-1.1.1 OpenSSL, this is understandable,
      since we had a different directory layout.  With 1.1.1, we've moved to
      the typical man-page directory layout, and the documents need to be
      updated accordingly.
      
      Also, the scrypt document contained a description of
      EVP_PKEY_CTX_set1_pbe_pass(), which is a generic function rather than
      an scrypt specific function, and therefore should be documented
      separately.
      
      Fixes #5802
      Reviewed-by: NMatt Caswell <matt@openssl.org>
      (Merged from https://github.com/openssl/openssl/pull/5942)
      a8ca496d
  28. 12 4月, 2018 1 次提交
  29. 30 3月, 2018 1 次提交
  30. 15 3月, 2018 2 次提交
  31. 10 3月, 2018 1 次提交
    • T
      Add SSL/SSL_CTX_use_cert_and_key() · 37933acb
      Todd Short 提交于
      Add functions that will do the work of assigning certificate, privatekey
      and chain certs to an SSL or SSL_CTX. If no privatekey is given, use the
      publickey. This will permit the keys to pass validation for both ECDSA
      and RSA. If a private key has already been set for the certificate, it
      is discarded. A real private key can be set later.
      
      This is an all-or-nothing setting of these parameters. Unlike the
      SSL/SSL_CTX_use_certificate() and SSL/SSL_CTX_use_PrivateKey() functions,
      the existing cert or privatekey is not modified (i.e. parameters copied).
      This permits the existing cert/privatekey to be replaced.
      
      It replaces the sequence of:
      * SSL_use_certificate()
      * SSL_use_privatekey()
      * SSL_set1_chain()
      And may actually be faster, as multiple checks are consolidated.
      
      The private key can be NULL, if so an ENGINE module needs to contain the
      actual private key that is to be used.
      
      Note that ECDH (using the certificate's ECDSA key) ciphers do not work
      without the private key being present, based on how the private key is
      used in ECDH. ECDH does not offer PFS; ECDHE ciphers should be used instead.
      Reviewed-by: NTim Hudson <tjh@openssl.org>
      Reviewed-by: NBen Kaduk <kaduk@mit.edu>
      (Merged from https://github.com/openssl/openssl/pull/1130)
      37933acb
  32. 04 3月, 2018 1 次提交
  33. 02 3月, 2018 1 次提交
  34. 23 2月, 2018 2 次提交
  35. 13 2月, 2018 1 次提交
  36. 02 2月, 2018 1 次提交