• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

README.mdD25-Apr-2025637 2216

alg-ecdsa-p256.derD25-Apr-202519

alg-ecdsa-p384.derD25-Apr-202516

alg-ecdsa-sha256.derD25-Apr-202510

alg-ecdsa-sha384.derD25-Apr-202510

alg-ed25519.derD25-Apr-20255

alg-rsa-encryption.derD25-Apr-202513

alg-rsa-pkcs1-sha256.derD25-Apr-202513

alg-rsa-pkcs1-sha384.derD25-Apr-202513

alg-rsa-pkcs1-sha512.derD25-Apr-202513

alg-rsa-pss-sha256.derD25-Apr-202565

alg-rsa-pss-sha384.derD25-Apr-202565

alg-rsa-pss-sha512.derD25-Apr-202565

README.md

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