I have a X.509 certificate and I want to encode it using PER (Packed Encoding Rules). Is there any open source application that I can do it? Or is there any open source library that can do it. I would prefer Java/C++ if there is one.
|
feedback
|
|
III ASN.1 is a C++ that supports PER encoding. I'm guessing you are trying to save some space, but I'm wondering if it's such a good idea. A quick computation puts you're maximum expected reduction in size at around 20% (unless you're using really short keys). PER breaks the signature so you need to convert the certificate back to DER in order to verify the signature. If this issue is so important, you might want to consider other using ECDSA keys instead of RSA keys (unless you're doing encryption), which can save you a lot more space because public keys and signature are smaller. | |||
|
feedback
|