- Given a private key; generate a keyfile that contains both the private and public keys.
- Given a public key; generate a keyfile that contains only the public key.
for example if the prime256v1 private key is 3A6B2EAA0D9F25A9E455983FEB5BB947528121911BF3B76BE5661C89DBF24B26 I need to generate keyfiles like this:
-----BEGIN PRIVATE KEY-----
MIGHAgEAMBMGByqGS ... wte3itBKOo5yW79F1ynWaOdIUZZvWbTAto0
-----END PRIVATE KEY-----
How can I do this with common tools, like fi. openssl or python
The simplest way I found was using python
import ecdsa
...extracting key information can be done in a similar way.
for reference:
https://pypi.org/project/ecdsa/
https://github.com/tlsfuzzer/python-ecdsa