├── .github └── workflows │ ├── oids.py │ ├── oids.yml │ ├── validate.sh │ └── validate.yml ├── .gitignore ├── LICENSE ├── README.md ├── anssi └── curves.json ├── bls └── curves.json ├── bn └── curves.json ├── brainpool └── curves.json ├── gost └── curves.json ├── mnt └── curves.json ├── nist └── curves.json ├── nums └── curves.json ├── oakley └── curves.json ├── oscaa └── curves.json ├── other └── curves.json ├── schema.json ├── secg └── curves.json ├── wtls └── curves.json ├── x962 └── curves.json └── x963 └── curves.json /.github/workflows/oids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J08nY/std-curves/HEAD/.github/workflows/oids.py -------------------------------------------------------------------------------- /.github/workflows/oids.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J08nY/std-curves/HEAD/.github/workflows/oids.yml -------------------------------------------------------------------------------- /.github/workflows/validate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J08nY/std-curves/HEAD/.github/workflows/validate.sh -------------------------------------------------------------------------------- /.github/workflows/validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J08nY/std-curves/HEAD/.github/workflows/validate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J08nY/std-curves/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J08nY/std-curves/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J08nY/std-curves/HEAD/README.md -------------------------------------------------------------------------------- /anssi/curves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J08nY/std-curves/HEAD/anssi/curves.json -------------------------------------------------------------------------------- /bls/curves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J08nY/std-curves/HEAD/bls/curves.json -------------------------------------------------------------------------------- /bn/curves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J08nY/std-curves/HEAD/bn/curves.json -------------------------------------------------------------------------------- /brainpool/curves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J08nY/std-curves/HEAD/brainpool/curves.json -------------------------------------------------------------------------------- /gost/curves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J08nY/std-curves/HEAD/gost/curves.json -------------------------------------------------------------------------------- /mnt/curves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J08nY/std-curves/HEAD/mnt/curves.json -------------------------------------------------------------------------------- /nist/curves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J08nY/std-curves/HEAD/nist/curves.json -------------------------------------------------------------------------------- /nums/curves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J08nY/std-curves/HEAD/nums/curves.json -------------------------------------------------------------------------------- /oakley/curves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J08nY/std-curves/HEAD/oakley/curves.json -------------------------------------------------------------------------------- /oscaa/curves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J08nY/std-curves/HEAD/oscaa/curves.json -------------------------------------------------------------------------------- /other/curves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J08nY/std-curves/HEAD/other/curves.json -------------------------------------------------------------------------------- /schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J08nY/std-curves/HEAD/schema.json -------------------------------------------------------------------------------- /secg/curves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J08nY/std-curves/HEAD/secg/curves.json -------------------------------------------------------------------------------- /wtls/curves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J08nY/std-curves/HEAD/wtls/curves.json -------------------------------------------------------------------------------- /x962/curves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J08nY/std-curves/HEAD/x962/curves.json -------------------------------------------------------------------------------- /x963/curves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J08nY/std-curves/HEAD/x963/curves.json --------------------------------------------------------------------------------