Use pysequoia in key_generate
This commit is contained in:
parent
a5b08015a4
commit
9d7b3ee27f
@ -317,11 +317,12 @@ def key_generate(uids: List[Uid], outfile: Path) -> str:
|
||||
The result of the key generate call
|
||||
"""
|
||||
|
||||
cmd = ["sq", "key", "generate"]
|
||||
for uid in uids:
|
||||
cmd.extend(["--userid", str(uid)])
|
||||
cmd.extend(["--export", str(outfile)])
|
||||
return system(cmd)
|
||||
# Current limitation of pysequoia: only one User ID allowed
|
||||
assert len(uids) == 1
|
||||
cert = str(Cert.generate(user_id = uids[0]))
|
||||
with open(outfile, "wb") as f:
|
||||
f.write(cert.encode("utf8"))
|
||||
return cert
|
||||
|
||||
|
||||
def key_extract_certificate(key: Path, output: Optional[Path]) -> str:
|
||||
|
Loading…
x
Reference in New Issue
Block a user