Merge pull request #7399 from lpy4105/issue/7014/certificate-audit-script

cert_audit: Add test certificate date audit script
This commit is contained in:
Bence Szépkúti 2023-05-09 13:10:01 +02:00 committed by GitHub
commit ddfd0a27df
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 508 additions and 18 deletions

View file

@ -10,3 +10,9 @@ pylint == 2.4.4
# Use the earliest version of mypy that works with our code base.
# See https://github.com/Mbed-TLS/mbedtls/pull/3953 .
mypy >= 0.780
# Install cryptography to avoid import-error reported by pylint.
# What we really need is cryptography >= 35.0.0, which is only
# available for Python >= 3.6.
cryptography >= 35.0.0; sys_platform == 'linux' and python_version >= '3.6'
cryptography; sys_platform == 'linux' and python_version < '3.6'