1. 15 11月, 2023 1 次提交
  2. 30 10月, 2023 3 次提交
  3. 24 8月, 2023 1 次提交
  4. 26 6月, 2023 1 次提交
  5. 21 6月, 2023 1 次提交
  6. 09 10月, 2022 1 次提交
  7. 11 3月, 2022 1 次提交
  8. 10 3月, 2022 1 次提交
  9. 13 2月, 2021 2 次提交
    • D
      Unify the markdown links to the NOTES and README files · 4148581e
      Dr. Matthias St. Pierre 提交于
      In many locations, the files have been converted to markdown
      syntactically, but don't utilize the power of markdown yet.
      Here, instead of just repeating the file name, the markdown link
      now shows the title of the document.
      
      Additionally, the notes are now reference in the same order in both
      the README and the INSTALL file.
      Reviewed-by: NPaul Dale <pauli@openssl.org>
      (Merged from https://github.com/openssl/openssl/pull/14042)
      4148581e
    • D
      Revise some renamings of NOTES and README files · 9f1fe6a9
      Dr. Matthias St. Pierre 提交于
      Some of the notes and readme files have been converted to markdown
      format recently and renamed during this process. While adding the
      .md extension was a natural step, switching to mixed cases was not
      a change to the better, it gives them a ragged appearance:
      
           NOTES.ANDROID  => NOTES-Android.md
           NOTES.DJGPP    => NOTES-DJGPP.md
           NOTES.PERL     => NOTES-Perl.md
           NOTES.UNIX     => NOTES-Unix.md
           NOTES.VMS      => NOTES-VMS.md
           NOTES.VALGRIND => NOTES-Valgrind.md
           NOTES.WIN      => NOTES-Windows.txt
           README.ENGINE  => README-Engine.md
           README.FIPS    => README-FIPS.md
      
      Moreover, the NOTES-Windows.txt file is the only file which has been
      converted to markdown but has received a .txt file extension.
      This doesn't make sense, because the OpenSSL users on Windows will
      need to read the other markdown documents as well. Since they are
      developers, we can trust them to be able to associate their favorite
      editor with the .md extension.
      
      In fact, having a comment at the beginning of the file saying that it
      is in markdown format but we didn't dare to add the correct extension
      in order not to overwhelm our Windows users can be interpreted either
      as unintentionally funny or disrespectful ;-)
      
      This commit suggests the following more consistent renaming:
      
           NOTES.ANDROID  => NOTES-ANDROID.md
           NOTES.DJGPP    => NOTES-DJGPP.md
           NOTES.PERL     => NOTES-PERL.md
           NOTES.UNIX     => NOTES-UNIX.md
           NOTES.VMS      => NOTES-VMS.md
           NOTES.VALGRIND => NOTES-VALGRIND.md
           NOTES.WIN      => NOTES-WINDOWS.md
           README.ENGINE  => README-ENGINES.md
           README.FIPS    => README-FIPS.md
      
      (note the plural in README-ENGINES, anticipating a README-PROVIDERS)
      Reviewed-by: NPaul Dale <pauli@openssl.org>
      (Merged from https://github.com/openssl/openssl/pull/14042)
      9f1fe6a9
  10. 28 1月, 2021 1 次提交
  11. 25 1月, 2021 1 次提交
  12. 28 11月, 2020 1 次提交
  13. 04 11月, 2020 1 次提交
  14. 18 10月, 2020 2 次提交
  15. 11 8月, 2020 2 次提交
  16. 05 7月, 2020 2 次提交
  17. 08 5月, 2020 1 次提交
  18. 22 4月, 2020 1 次提交
  19. 27 2月, 2020 3 次提交
  20. 18 10月, 2019 1 次提交
  21. 06 12月, 2018 2 次提交
    • R
      Change license to the Apache License v2.0 · 15133316
      Richard Levitte 提交于
      This applies to the 'master' git branch and OpenSSL version 3.0.0 and
      up.  Pre-3.0.0 versions retain the previous license.
      
      The boilerplate will change in increments after this change.
      Reviewed-by: NMatt Caswell <matt@openssl.org>
      (Merged from https://github.com/openssl/openssl/pull/7764)
      15133316
    • R
      Switch to MAJOR.MINOR.PATCH versioning and version 3.0.0-dev · 3a63dbef
      Richard Levitte 提交于
      We're strictly use version numbers of the form MAJOR.MINOR.PATCH.
      Letter releases are things of days past.
      
      The most central change is that we now express the version number with
      three macros, one for each part of the version number:
      
          OPENSSL_VERSION_MAJOR
          OPENSSL_VERSION_MINOR
          OPENSSL_VERSION_PATCH
      
      We also provide two additional macros to express pre-release and build
      metadata information (also specified in semantic versioning):
      
          OPENSSL_VERSION_PRE_RELEASE
          OPENSSL_VERSION_BUILD_METADATA
      
      To get the library's idea of all those values, we introduce the
      following functions:
      
          unsigned int OPENSSL_version_major(void);
          unsigned int OPENSSL_version_minor(void);
          unsigned int OPENSSL_version_patch(void);
          const char *OPENSSL_version_pre_release(void);
          const char *OPENSSL_version_build_metadata(void);
      
      Additionally, for shared library versioning (which is out of scope in
      semantic versioning, but that we still need):
      
          OPENSSL_SHLIB_VERSION
      
      We also provide a macro that contains the release date.  This is not
      part of the version number, but is extra information that we want to
      be able to display:
      
          OPENSSL_RELEASE_DATE
      
      Finally, also provide the following convenience functions:
      
          const char *OPENSSL_version_text(void);
          const char *OPENSSL_version_text_full(void);
      
      The following macros and functions are deprecated, and while currently
      existing for backward compatibility, they are expected to disappear:
      
          OPENSSL_VERSION_NUMBER
          OPENSSL_VERSION_TEXT
          OPENSSL_VERSION
          OpenSSL_version_num()
          OpenSSL_version()
      
      Also, this function is introduced to replace OpenSSL_version() for all
      indexes except for OPENSSL_VERSION:
      
          OPENSSL_info()
      
      For configuration, the option 'newversion-only' is added to disable all
      the macros and functions that are mentioned as deprecated above.
      Reviewed-by: NTim Hudson <tjh@openssl.org>
      Reviewed-by: NMatthias St. Pierre <Matthias.St.Pierre@ncp-e.com>
      Reviewed-by: NMatt Caswell <matt@openssl.org>
      (Merged from https://github.com/openssl/openssl/pull/7724)
      3a63dbef
  22. 11 9月, 2018 3 次提交
  23. 21 8月, 2018 2 次提交
  24. 20 6月, 2018 2 次提交
  25. 29 5月, 2018 2 次提交
  26. 01 5月, 2018 1 次提交