Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

README.md 1.9 KiB

12345678910111213141516171819202122232425262728293031323334
  1. # BoringSSL
  2. BoringSSL is a fork of OpenSSL that is designed to meet Google's needs.
  3. Although BoringSSL is an open source project, it is not intended for general
  4. use, as OpenSSL is. We don't recommend that third parties depend upon it. Doing
  5. so is likely to be frustrating because there are no guarantees of API or ABI
  6. stability.
  7. Programs ship their own copies of BoringSSL when they use it and we update
  8. everything as needed when deciding to make API changes. This allows us to
  9. mostly avoid compromises in the name of compatibility. It works for us, but it
  10. may not work for you.
  11. BoringSSL arose because Google used OpenSSL for many years in various ways and,
  12. over time, built up a large number of patches that were maintained while
  13. tracking upstream OpenSSL. As Google's product portfolio became more complex,
  14. more copies of OpenSSL sprung up and the effort involved in maintaining all
  15. these patches in multiple places was growing steadily.
  16. Currently BoringSSL is the SSL library in Chrome/Chromium, Android (but it's
  17. not part of the NDK) and a number of other apps/programs.
  18. There are other files in this directory which might be helpful:
  19. * [PORTING.md](/PORTING.md): how to port OpenSSL-using code to BoringSSL.
  20. * [BUILDING.md](/BUILDING.md): how to build BoringSSL
  21. * [INCORPORATING.md](/INCORPORATING.md): how to incorporate BoringSSL into a project.
  22. * [API-CONVENTIONS.md](/API-CONVENTIONS.md): general API conventions for BoringSSL consumers and developers.
  23. * [STYLE.md](/STYLE.md): rules and guidelines for coding style.
  24. * include/openssl: public headers with API documentation in comments. Also [available online](https://commondatastorage.googleapis.com/chromium-boringssl-docs/headers.html).
  25. * [FUZZING.md](/FUZZING.md): information about fuzzing BoringSSL.
  26. * [CONTRIBUTING.md](/CONTRIBUTING.md): how to contribute to BoringSSL.
  27. * [BREAKING-CHANGES.md](/BREAKING-CHANGES.md): notes on potentially-breaking changes.