├── .github └── workflows │ └── test.yml ├── LICENSE ├── ecdsa.go ├── ecdsa_compat.go ├── ecdsa_go125.go ├── ecdsa_test.go ├── go.mod ├── go.sum └── testdata └── ecdsa.json /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/keygen/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/keygen/HEAD/LICENSE -------------------------------------------------------------------------------- /ecdsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/keygen/HEAD/ecdsa.go -------------------------------------------------------------------------------- /ecdsa_compat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/keygen/HEAD/ecdsa_compat.go -------------------------------------------------------------------------------- /ecdsa_go125.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/keygen/HEAD/ecdsa_go125.go -------------------------------------------------------------------------------- /ecdsa_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/keygen/HEAD/ecdsa_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/keygen/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/keygen/HEAD/go.sum -------------------------------------------------------------------------------- /testdata/ecdsa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FiloSottile/keygen/HEAD/testdata/ecdsa.json --------------------------------------------------------------------------------