8 lines
240 B
Python
8 lines
240 B
Python
#!/usr/bin/env python3
|
|
from pathlib import Path
|
|
|
|
from Crypto.PublicKey import RSA
|
|
|
|
def get_pubkey_as_pem(key_path: Path) -> str:
|
|
text = key_path.read_text()
|
|
return RSA.import_key(text).public_key().export_key("PEM").decode("utf-8")
|