Add dnspython3

This commit is contained in:
Jasmine Schladen 2021-02-17 14:07:06 -08:00
parent c4a896ecf2
commit d4643d760a
4 changed files with 10 additions and 0 deletions

View File

@ -174,6 +174,7 @@ Basic Configuration
.. data:: PUBLIC_CA_MAX_VALIDITY_DAYS .. data:: PUBLIC_CA_MAX_VALIDITY_DAYS
:noindex: :noindex:
Use this config to override the limit of 397 days of validity for certificates issued by CA/Browser compliant authorities. Use this config to override the limit of 397 days of validity for certificates issued by CA/Browser compliant authorities.
The authorities with cab_compliant option set to true will use this config. The example below overrides the default validity The authorities with cab_compliant option set to true will use this config. The example below overrides the default validity
of 397 days and sets it to 365 days. of 397 days and sets it to 365 days.
@ -185,6 +186,7 @@ Basic Configuration
.. data:: DEFAULT_VALIDITY_DAYS .. data:: DEFAULT_VALIDITY_DAYS
:noindex: :noindex:
Use this config to override the default validity of 365 days for certificates offered through Lemur UI. Any CA which Use this config to override the default validity of 365 days for certificates offered through Lemur UI. Any CA which
is not CA/Browser Forum compliant will be using this value as default validity to be displayed on UI. Please is not CA/Browser Forum compliant will be using this value as default validity to be displayed on UI. Please
note that this config is used for cert issuance only through Lemur UI. The example below overrides the default validity note that this config is used for cert issuance only through Lemur UI. The example below overrides the default validity
@ -904,10 +906,12 @@ Active Directory Certificate Services Plugin
.. data:: ADCS_START .. data:: ADCS_START
:noindex: :noindex:
Used in ADCS-Sourceplugin. Minimum id of the first certificate to be returned. ID is increased by one until ADCS_STOP. Missing cert-IDs are ignored Used in ADCS-Sourceplugin. Minimum id of the first certificate to be returned. ID is increased by one until ADCS_STOP. Missing cert-IDs are ignored
.. data:: ADCS_STOP .. data:: ADCS_STOP
:noindex: :noindex:
Used for ADCS-Sourceplugin. Maximum id of the certificates returned. Used for ADCS-Sourceplugin. Maximum id of the certificates returned.

View File

@ -59,6 +59,7 @@ class CertificatesListValid(AuthenticatedResource):
**Example request**: **Example request**:
.. sourcecode:: http .. sourcecode:: http
GET /certificates/valid?filter=cn;*.test.example.net&owner=joe@example.com&page=1&count=20 GET /certificates/valid?filter=cn;*.test.example.net&owner=joe@example.com&page=1&count=20
HTTP/1.1 HTTP/1.1
Host: example.com Host: example.com

View File

@ -5,6 +5,7 @@
# Without including these dependencies, the docs are unable to include generated autodocs # Without including these dependencies, the docs are unable to include generated autodocs
arrow arrow
cryptography cryptography
dnspython3
Flask Flask
Flask-Bcrypt Flask-Bcrypt
Flask-Cors Flask-Cors

View File

@ -16,6 +16,10 @@ chardet==3.0.4
# via requests # via requests
cryptography==3.4.5 cryptography==3.4.5
# manual debug # manual debug
dnspython3==1.15.0
# manual debug
dnspython==1.15.0
# manual debug
docutils==0.15.2 docutils==0.15.2
# via sphinx # via sphinx
idna==2.9 idna==2.9