Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
README.md | D | 25-Apr-2025 | 637 | 22 | 16 | |
alg-ecdsa-p256.der | D | 25-Apr-2025 | 19 | |||
alg-ecdsa-p384.der | D | 25-Apr-2025 | 16 | |||
alg-ecdsa-sha256.der | D | 25-Apr-2025 | 10 | |||
alg-ecdsa-sha384.der | D | 25-Apr-2025 | 10 | |||
alg-ed25519.der | D | 25-Apr-2025 | 5 | |||
alg-rsa-encryption.der | D | 25-Apr-2025 | 13 | |||
alg-rsa-pkcs1-sha256.der | D | 25-Apr-2025 | 13 | |||
alg-rsa-pkcs1-sha384.der | D | 25-Apr-2025 | 13 | |||
alg-rsa-pkcs1-sha512.der | D | 25-Apr-2025 | 13 | |||
alg-rsa-pss-sha256.der | D | 25-Apr-2025 | 65 | |||
alg-rsa-pss-sha384.der | D | 25-Apr-2025 | 65 | |||
alg-rsa-pss-sha512.der | D | 25-Apr-2025 | 65 |
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