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

@ -49,7 +49,8 @@ class CfsslIssuerPlugin(IssuerPlugin):
response_json = json.loads(response.content.decode('utf_8'))
cert = response_json['result']['certificate']
return cert, current_app.config.get('CFSSL_INTERMEDIATE'),
# TODO add external ID
return cert, current_app.config.get('CFSSL_INTERMEDIATE'), None
@staticmethod
def create_authority(options):