CryptoExtras RSA public keys support being exported in DER and PEM form. These exports work great, but it turns out they are inconsistent between the Darwin and non-Darwin implementations. Darwin platforms would export the public keys in PKCS1 format, while non-Darwin was exporting them as SPKI. This isn't great!
Modifications
Make the two consistent. .derRepresentation should export SPKI formatted public keys, because that's what it does for all the EC keys.
Add .pkcs1DERRepresentation and .pkcs1PEMRepresentation for those users that require the PKCS1 formatted key.
Result
Key export types are now consistent on all platforms.
Motivation
CryptoExtras RSA public keys support being exported in DER and PEM form. These exports work great, but it turns out they are inconsistent between the Darwin and non-Darwin implementations. Darwin platforms would export the public keys in PKCS1 format, while non-Darwin was exporting them as SPKI. This isn't great!
Modifications
.derRepresentation
should export SPKI formatted public keys, because that's what it does for all the EC keys..pkcs1DERRepresentation
and.pkcs1PEMRepresentation
for those users that require the PKCS1 formatted key.Result
Key export types are now consistent on all platforms.