aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/data/asn1_print
Commit message (Collapse)AuthorAgeFilesLines
* Fix ASN1 printer testJack Lloyd2018-03-051-2/+2
|
* Allow decoding ASN.1 OID 0.0Jack Lloyd2018-03-053-0/+190
| | | | | | | | I had no idea this was a valid OID but apparently it is. And for some who-knows-why reason FreeTSA certificate includes it in their certificate policy extension. GH #355
* Fix a bug in asn1print - zero integers were not printedJack Lloyd2018-01-091-3/+3
|
* Improve output of the ASN1 printerJack Lloyd2018-01-036-20/+154
| | | | | | | | | | The output was pretty much wrong for application-tagged types. Instead the type was printed as if it was a universal tag. Add a hack in the ASN1 printer for GeneralNames. These are a commonly used implicitly tagged type. Basically if it is a context specific field, and it looks like it might be a printable URI or DNS GeneralName, treat it as a string.
* Add some tests of ASN1_Pretty_PrinterJack Lloyd2017-12-298-0/+50
The output is not fixed and may change in the future, but changes should at least be noticed.