Distinguished Encoding Rules (DER) certificate encoding is a method of turning ASN.1 attributes and values into a machine-friendly format.
Questions tagged [der]
215 questions
0
votes
1 answer
How can I check if a x509 certificate is well formed?
If openssl (e.g. x509 or s_client) thinks a DER encoded x509 self-signed certificate is well formed, can I definitively say that the certificate is well formed? For instance, openssl is able to load the certificate but a widely used closed source…

pmf
- 577
- 4
- 14
-1
votes
1 answer
How do I convert DER Format certificate x509 into human readable format?
How can I convert a DER Format certificate x509 into a human readable format in JavaScript?

halloulaguesmi
- 83
- 1
- 8
-1
votes
1 answer
How to encrypt a key which is in the form of DER
I have a public key for asymmetric encryption in the form of DER (Distinguished Encoding Rules) encoded binary data, which is a restricted form of the ASN.1 (Abstract Syntax Notation One)…

Mak
- 9
- 5
-1
votes
1 answer
How to Generate Public key in DER format
What are the Steps to Generate
1)Public key in DER format
2)private key for signing the payload

Jithin j
- 272
- 1
- 3
- 13
-2
votes
1 answer
Decimal to uint8_t array
uint8_t certificateSerialNumber[] = {0x02, 0x04, 0x24,0xA8,0x16,0x34};
The decimal 614995508 (actual serial number)is converted to hexadecimal 24A81634.
The above unit8 array is the representation on TLV(tag length value) triplet of serial…