2022-09-10 19:28:54 +03:00
|
|
|
Supports decoding BER, CER and DER (X.690).
|
|
|
|
|
|
|
|
- Currently no extra validation is done for CER and DER.
|
|
|
|
- Does not support specifying a schema.
|
|
|
|
- Supports `torepr` but without schema all sequences and sets will be arrays.
|
|
|
|
|
2022-09-22 19:32:13 +03:00
|
|
|
### Can be used to decode certificates etc
|
2022-09-10 19:28:54 +03:00
|
|
|
|
|
|
|
```sh
|
|
|
|
$ fq -d raw 'frompem | asn1_ber | d' cert.pem
|
|
|
|
```
|
|
|
|
|
2022-09-11 10:55:30 +03:00
|
|
|
### Can decode nested values
|
2022-09-10 19:28:54 +03:00
|
|
|
|
|
|
|
```sh
|
|
|
|
$ fq -d asn1_ber '.constructed[1].value | asn1_ber' file.ber
|
|
|
|
```
|
|
|
|
|
2022-09-11 10:55:30 +03:00
|
|
|
### Manual schema
|
2022-09-10 19:28:54 +03:00
|
|
|
|
|
|
|
```sh
|
|
|
|
$ fq -d asn1_ber 'torepr as $r | ["version", "modulus", "private_exponent", "private_exponen", "prime1", "prime2", "exponent1", "exponent2", "coefficient"] | with_entries({key: .value, value: $r[.key]})' pkcs1.der
|
|
|
|
```
|
|
|
|
|
2022-09-11 10:55:30 +03:00
|
|
|
### References
|
2022-09-10 19:28:54 +03:00
|
|
|
- https://www.itu.int/ITU-T/studygroups/com10/languages/X.690_1297.pdf
|
|
|
|
- https://en.wikipedia.org/wiki/X.690
|
|
|
|
- https://letsencrypt.org/docs/a-warm-welcome-to-asn1-and-der/
|
|
|
|
- https://lapo.it/asn1js/
|