1These files contain the binary DER encoding of the *values* of some
2ASN.1 [`AlgorithmIdentifier`]s, without the outer `SEQUENCE` tag or the outer
3length component.
4
5These files were encoded with the help of [der-ascii]. They can be decoded
6using:
7
8```sh
9go get github.com/google/der-ascii/cmd/der2ascii
10der2ascii -i <filename> -o <filename>.ascii
11```
12
13New or modified der-ascii files can be encoded using:
14
15```sh
16go get github.com/google/der-ascii/cmd/ascii2der
17ascii2der i <filename>.ascii -o <filename>
18```
19
20[`AlgorithmIdentifier`]: https://tools.ietf.org/html/rfc5280#section-4.1.1.2]
21[der-ascii]: https://github.com/google/der-ascii
22