Skip to content

Commit

Permalink
readded extraction of privkey.pem for compatibility reasons
Browse files Browse the repository at this point in the history
  • Loading branch information
raph2i committed Mar 22, 2020
1 parent 28a784f commit 4436c11
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions extractor.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,9 @@ def createCerts(args):
with (directory / 'key.pem').open('w') as f:
f.write(privatekey)

with (directory / 'privkey.pem').open('w') as f:
f.write(privatekey)

with (directory / 'cert.pem').open('w') as f:
f.write(cert)

Expand Down

0 comments on commit 4436c11

Please sign in to comment.