You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # A note on the security of the included implementations and schemes
  2. This project contains (reference) implementations of cryptographic libraries.
  3. We do not make any security claims about the code included in PQClean.
  4. In the current state, we distribute reference implementations with minor modifications.
  5. We did not perform any extensive security analyses.
  6. This code is suitable for experimental or scientific use.
  7. We recommend careful expert code review before using any of the included implementations in production environments.
  8. See also the [NIST PQC Forum][forum] for discussion about the cryptographic schemes included in PQClean.
  9. ## Current and past security issues
  10. We will attempt to document security vulnerabilities made known to us on a best-effort basis.
  11. If an issue is marked with a date, the issue has been resolved since any commits made after that date.
  12. Again, we emphasise that the code in this repository has not seen any formal analysis or audit!
  13. Use at your own risk.
  14. ### Open issues
  15. * LEDAcryptKEM `leaktime` implementations are known to not be constant-time and expected to have timing side channel vulnerabilities.
  16. <!-- new date line
  17. ### 2019-XX-XX
  18. -->
  19. ### 2019-09-24
  20. * All Falcon implementations before [PR #235][PR 235] got merged were insecure. See [EPRINT report 2019/893][2019/893].
  21. ### 2019-09-10
  22. * The included incremental `sha512` implementation was calling `crypto_hashblocks_sha256` before 2019-9-10.
  23. This lead to an insufficient security level of the results of this hash function.
  24. The function was not used in any implementations, though.
  25. See [PR #232][PR 232].
  26. [2019/893]: https://eprint.iacr.org/2019/893
  27. [forum]: https://csrc.nist.gov/Projects/Post-Quantum-Cryptography/Email-List
  28. [PR 232]: https://github.com/PQClean/PQClean/pull/232
  29. [PR 235]: https://github.com/PQClean/PQClean/pull/235