Initial work allowing certificates to be revoked. (#941)

* Initial work allowing for certificates to be revoked.
This commit is contained in:
kevgliss
2017-09-28 18:27:56 -07:00
committed by GitHub
parent ea6f5c920b
commit bb08b1e637
23 changed files with 286 additions and 47 deletions

View File

@ -195,7 +195,8 @@ class VerisignIssuerPlugin(IssuerPlugin):
response = self.session.post(url, data=data)
cert = handle_response(response.content)['Response']['Certificate']
return cert, current_app.config.get('VERISIGN_INTERMEDIATE'),
# TODO add external id
return cert, current_app.config.get('VERISIGN_INTERMEDIATE'), None
@staticmethod
def create_authority(options):