I'm trying to create a private key and having an issue.
When I use ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
, I get a private key in the following format.
-----BEGIN OPENSSH PRIVATE KEY-----
uTo43HGophPo5awKC8hoOz4KseENpgHDLxe5UX+amx8YrWvZCvsYRh4/wnwxijYx
...
-----END OPENSSH PRIVATE KEY-----
And this is not being accepted for an application that I'm trying to use.
I'm expecting a key in the following RSA format.
-----BEGIN RSA PRIVATE KEY-----
Proc-Type: 4,ENCRYPTED
DEK-Info: AES-128-CBC,25737CC2C70BFABADB1B4598BD8AB9E9
uTo43HGophPo5awKC8hoOz4KseENpgHDLxe5UX+amx8YrWvZCvsYRh4/wnwxijYx
...
-----END RSA PRIVATE KEY-----
How do I create the correct format? This is weird because every other mac I have creates the correct format, except the one I'm having problem with.
I'm on a fresh installed Mac OS Mojave