├── .github └── workflows │ └── ci.yml ├── AUTHORS ├── CONTRIBUTING.md ├── CONTRIBUTORS ├── LICENSE ├── README.md ├── cmd ├── ascii2der │ ├── encoder.go │ ├── encoder_test.go │ ├── main.go │ ├── scanner.go │ ├── scanner_test.go │ ├── values.go │ └── values_test.go └── der2ascii │ ├── decoder.go │ ├── decoder_test.go │ ├── main.go │ ├── oid_names.go │ ├── writer.go │ └── writer_test.go ├── go.mod ├── internal ├── tag.go └── tag_test.go ├── language.txt ├── samples ├── cert.txt ├── certificates.md ├── p256_key.txt ├── p256_specified.txt ├── pkcs12.txt └── rsa_key.txt └── util ├── make_oid_names.go └── oid_names.txt /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/der-ascii/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/der-ascii/HEAD/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/der-ascii/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/der-ascii/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/der-ascii/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/der-ascii/HEAD/README.md -------------------------------------------------------------------------------- /cmd/ascii2der/encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/der-ascii/HEAD/cmd/ascii2der/encoder.go -------------------------------------------------------------------------------- /cmd/ascii2der/encoder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/der-ascii/HEAD/cmd/ascii2der/encoder_test.go -------------------------------------------------------------------------------- /cmd/ascii2der/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/der-ascii/HEAD/cmd/ascii2der/main.go -------------------------------------------------------------------------------- /cmd/ascii2der/scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/der-ascii/HEAD/cmd/ascii2der/scanner.go -------------------------------------------------------------------------------- /cmd/ascii2der/scanner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/der-ascii/HEAD/cmd/ascii2der/scanner_test.go -------------------------------------------------------------------------------- /cmd/ascii2der/values.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/der-ascii/HEAD/cmd/ascii2der/values.go -------------------------------------------------------------------------------- /cmd/ascii2der/values_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/der-ascii/HEAD/cmd/ascii2der/values_test.go -------------------------------------------------------------------------------- /cmd/der2ascii/decoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/der-ascii/HEAD/cmd/der2ascii/decoder.go -------------------------------------------------------------------------------- /cmd/der2ascii/decoder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/der-ascii/HEAD/cmd/der2ascii/decoder_test.go -------------------------------------------------------------------------------- /cmd/der2ascii/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/der-ascii/HEAD/cmd/der2ascii/main.go -------------------------------------------------------------------------------- /cmd/der2ascii/oid_names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/der-ascii/HEAD/cmd/der2ascii/oid_names.go -------------------------------------------------------------------------------- /cmd/der2ascii/writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/der-ascii/HEAD/cmd/der2ascii/writer.go -------------------------------------------------------------------------------- /cmd/der2ascii/writer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/der-ascii/HEAD/cmd/der2ascii/writer_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/google/der-ascii 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /internal/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/der-ascii/HEAD/internal/tag.go -------------------------------------------------------------------------------- /internal/tag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/der-ascii/HEAD/internal/tag_test.go -------------------------------------------------------------------------------- /language.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/der-ascii/HEAD/language.txt -------------------------------------------------------------------------------- /samples/cert.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/der-ascii/HEAD/samples/cert.txt -------------------------------------------------------------------------------- /samples/certificates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/der-ascii/HEAD/samples/certificates.md -------------------------------------------------------------------------------- /samples/p256_key.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/der-ascii/HEAD/samples/p256_key.txt -------------------------------------------------------------------------------- /samples/p256_specified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/der-ascii/HEAD/samples/p256_specified.txt -------------------------------------------------------------------------------- /samples/pkcs12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/der-ascii/HEAD/samples/pkcs12.txt -------------------------------------------------------------------------------- /samples/rsa_key.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/der-ascii/HEAD/samples/rsa_key.txt -------------------------------------------------------------------------------- /util/make_oid_names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/der-ascii/HEAD/util/make_oid_names.go -------------------------------------------------------------------------------- /util/oid_names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/der-ascii/HEAD/util/oid_names.txt --------------------------------------------------------------------------------