Revize d65b022d
Přidáno uživatelem David Friesecký před asi 4 roky(ů)
src/model/private_key.py | ||
---|---|---|
2 | 2 |
def __init__(self, |
3 | 3 |
private_key_id: int, |
4 | 4 |
private_key: str, |
5 |
password: str): |
|
5 |
password: str = None):
|
|
6 | 6 |
self.private_key_id = private_key_id |
7 | 7 |
self.private_key = private_key |
8 | 8 |
self.password = password |
Také k dispozici: Unified diff
Re #8578 - Cover private_key_repository tests
- created tests for functions create, read, read_all, update, delete
- (+) edited certificate_repository to the same stylistics