Hi all!
I got a RSA pubkey.dat (almost obvious what it is) that has the following structure on contents:
- ASN1 Integer of around 1024 bits (Modulus)
- ASN1 Integer (Exponent)
- Blob of 256 bytes (Signature)
No tags like "----begin---" or so. pure hex values in it.
There's any way to identify its format like if it's DER/PEM/etc , so i can open it with python crypto libraries or crypto++ on c++?
(Or if it matches a public standard structure name for me to check)
Seems like its not PEM as M2crypt can't load it.
Thanks in advance.