aboutsummaryrefslogtreecommitdiffstats
path: root/src/build-data/oids.txt
Commit message (Collapse)AuthorAgeFilesLines
* X.509 RSA-PSS verificationDaniel Neus2017-10-201-0/+8
|
* Correct the SHA-3 PKCSv1.5 IDsJack Lloyd2017-10-051-0/+2
| | | | | | | Thanks to @noloader for pointing me at draft-jivsov-openpgp-sha3-01 which has the correct values. Adds a test so this can't happen again.
* Add Streebog hash (GOST R 34.11-2012).Daniel Wyatt2017-08-041-0/+3
|
* Add SM2 signature schemeJack Lloyd2017-06-291-0/+6
| | | | | | From https://tools.ietf.org/html/draft-shen-sm2-ecdsa-02 This is a contribution from Ribose Inc (@riboseinc).
* Moved to draft-ietf-curdle-pkix assigned OIDsFrancis Dupont2017-06-121-2/+2
|
* Add Ed25519 key type and testsJack Lloyd2017-06-071-0/+1
| | | | This work was sponsored by Ribose Inc
* Add SM3 OIDs and PKCSv1.5 hash prefixJack Lloyd2017-05-191-0/+3
|
* Add key_constraints_to_string, GOST-34.10 cert handlingJack Lloyd2016-11-181-0/+2
| | | | Add some try/catch blocks to the X.509 tests, and use create_private_key API
* Add OIDs for SHA-3 and SHA-3 signature algorithmsJack Lloyd2016-11-171-1/+30
| | | | | Also CCM OIDS, and SHA-384/SHA-512 DSA OIDs. All from NIST: http://csrc.nist.gov/groups/ST/crypto_apps_infra/csor/algorithms.html
* Add OID for XMSSJack Lloyd2016-11-061-0/+3
| | | | [ci skip]
* Remove ability to add OIDS at runtime. Remove global OID lock.Jack Lloyd2016-11-031-0/+211
OID map is now generated from an input file on an as needed basis. Just uses a sequence of ifs - simple, fast, and small code size. Merges oid_lookup sub-module which was already required by asn1 anyway, so completely non-optional. Removes @neusdan's nice OID tests since without any runtime adds the tests are moot.