I use the following Python code, using M2Crypto, to generate an RSA key pair in PEM format:
bio = BIO.MemoryBuffer()
key_pair = RSA.gen_key(1024, 65537)
key_pair.save_key_bio(bio, cipher=None)
return bio.read()
And the following Java code, using Bouncycastle, to try to read it:
String signPem = ...;
PEMReader pemReader = new PEMReader(new StringReader(signPem));
Object signingKey = pemReader.readObject();
The signPem string is the same as what bio.read() returned; no data that I can see is getting munged between the two programs; it's -----BEGIN RSA PRIVATE KEY-----\n etc.
However, the readObject() call throws a ClassCastException:
java.lang.ClassCastException: org.bouncycastle.asn1.DERSequence
at org.bouncycastle.asn1.ASN1Object.fromByteArray(Unknown Source)
at org.bouncycastle.openssl.PEMReader.readKeyPair(Unknown Source)
at org.bouncycastle.openssl.PEMReader.readObject(Unknown Source)
So obviously BC misidentifies the data in the PEM is not a key pair for some reason - but why?