You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CAs can now be identified using name or serial (previously: only by serial) in CA_OCSP_URL.
Make fab init_demo a lot more useful by signing certificates with the client CA and include CRL
and OCSP links.
Run fab init_demo and documentation generation through Travis-CI.
Always display all extensions in the django admin interface.
NameConstraints are now delimited using a , instead of a ;, for consistency with other
parameters and so no bash special character is used.
Bugfixes
Check for permissions when downloading certificates from the admin interface. Previously, users without admin interface access but without permissions to access certificates, where able to guess the URL and download public keys.
Add a missing migration.
Fix the value of the crlDistributionPoints x509 extension when signing certificates with Python2.
The Content-Type header of CRL responses now defaults to the correct value regardless of type (DER or PEM) used.
If a wrong CA is specified in CA_OCSP_URLS, an OCSP internal error is returned instead of an uncought exception.
Fix some edge cases for serial conversion in Python2. Some serials where converted with an "L" prefix in Python 2, because hex(0L) returns "0x0L".