Revize ef65f488
Přidáno uživatelem Stanislav Král před asi 4 roky(ů)
src/services/cryptography.py | ||
---|---|---|
260 | 260 |
found = re.findall(r"\s?([^c=\s]+)\s?=\s?([^,\n]+)", match.group(1)) |
261 | 261 |
subj = Subject() |
262 | 262 |
for key, value in found: |
263 |
print(f"{key}:{value}") |
|
264 | 263 |
if key == "C": |
265 | 264 |
subj.country = value |
266 | 265 |
elif key == "ST": |
Také k dispozici: Unified diff
Re #8472 - Implemented get_chain_of_trust method and added an integration test validating it
Added return type specification to read_all method in CertificateRepository