Revize 6abfb037
Přidáno uživatelem Stanislav Král před asi 4 roky(ů)
src/services/key_service.py | ||
---|---|---|
68 | 68 |
:param private_key: private key from which a public key should be extracted |
69 | 69 |
:return: a string containing the extracted public key in PEM format |
70 | 70 |
""" |
71 |
return self.cryptography_service.extract_public_key_from_private_key(private_key.private_key, private_key.password) |
|
71 |
return self.cryptography_service.extract_public_key_from_private_key(private_key.private_key, |
|
72 |
private_key.password) |
Také k dispozici: Unified diff
Re #8573 - Added some CertificateService tests and improved CryptographyService tests of methods that extract public keys