Revize 58051326
Přidáno uživatelem David Friesecký před více než 3 roky(ů)
src/model/certificate.py | ||
---|---|---|
12 | 12 |
private_key_id: int, |
13 | 13 |
type_id: int, |
14 | 14 |
parent_id: int, |
15 |
usages: Dict[int, bool]): |
|
15 |
usages: Dict[int, bool], |
|
16 |
revocation_date: str = "", |
|
17 |
revocation_reason: str = ""): |
|
16 | 18 |
self.certificate_id: int = certificate_id |
17 | 19 |
self.common_name: str = common_name |
18 | 20 |
self.valid_from: str = valid_from |
19 | 21 |
self.valid_to: str = valid_to |
20 | 22 |
self.pem_data: str = pem_data |
23 |
self.revocation_date = revocation_date |
|
24 |
self.revocation_reason = revocation_reason |
|
21 | 25 |
self.private_key_id: int = private_key_id |
22 | 26 |
self.type_id: int = type_id |
23 | 27 |
self.parent_id: int = parent_id |
Také k dispozici: Unified diff
Re #8578 - Implemented new functions
- set_certificate_revoked, clear_certificate_revocation, get_all_revoked_by, get_all_issued_by
- update returns of all functions