Displaying 1 result from an estimated 1 matches for "my_rsa_public_key".
2013 Nov 11
0
ssh-keygen :: PEM_write_RSA_PUBKEY failed
I am trying to understand a change to ssh-keygen that is included with OS X
Mavericks, 6.2p2 that prevents the option, -m PKCS8, from working.
Previous to Mavericks I had 5.9p1 and didn''t have this problem.
This used to work previously-
ssh-keygen -e -m PKCS8 -f $my_rsa_public_key
Now it outputs-
-----BEGIN PUBLIC KEY-----
-----END PUBLIC KEY-----
PEM_write_RSA_PUBKEY failed
I think this is the change, line 296 of ssh-keygen.c, that was added
in 6.1p1 that is the problem but I am not positive-
1.232 (djm 22-Apr-12): case KEY_RSA1:
If I am reading the commit co...