objects.txt 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866
  1. # CCITT was renamed to ITU-T quite some time ago
  2. 0 : ITU-T : itu-t
  3. !Alias ccitt itu-t
  4. 1 : ISO : iso
  5. 2 : JOINT-ISO-ITU-T : joint-iso-itu-t
  6. !Alias joint-iso-ccitt joint-iso-itu-t
  7. iso 2 : member-body : ISO Member Body
  8. iso 3 : identified-organization
  9. # GMAC OID
  10. iso 0 9797 3 4 : GMAC : gmac
  11. # HMAC OIDs
  12. identified-organization 6 1 5 5 8 1 1 : HMAC-MD5 : hmac-md5
  13. identified-organization 6 1 5 5 8 1 2 : HMAC-SHA1 : hmac-sha1
  14. # "1.3.36.8.3.3"
  15. identified-organization 36 8 3 3 : x509ExtAdmission : Professional Information or basis for Admission
  16. identified-organization 132 : certicom-arc
  17. identified-organization 111 : ieee
  18. ieee 2 1619 : ieee-siswg : IEEE Security in Storage Working Group
  19. joint-iso-itu-t 23 : international-organizations : International Organizations
  20. international-organizations 43 : wap
  21. wap 1 : wap-wsg
  22. joint-iso-itu-t 5 1 5 : selected-attribute-types : Selected Attribute Types
  23. selected-attribute-types 55 : clearance
  24. member-body 840 : ISO-US : ISO US Member Body
  25. ISO-US 10040 : X9-57 : X9.57
  26. X9-57 4 : X9cm : X9.57 CM ?
  27. member-body 156 : ISO-CN : ISO CN Member Body
  28. ISO-CN 10197 : oscca
  29. oscca 1 : sm-scheme
  30. !Cname dsa
  31. X9cm 1 : DSA : dsaEncryption
  32. X9cm 3 : DSA-SHA1 : dsaWithSHA1
  33. ISO-US 10045 : ansi-X9-62 : ANSI X9.62
  34. !module X9-62
  35. !Alias id-fieldType ansi-X9-62 1
  36. X9-62_id-fieldType 1 : prime-field
  37. X9-62_id-fieldType 2 : characteristic-two-field
  38. X9-62_characteristic-two-field 3 : id-characteristic-two-basis
  39. X9-62_id-characteristic-two-basis 1 : onBasis
  40. X9-62_id-characteristic-two-basis 2 : tpBasis
  41. X9-62_id-characteristic-two-basis 3 : ppBasis
  42. !Alias id-publicKeyType ansi-X9-62 2
  43. X9-62_id-publicKeyType 1 : id-ecPublicKey
  44. !Alias ellipticCurve ansi-X9-62 3
  45. !Alias c-TwoCurve X9-62_ellipticCurve 0
  46. X9-62_c-TwoCurve 1 : c2pnb163v1
  47. X9-62_c-TwoCurve 2 : c2pnb163v2
  48. X9-62_c-TwoCurve 3 : c2pnb163v3
  49. X9-62_c-TwoCurve 4 : c2pnb176v1
  50. X9-62_c-TwoCurve 5 : c2tnb191v1
  51. X9-62_c-TwoCurve 6 : c2tnb191v2
  52. X9-62_c-TwoCurve 7 : c2tnb191v3
  53. X9-62_c-TwoCurve 8 : c2onb191v4
  54. X9-62_c-TwoCurve 9 : c2onb191v5
  55. X9-62_c-TwoCurve 10 : c2pnb208w1
  56. X9-62_c-TwoCurve 11 : c2tnb239v1
  57. X9-62_c-TwoCurve 12 : c2tnb239v2
  58. X9-62_c-TwoCurve 13 : c2tnb239v3
  59. X9-62_c-TwoCurve 14 : c2onb239v4
  60. X9-62_c-TwoCurve 15 : c2onb239v5
  61. X9-62_c-TwoCurve 16 : c2pnb272w1
  62. X9-62_c-TwoCurve 17 : c2pnb304w1
  63. X9-62_c-TwoCurve 18 : c2tnb359v1
  64. X9-62_c-TwoCurve 19 : c2pnb368w1
  65. X9-62_c-TwoCurve 20 : c2tnb431r1
  66. !Alias primeCurve X9-62_ellipticCurve 1
  67. X9-62_primeCurve 1 : prime192v1
  68. X9-62_primeCurve 2 : prime192v2
  69. X9-62_primeCurve 3 : prime192v3
  70. X9-62_primeCurve 4 : prime239v1
  71. X9-62_primeCurve 5 : prime239v2
  72. X9-62_primeCurve 6 : prime239v3
  73. X9-62_primeCurve 7 : prime256v1
  74. !Alias id-ecSigType ansi-X9-62 4
  75. !global
  76. X9-62_id-ecSigType 1 : ecdsa-with-SHA1
  77. X9-62_id-ecSigType 2 : ecdsa-with-Recommended
  78. X9-62_id-ecSigType 3 : ecdsa-with-Specified
  79. ecdsa-with-Specified 1 : ecdsa-with-SHA224
  80. ecdsa-with-Specified 2 : ecdsa-with-SHA256
  81. ecdsa-with-Specified 3 : ecdsa-with-SHA384
  82. ecdsa-with-Specified 4 : ecdsa-with-SHA512
  83. # SECG curve OIDs from "SEC 2: Recommended Elliptic Curve Domain Parameters"
  84. # (http://www.secg.org/)
  85. !Alias secg_ellipticCurve certicom-arc 0
  86. # SECG prime curves OIDs
  87. secg-ellipticCurve 6 : secp112r1
  88. secg-ellipticCurve 7 : secp112r2
  89. secg-ellipticCurve 28 : secp128r1
  90. secg-ellipticCurve 29 : secp128r2
  91. secg-ellipticCurve 9 : secp160k1
  92. secg-ellipticCurve 8 : secp160r1
  93. secg-ellipticCurve 30 : secp160r2
  94. secg-ellipticCurve 31 : secp192k1
  95. # NOTE: the curve secp192r1 is the same as prime192v1 defined above
  96. # and is therefore omitted
  97. secg-ellipticCurve 32 : secp224k1
  98. secg-ellipticCurve 33 : secp224r1
  99. secg-ellipticCurve 10 : secp256k1
  100. # NOTE: the curve secp256r1 is the same as prime256v1 defined above
  101. # and is therefore omitted
  102. secg-ellipticCurve 34 : secp384r1
  103. secg-ellipticCurve 35 : secp521r1
  104. # SECG characteristic two curves OIDs
  105. secg-ellipticCurve 4 : sect113r1
  106. secg-ellipticCurve 5 : sect113r2
  107. secg-ellipticCurve 22 : sect131r1
  108. secg-ellipticCurve 23 : sect131r2
  109. secg-ellipticCurve 1 : sect163k1
  110. secg-ellipticCurve 2 : sect163r1
  111. secg-ellipticCurve 15 : sect163r2
  112. secg-ellipticCurve 24 : sect193r1
  113. secg-ellipticCurve 25 : sect193r2
  114. secg-ellipticCurve 26 : sect233k1
  115. secg-ellipticCurve 27 : sect233r1
  116. secg-ellipticCurve 3 : sect239k1
  117. secg-ellipticCurve 16 : sect283k1
  118. secg-ellipticCurve 17 : sect283r1
  119. secg-ellipticCurve 36 : sect409k1
  120. secg-ellipticCurve 37 : sect409r1
  121. secg-ellipticCurve 38 : sect571k1
  122. secg-ellipticCurve 39 : sect571r1
  123. # WAP/TLS curve OIDs (http://www.wapforum.org/)
  124. !Alias wap-wsg-idm-ecid wap-wsg 4
  125. wap-wsg-idm-ecid 1 : wap-wsg-idm-ecid-wtls1
  126. wap-wsg-idm-ecid 3 : wap-wsg-idm-ecid-wtls3
  127. wap-wsg-idm-ecid 4 : wap-wsg-idm-ecid-wtls4
  128. wap-wsg-idm-ecid 5 : wap-wsg-idm-ecid-wtls5
  129. wap-wsg-idm-ecid 6 : wap-wsg-idm-ecid-wtls6
  130. wap-wsg-idm-ecid 7 : wap-wsg-idm-ecid-wtls7
  131. wap-wsg-idm-ecid 8 : wap-wsg-idm-ecid-wtls8
  132. wap-wsg-idm-ecid 9 : wap-wsg-idm-ecid-wtls9
  133. wap-wsg-idm-ecid 10 : wap-wsg-idm-ecid-wtls10
  134. wap-wsg-idm-ecid 11 : wap-wsg-idm-ecid-wtls11
  135. wap-wsg-idm-ecid 12 : wap-wsg-idm-ecid-wtls12
  136. ISO-US 113533 7 66 10 : CAST5-CBC : cast5-cbc
  137. : CAST5-ECB : cast5-ecb
  138. !Cname cast5-cfb64
  139. : CAST5-CFB : cast5-cfb
  140. !Cname cast5-ofb64
  141. : CAST5-OFB : cast5-ofb
  142. !Cname pbeWithMD5AndCast5-CBC
  143. ISO-US 113533 7 66 12 : : pbeWithMD5AndCast5CBC
  144. # Macs for CMP and CRMF
  145. ISO-US 113533 7 66 13 : id-PasswordBasedMAC : password based MAC
  146. ISO-US 113533 7 66 30 : id-DHBasedMac : Diffie-Hellman based MAC
  147. ISO-US 113549 : rsadsi : RSA Data Security, Inc.
  148. rsadsi 1 : pkcs : RSA Data Security, Inc. PKCS
  149. pkcs 1 : pkcs1
  150. pkcs1 1 : : rsaEncryption
  151. pkcs1 2 : RSA-MD2 : md2WithRSAEncryption
  152. pkcs1 3 : RSA-MD4 : md4WithRSAEncryption
  153. pkcs1 4 : RSA-MD5 : md5WithRSAEncryption
  154. pkcs1 5 : RSA-SHA1 : sha1WithRSAEncryption
  155. # According to PKCS #1 version 2.1
  156. pkcs1 7 : RSAES-OAEP : rsaesOaep
  157. pkcs1 8 : MGF1 : mgf1
  158. pkcs1 9 : PSPECIFIED : pSpecified
  159. pkcs1 10 : RSASSA-PSS : rsassaPss
  160. pkcs1 11 : RSA-SHA256 : sha256WithRSAEncryption
  161. pkcs1 12 : RSA-SHA384 : sha384WithRSAEncryption
  162. pkcs1 13 : RSA-SHA512 : sha512WithRSAEncryption
  163. pkcs1 14 : RSA-SHA224 : sha224WithRSAEncryption
  164. pkcs1 15 : RSA-SHA512/224 : sha512-224WithRSAEncryption
  165. pkcs1 16 : RSA-SHA512/256 : sha512-256WithRSAEncryption
  166. pkcs 3 : pkcs3
  167. pkcs3 1 : : dhKeyAgreement
  168. pkcs 5 : pkcs5
  169. pkcs5 1 : PBE-MD2-DES : pbeWithMD2AndDES-CBC
  170. pkcs5 3 : PBE-MD5-DES : pbeWithMD5AndDES-CBC
  171. pkcs5 4 : PBE-MD2-RC2-64 : pbeWithMD2AndRC2-CBC
  172. pkcs5 6 : PBE-MD5-RC2-64 : pbeWithMD5AndRC2-CBC
  173. pkcs5 10 : PBE-SHA1-DES : pbeWithSHA1AndDES-CBC
  174. pkcs5 11 : PBE-SHA1-RC2-64 : pbeWithSHA1AndRC2-CBC
  175. !Cname id_pbkdf2
  176. pkcs5 12 : : PBKDF2
  177. !Cname pbes2
  178. pkcs5 13 : : PBES2
  179. !Cname pbmac1
  180. pkcs5 14 : : PBMAC1
  181. pkcs 7 : pkcs7
  182. pkcs7 1 : : pkcs7-data
  183. !Cname pkcs7-signed
  184. pkcs7 2 : : pkcs7-signedData
  185. !Cname pkcs7-enveloped
  186. pkcs7 3 : : pkcs7-envelopedData
  187. !Cname pkcs7-signedAndEnveloped
  188. pkcs7 4 : : pkcs7-signedAndEnvelopedData
  189. !Cname pkcs7-digest
  190. pkcs7 5 : : pkcs7-digestData
  191. !Cname pkcs7-encrypted
  192. pkcs7 6 : : pkcs7-encryptedData
  193. pkcs 9 : pkcs9
  194. !module pkcs9
  195. pkcs9 1 : : emailAddress
  196. pkcs9 2 : : unstructuredName
  197. pkcs9 3 : : contentType
  198. pkcs9 4 : : messageDigest
  199. pkcs9 5 : : signingTime
  200. pkcs9 6 : : countersignature
  201. pkcs9 7 : : challengePassword
  202. pkcs9 8 : : unstructuredAddress
  203. !Cname extCertAttributes
  204. pkcs9 9 : : extendedCertificateAttributes
  205. !global
  206. !Cname ext-req
  207. pkcs9 14 : extReq : Extension Request
  208. !Cname SMIMECapabilities
  209. pkcs9 15 : SMIME-CAPS : S/MIME Capabilities
  210. # S/MIME
  211. !Cname SMIME
  212. pkcs9 16 : SMIME : S/MIME
  213. SMIME 0 : id-smime-mod
  214. SMIME 1 : id-smime-ct
  215. SMIME 2 : id-smime-aa
  216. SMIME 3 : id-smime-alg
  217. SMIME 4 : id-smime-cd
  218. SMIME 5 : id-smime-spq
  219. SMIME 6 : id-smime-cti
  220. # S/MIME Modules
  221. id-smime-mod 1 : id-smime-mod-cms
  222. id-smime-mod 2 : id-smime-mod-ess
  223. id-smime-mod 3 : id-smime-mod-oid
  224. id-smime-mod 4 : id-smime-mod-msg-v3
  225. id-smime-mod 5 : id-smime-mod-ets-eSignature-88
  226. id-smime-mod 6 : id-smime-mod-ets-eSignature-97
  227. id-smime-mod 7 : id-smime-mod-ets-eSigPolicy-88
  228. id-smime-mod 8 : id-smime-mod-ets-eSigPolicy-97
  229. # S/MIME Content Types
  230. id-smime-ct 1 : id-smime-ct-receipt
  231. id-smime-ct 2 : id-smime-ct-authData
  232. id-smime-ct 3 : id-smime-ct-publishCert
  233. id-smime-ct 4 : id-smime-ct-TSTInfo
  234. id-smime-ct 5 : id-smime-ct-TDTInfo
  235. id-smime-ct 6 : id-smime-ct-contentInfo
  236. id-smime-ct 7 : id-smime-ct-DVCSRequestData
  237. id-smime-ct 8 : id-smime-ct-DVCSResponseData
  238. id-smime-ct 9 : id-smime-ct-compressedData
  239. id-smime-ct 19 : id-smime-ct-contentCollection
  240. id-smime-ct 23 : id-smime-ct-authEnvelopedData
  241. id-smime-ct 24 : id-ct-routeOriginAuthz
  242. id-smime-ct 26 : id-ct-rpkiManifest
  243. id-smime-ct 27 : id-ct-asciiTextWithCRLF
  244. id-smime-ct 28 : id-ct-xml
  245. id-smime-ct 35 : id-ct-rpkiGhostbusters
  246. id-smime-ct 36 : id-ct-resourceTaggedAttest
  247. id-smime-ct 47 : id-ct-geofeedCSVwithCRLF
  248. id-smime-ct 48 : id-ct-signedChecklist
  249. id-smime-ct 49 : id-ct-ASPA
  250. id-smime-ct 50 : id-ct-signedTAL
  251. id-smime-ct 51 : id-ct-rpkiSignedPrefixList
  252. # S/MIME Attributes
  253. id-smime-aa 1 : id-smime-aa-receiptRequest
  254. id-smime-aa 2 : id-smime-aa-securityLabel
  255. id-smime-aa 3 : id-smime-aa-mlExpandHistory
  256. id-smime-aa 4 : id-smime-aa-contentHint
  257. id-smime-aa 5 : id-smime-aa-msgSigDigest
  258. # obsolete
  259. id-smime-aa 6 : id-smime-aa-encapContentType
  260. id-smime-aa 7 : id-smime-aa-contentIdentifier
  261. # obsolete
  262. id-smime-aa 8 : id-smime-aa-macValue
  263. id-smime-aa 9 : id-smime-aa-equivalentLabels
  264. id-smime-aa 10 : id-smime-aa-contentReference
  265. id-smime-aa 11 : id-smime-aa-encrypKeyPref
  266. id-smime-aa 12 : id-smime-aa-signingCertificate
  267. id-smime-aa 13 : id-smime-aa-smimeEncryptCerts
  268. id-smime-aa 14 : id-smime-aa-timeStampToken
  269. id-smime-aa 15 : id-smime-aa-ets-sigPolicyId
  270. id-smime-aa 16 : id-smime-aa-ets-commitmentType
  271. id-smime-aa 17 : id-smime-aa-ets-signerLocation
  272. id-smime-aa 18 : id-smime-aa-ets-signerAttr
  273. id-smime-aa 19 : id-smime-aa-ets-otherSigCert
  274. id-smime-aa 20 : id-smime-aa-ets-contentTimestamp
  275. id-smime-aa 21 : id-smime-aa-ets-CertificateRefs
  276. id-smime-aa 22 : id-smime-aa-ets-RevocationRefs
  277. id-smime-aa 23 : id-smime-aa-ets-certValues
  278. id-smime-aa 24 : id-smime-aa-ets-revocationValues
  279. id-smime-aa 25 : id-smime-aa-ets-escTimeStamp
  280. id-smime-aa 26 : id-smime-aa-ets-certCRLTimestamp
  281. id-smime-aa 27 : id-smime-aa-ets-archiveTimeStamp
  282. id-smime-aa 28 : id-smime-aa-signatureType
  283. id-smime-aa 29 : id-smime-aa-dvcs-dvc
  284. id-smime-aa 44 : id-aa-ets-attrCertificateRefs
  285. id-smime-aa 45 : id-aa-ets-attrRevocationRefs
  286. id-smime-aa 47 : id-smime-aa-signingCertificateV2
  287. id-smime-aa 48 : id-aa-ets-archiveTimestampV2
  288. # S/MIME Algorithm Identifiers
  289. # obsolete
  290. id-smime-alg 1 : id-smime-alg-ESDHwith3DES
  291. # obsolete
  292. id-smime-alg 2 : id-smime-alg-ESDHwithRC2
  293. # obsolete
  294. id-smime-alg 3 : id-smime-alg-3DESwrap
  295. # obsolete
  296. id-smime-alg 4 : id-smime-alg-RC2wrap
  297. id-smime-alg 5 : id-smime-alg-ESDH
  298. id-smime-alg 6 : id-smime-alg-CMS3DESwrap
  299. id-smime-alg 7 : id-smime-alg-CMSRC2wrap
  300. id-smime-alg 9 : id-alg-PWRI-KEK
  301. # S/MIME Certificate Distribution
  302. id-smime-cd 1 : id-smime-cd-ldap
  303. # S/MIME Signature Policy Qualifier
  304. id-smime-spq 1 : id-smime-spq-ets-sqt-uri
  305. id-smime-spq 2 : id-smime-spq-ets-sqt-unotice
  306. # S/MIME Commitment Type Identifier
  307. id-smime-cti 1 : id-smime-cti-ets-proofOfOrigin
  308. id-smime-cti 2 : id-smime-cti-ets-proofOfReceipt
  309. id-smime-cti 3 : id-smime-cti-ets-proofOfDelivery
  310. id-smime-cti 4 : id-smime-cti-ets-proofOfSender
  311. id-smime-cti 5 : id-smime-cti-ets-proofOfApproval
  312. id-smime-cti 6 : id-smime-cti-ets-proofOfCreation
  313. pkcs9 20 : : friendlyName
  314. pkcs9 21 : : localKeyID
  315. !Alias ms-corp 1 3 6 1 4 1 311
  316. !Cname ms-csp-name
  317. ms-corp 17 1 : CSPName : Microsoft CSP Name
  318. ms-corp 17 2 : LocalKeySet : Microsoft Local Key set
  319. !Alias certTypes pkcs9 22
  320. certTypes 1 : : x509Certificate
  321. certTypes 2 : : sdsiCertificate
  322. !Alias crlTypes pkcs9 23
  323. crlTypes 1 : : x509Crl
  324. pkcs9 52 : id-aa-CMSAlgorithmProtection
  325. !Alias pkcs12 pkcs 12
  326. !Alias pkcs12-pbeids pkcs12 1
  327. !Cname pbe-WithSHA1And128BitRC4
  328. pkcs12-pbeids 1 : PBE-SHA1-RC4-128 : pbeWithSHA1And128BitRC4
  329. !Cname pbe-WithSHA1And40BitRC4
  330. pkcs12-pbeids 2 : PBE-SHA1-RC4-40 : pbeWithSHA1And40BitRC4
  331. !Cname pbe-WithSHA1And3_Key_TripleDES-CBC
  332. pkcs12-pbeids 3 : PBE-SHA1-3DES : pbeWithSHA1And3-KeyTripleDES-CBC
  333. !Cname pbe-WithSHA1And2_Key_TripleDES-CBC
  334. pkcs12-pbeids 4 : PBE-SHA1-2DES : pbeWithSHA1And2-KeyTripleDES-CBC
  335. !Cname pbe-WithSHA1And128BitRC2-CBC
  336. pkcs12-pbeids 5 : PBE-SHA1-RC2-128 : pbeWithSHA1And128BitRC2-CBC
  337. !Cname pbe-WithSHA1And40BitRC2-CBC
  338. pkcs12-pbeids 6 : PBE-SHA1-RC2-40 : pbeWithSHA1And40BitRC2-CBC
  339. !Alias pkcs12-Version1 pkcs12 10
  340. !Alias pkcs12-BagIds pkcs12-Version1 1
  341. pkcs12-BagIds 1 : : keyBag
  342. pkcs12-BagIds 2 : : pkcs8ShroudedKeyBag
  343. pkcs12-BagIds 3 : : certBag
  344. pkcs12-BagIds 4 : : crlBag
  345. pkcs12-BagIds 5 : : secretBag
  346. pkcs12-BagIds 6 : : safeContentsBag
  347. rsadsi 2 2 : MD2 : md2
  348. rsadsi 2 4 : MD4 : md4
  349. rsadsi 2 5 : MD5 : md5
  350. : MD5-SHA1 : md5-sha1
  351. rsadsi 2 6 : : hmacWithMD5
  352. rsadsi 2 7 : : hmacWithSHA1
  353. sm-scheme 301 : SM2 : sm2
  354. sm-scheme 401 : SM3 : sm3
  355. sm-scheme 504 : RSA-SM3 : sm3WithRSAEncryption
  356. sm-scheme 501 : SM2-SM3 : SM2-with-SM3
  357. # From GM/T 0091-2020
  358. sm3 3 1 : : hmacWithSM3
  359. # From RFC4231
  360. rsadsi 2 8 : : hmacWithSHA224
  361. rsadsi 2 9 : : hmacWithSHA256
  362. rsadsi 2 10 : : hmacWithSHA384
  363. rsadsi 2 11 : : hmacWithSHA512
  364. # From RFC8018
  365. rsadsi 2 12 : : hmacWithSHA512-224
  366. rsadsi 2 13 : : hmacWithSHA512-256
  367. rsadsi 3 2 : RC2-CBC : rc2-cbc
  368. : RC2-ECB : rc2-ecb
  369. !Cname rc2-cfb64
  370. : RC2-CFB : rc2-cfb
  371. !Cname rc2-ofb64
  372. : RC2-OFB : rc2-ofb
  373. : RC2-40-CBC : rc2-40-cbc
  374. : RC2-64-CBC : rc2-64-cbc
  375. rsadsi 3 4 : RC4 : rc4
  376. : RC4-40 : rc4-40
  377. rsadsi 3 7 : DES-EDE3-CBC : des-ede3-cbc
  378. rsadsi 3 8 : RC5-CBC : rc5-cbc
  379. : RC5-ECB : rc5-ecb
  380. !Cname rc5-cfb64
  381. : RC5-CFB : rc5-cfb
  382. !Cname rc5-ofb64
  383. : RC5-OFB : rc5-ofb
  384. !Cname ms-ext-req
  385. ms-corp 2 1 14 : msExtReq : Microsoft Extension Request
  386. !Cname ms-code-ind
  387. ms-corp 2 1 21 : msCodeInd : Microsoft Individual Code Signing
  388. !Cname ms-code-com
  389. ms-corp 2 1 22 : msCodeCom : Microsoft Commercial Code Signing
  390. !Cname ms-ctl-sign
  391. ms-corp 10 3 1 : msCTLSign : Microsoft Trust List Signing
  392. !Cname ms-sgc
  393. ms-corp 10 3 3 : msSGC : Microsoft Server Gated Crypto
  394. !Cname ms-efs
  395. ms-corp 10 3 4 : msEFS : Microsoft Encrypted File System
  396. !Cname ms-smartcard-login
  397. ms-corp 20 2 2 : msSmartcardLogin : Microsoft Smartcard Login
  398. !Cname ms-upn
  399. ms-corp 20 2 3 : msUPN : Microsoft User Principal Name
  400. ms-corp 25 2 : ms-ntds-sec-ext : Microsoft NTDS CA Extension
  401. ms-corp 25 2 1 : ms-ntds-obj-sid : Microsoft NTDS AD objectSid
  402. ms-corp 21 7 : ms-cert-templ : Microsoft certificate template
  403. ms-corp 21 10 : ms-app-policies : Microsoft Application Policies Extension
  404. 1 3 6 1 4 1 188 7 1 1 2 : IDEA-CBC : idea-cbc
  405. : IDEA-ECB : idea-ecb
  406. !Cname idea-cfb64
  407. : IDEA-CFB : idea-cfb
  408. !Cname idea-ofb64
  409. : IDEA-OFB : idea-ofb
  410. 1 3 6 1 4 1 3029 1 2 : BF-CBC : bf-cbc
  411. : BF-ECB : bf-ecb
  412. !Cname bf-cfb64
  413. : BF-CFB : bf-cfb
  414. !Cname bf-ofb64
  415. : BF-OFB : bf-ofb
  416. !Cname id-pkix
  417. 1 3 6 1 5 5 7 : PKIX
  418. # PKIX Arcs
  419. id-pkix 0 : id-pkix-mod
  420. id-pkix 1 : id-pe
  421. id-pkix 2 : id-qt
  422. id-pkix 3 : id-kp
  423. id-pkix 4 : id-it
  424. id-pkix 5 : id-pkip
  425. id-pkix 6 : id-alg
  426. id-pkix 7 : id-cmc
  427. id-pkix 8 : id-on
  428. id-pkix 9 : id-pda
  429. id-pkix 10 : id-aca
  430. id-pkix 11 : id-qcs
  431. id-pkix 14 : id-cp
  432. id-pkix 12 : id-cct
  433. id-pkix 21 : id-ppl
  434. id-pkix 48 : id-ad
  435. # PKIX Modules
  436. id-pkix-mod 1 : id-pkix1-explicit-88
  437. id-pkix-mod 2 : id-pkix1-implicit-88
  438. id-pkix-mod 3 : id-pkix1-explicit-93
  439. id-pkix-mod 4 : id-pkix1-implicit-93
  440. id-pkix-mod 5 : id-mod-crmf
  441. id-pkix-mod 6 : id-mod-cmc
  442. id-pkix-mod 7 : id-mod-kea-profile-88
  443. id-pkix-mod 8 : id-mod-kea-profile-93
  444. id-pkix-mod 9 : id-mod-cmp
  445. id-pkix-mod 10 : id-mod-qualified-cert-88
  446. id-pkix-mod 11 : id-mod-qualified-cert-93
  447. id-pkix-mod 12 : id-mod-attribute-cert
  448. id-pkix-mod 13 : id-mod-timestamp-protocol
  449. id-pkix-mod 14 : id-mod-ocsp
  450. id-pkix-mod 15 : id-mod-dvcs
  451. id-pkix-mod 16 : id-mod-cmp2000
  452. id-pkix-mod 50 : id-mod-cmp2000-02
  453. id-pkix-mod 99 : id-mod-cmp2021-88
  454. id-pkix-mod 100 : id-mod-cmp2021-02
  455. # PKIX Private Extensions
  456. !Cname info-access
  457. id-pe 1 : authorityInfoAccess : Authority Information Access
  458. id-pe 2 : biometricInfo : Biometric Info
  459. id-pe 3 : qcStatements
  460. id-pe 4 : ac-auditEntity
  461. id-pe 5 : ac-targeting
  462. id-pe 6 : aaControls
  463. id-pe 7 : sbgp-ipAddrBlock
  464. id-pe 8 : sbgp-autonomousSysNum
  465. id-pe 9 : sbgp-routerIdentifier
  466. id-pe 10 : ac-proxying
  467. !Cname sinfo-access
  468. id-pe 11 : subjectInfoAccess : Subject Information Access
  469. id-pe 14 : proxyCertInfo : Proxy Certificate Information
  470. id-pe 24 : tlsfeature : TLS Feature
  471. id-pe 28 : sbgp-ipAddrBlockv2
  472. id-pe 29 : sbgp-autonomousSysNumv2
  473. # PKIX policyQualifiers for Internet policy qualifiers
  474. id-qt 1 : id-qt-cps : Policy Qualifier CPS
  475. id-qt 2 : id-qt-unotice : Policy Qualifier User Notice
  476. id-qt 3 : textNotice
  477. # https://www.iana.org/assignments/smi-numbers/smi-numbers.xhtml#smi-numbers-1.3.6.1.5.5.7.3
  478. # PKIX key purpose identifiers
  479. !Cname server-auth
  480. id-kp 1 : serverAuth : TLS Web Server Authentication
  481. !Cname client-auth
  482. id-kp 2 : clientAuth : TLS Web Client Authentication
  483. !Cname code-sign
  484. id-kp 3 : codeSigning : Code Signing
  485. !Cname email-protect
  486. id-kp 4 : emailProtection : E-mail Protection
  487. id-kp 5 : ipsecEndSystem : IPSec End System
  488. id-kp 6 : ipsecTunnel : IPSec Tunnel
  489. id-kp 7 : ipsecUser : IPSec User
  490. !Cname time-stamp
  491. id-kp 8 : timeStamping : Time Stamping
  492. # From OCSP spec RFC2560
  493. !Cname OCSP-sign
  494. id-kp 9 : OCSPSigning : OCSP Signing
  495. id-kp 10 : DVCS : dvcs
  496. !Cname ipsec-IKE
  497. id-kp 17 : ipsecIKE : ipsec Internet Key Exchange
  498. id-kp 18 : capwapAC : Ctrl/provision WAP Access
  499. id-kp 19 : capwapWTP : Ctrl/Provision WAP Termination
  500. !Cname sshClient
  501. id-kp 21 : secureShellClient : SSH Client
  502. !Cname sshServer
  503. id-kp 22 : secureShellServer : SSH Server
  504. id-kp 23 : sendRouter : Send Router
  505. id-kp 24 : sendProxiedRouter : Send Proxied Router
  506. id-kp 25 : sendOwner : Send Owner
  507. id-kp 26 : sendProxiedOwner : Send Proxied Owner
  508. id-kp 27 : cmcCA : CMC Certificate Authority
  509. id-kp 28 : cmcRA : CMC Registration Authority
  510. id-kp 29 : cmcArchive : CMC Archive Server
  511. id-kp 30 : id-kp-bgpsec-router : BGPsec Router
  512. id-kp 31 : id-kp-BrandIndicatorforMessageIdentification : Brand Indicator for Message Identification
  513. id-kp 32 : cmKGA : Certificate Management Key Generation Authority
  514. # https://www.iana.org/assignments/smi-numbers/smi-numbers.xhtml#smi-numbers-1.3.6.1.5.5.7.4
  515. # CMP information types
  516. id-it 1 : id-it-caProtEncCert
  517. id-it 2 : id-it-signKeyPairTypes
  518. id-it 3 : id-it-encKeyPairTypes
  519. id-it 4 : id-it-preferredSymmAlg
  520. id-it 5 : id-it-caKeyUpdateInfo
  521. id-it 6 : id-it-currentCRL
  522. id-it 7 : id-it-unsupportedOIDs
  523. # [Reserved and Obsolete]:
  524. id-it 8 : id-it-subscriptionRequest
  525. # [Reserved and Obsolete]:
  526. id-it 9 : id-it-subscriptionResponse
  527. id-it 10 : id-it-keyPairParamReq
  528. id-it 11 : id-it-keyPairParamRep
  529. id-it 12 : id-it-revPassphrase
  530. id-it 13 : id-it-implicitConfirm
  531. id-it 14 : id-it-confirmWaitTime
  532. id-it 15 : id-it-origPKIMessage
  533. id-it 16 : id-it-suppLangTags
  534. id-it 17 : id-it-caCerts
  535. id-it 18 : id-it-rootCaKeyUpdate
  536. id-it 19 : id-it-certReqTemplate
  537. id-it 20 : id-it-rootCaCert
  538. id-it 21 : id-it-certProfile
  539. id-it 22 : id-it-crlStatusList
  540. id-it 23 : id-it-crls
  541. # CRMF registration
  542. id-pkip 1 : id-regCtrl
  543. id-pkip 2 : id-regInfo
  544. # CRMF registration controls
  545. id-regCtrl 1 : id-regCtrl-regToken
  546. id-regCtrl 2 : id-regCtrl-authenticator
  547. id-regCtrl 3 : id-regCtrl-pkiPublicationInfo
  548. id-regCtrl 4 : id-regCtrl-pkiArchiveOptions
  549. id-regCtrl 5 : id-regCtrl-oldCertID
  550. id-regCtrl 6 : id-regCtrl-protocolEncrKey
  551. id-regCtrl 7 : id-regCtrl-altCertTemplate
  552. # id-regCtrl 8 : id-regCtrl-wtlsTemplate [Reserved and Obsolete]
  553. # id-regCtrl 9 : id-regCtrl-regTokenUTF8 [Reserved and Obsolete]
  554. # id-regCtrl 10 : id-regCtrl-authenticatorUTF8 [Reserved and Obsolete]
  555. id-regCtrl 11 : id-regCtrl-algId
  556. id-regCtrl 12 : id-regCtrl-rsaKeyLen
  557. # CRMF registration information
  558. id-regInfo 1 : id-regInfo-utf8Pairs
  559. id-regInfo 2 : id-regInfo-certReq
  560. # algorithms
  561. id-alg 1 : id-alg-des40
  562. id-alg 2 : id-alg-noSignature
  563. id-alg 3 : id-alg-dh-sig-hmac-sha1
  564. id-alg 4 : id-alg-dh-pop
  565. # CMC controls
  566. id-cmc 1 : id-cmc-statusInfo
  567. id-cmc 2 : id-cmc-identification
  568. id-cmc 3 : id-cmc-identityProof
  569. id-cmc 4 : id-cmc-dataReturn
  570. id-cmc 5 : id-cmc-transactionId
  571. id-cmc 6 : id-cmc-senderNonce
  572. id-cmc 7 : id-cmc-recipientNonce
  573. id-cmc 8 : id-cmc-addExtensions
  574. id-cmc 9 : id-cmc-encryptedPOP
  575. id-cmc 10 : id-cmc-decryptedPOP
  576. id-cmc 11 : id-cmc-lraPOPWitness
  577. id-cmc 15 : id-cmc-getCert
  578. id-cmc 16 : id-cmc-getCRL
  579. id-cmc 17 : id-cmc-revokeRequest
  580. id-cmc 18 : id-cmc-regInfo
  581. id-cmc 19 : id-cmc-responseInfo
  582. id-cmc 21 : id-cmc-queryPending
  583. id-cmc 22 : id-cmc-popLinkRandom
  584. id-cmc 23 : id-cmc-popLinkWitness
  585. id-cmc 24 : id-cmc-confirmCertAcceptance
  586. # other names
  587. id-on 1 : id-on-personalData
  588. id-on 3 : id-on-permanentIdentifier : Permanent Identifier
  589. id-on 5 : id-on-xmppAddr : XmppAddr
  590. id-on 7 : id-on-dnsSRV : SRVName
  591. id-on 8 : id-on-NAIRealm : NAIRealm
  592. id-on 9 : id-on-SmtpUTF8Mailbox : Smtp UTF8 Mailbox
  593. # personal data attributes
  594. id-pda 1 : id-pda-dateOfBirth
  595. id-pda 2 : id-pda-placeOfBirth
  596. id-pda 3 : id-pda-gender
  597. id-pda 4 : id-pda-countryOfCitizenship
  598. id-pda 5 : id-pda-countryOfResidence
  599. # attribute certificate attributes
  600. id-aca 1 : id-aca-authenticationInfo
  601. id-aca 2 : id-aca-accessIdentity
  602. id-aca 3 : id-aca-chargingIdentity
  603. id-aca 4 : id-aca-group
  604. # attention : the following seems to be obsolete, replace by 'role'
  605. id-aca 5 : id-aca-role
  606. id-aca 6 : id-aca-encAttrs
  607. # qualified certificate statements
  608. id-qcs 1 : id-qcs-pkixQCSyntax-v1
  609. # PKIX Certificate Policies
  610. id-cp 2 : ipAddr-asNumber
  611. id-cp 3 : ipAddr-asNumberv2
  612. # CMC content types
  613. id-cct 1 : id-cct-crs
  614. id-cct 2 : id-cct-PKIData
  615. id-cct 3 : id-cct-PKIResponse
  616. # Predefined Proxy Certificate policy languages
  617. id-ppl 0 : id-ppl-anyLanguage : Any language
  618. id-ppl 1 : id-ppl-inheritAll : Inherit all
  619. id-ppl 2 : id-ppl-independent : Independent
  620. # access descriptors for authority info access extension
  621. !Cname ad-OCSP
  622. id-ad 1 : OCSP : OCSP
  623. !Cname ad-ca-issuers
  624. id-ad 2 : caIssuers : CA Issuers
  625. !Cname ad-timeStamping
  626. id-ad 3 : ad_timestamping : AD Time Stamping
  627. !Cname ad-dvcs
  628. id-ad 4 : AD_DVCS : ad dvcs
  629. id-ad 5 : caRepository : CA Repository
  630. id-ad 10 : rpkiManifest : RPKI Manifest
  631. id-ad 11 : signedObject : Signed Object
  632. id-ad 13 : rpkiNotify : RPKI Notify
  633. !Alias id-pkix-OCSP ad-OCSP
  634. !module id-pkix-OCSP
  635. !Cname basic
  636. id-pkix-OCSP 1 : basicOCSPResponse : Basic OCSP Response
  637. id-pkix-OCSP 2 : Nonce : OCSP Nonce
  638. id-pkix-OCSP 3 : CrlID : OCSP CRL ID
  639. id-pkix-OCSP 4 : acceptableResponses : Acceptable OCSP Responses
  640. id-pkix-OCSP 5 : noCheck : OCSP No Check
  641. id-pkix-OCSP 6 : archiveCutoff : OCSP Archive Cutoff
  642. id-pkix-OCSP 7 : serviceLocator : OCSP Service Locator
  643. id-pkix-OCSP 8 : extendedStatus : Extended OCSP Status
  644. id-pkix-OCSP 9 : valid
  645. id-pkix-OCSP 10 : path
  646. id-pkix-OCSP 11 : trustRoot : Trust Root
  647. !global
  648. 1 3 14 3 2 : algorithm : algorithm
  649. algorithm 3 : RSA-NP-MD5 : md5WithRSA
  650. algorithm 6 : DES-ECB : des-ecb
  651. algorithm 7 : DES-CBC : des-cbc
  652. !Cname des-ofb64
  653. algorithm 8 : DES-OFB : des-ofb
  654. !Cname des-cfb64
  655. algorithm 9 : DES-CFB : des-cfb
  656. algorithm 11 : rsaSignature
  657. !Cname dsa-2
  658. algorithm 12 : DSA-old : dsaEncryption-old
  659. algorithm 13 : DSA-SHA : dsaWithSHA
  660. algorithm 15 : RSA-SHA : shaWithRSAEncryption
  661. !Cname des-ede-ecb
  662. algorithm 17 : DES-EDE : des-ede
  663. !Cname des-ede3-ecb
  664. : DES-EDE3 : des-ede3
  665. : DES-EDE-CBC : des-ede-cbc
  666. !Cname des-ede-cfb64
  667. : DES-EDE-CFB : des-ede-cfb
  668. !Cname des-ede3-cfb64
  669. : DES-EDE3-CFB : des-ede3-cfb
  670. !Cname des-ede-ofb64
  671. : DES-EDE-OFB : des-ede-ofb
  672. !Cname des-ede3-ofb64
  673. : DES-EDE3-OFB : des-ede3-ofb
  674. : DESX-CBC : desx-cbc
  675. algorithm 18 : SHA : sha
  676. algorithm 26 : SHA1 : sha1
  677. !Cname dsaWithSHA1-2
  678. algorithm 27 : DSA-SHA1-old : dsaWithSHA1-old
  679. algorithm 29 : RSA-SHA1-2 : sha1WithRSA
  680. 1 3 36 3 2 1 : RIPEMD160 : ripemd160
  681. 1 3 36 3 3 1 2 : RSA-RIPEMD160 : ripemd160WithRSA
  682. 1 3 6 1 4 1 1722 12 2 1 : BLAKE2BMAC : blake2bmac
  683. 1 3 6 1 4 1 1722 12 2 2 : BLAKE2SMAC : blake2smac
  684. blake2bmac 16 : BLAKE2b512 : blake2b512
  685. blake2smac 8 : BLAKE2s256 : blake2s256
  686. !Cname sxnet
  687. 1 3 101 1 4 1 : SXNetID : Strong Extranet ID
  688. 2 5 : X500 : directory services (X.500)
  689. X500 4 : X509
  690. X509 3 : CN : commonName
  691. X509 4 : SN : surname
  692. X509 5 : : serialNumber
  693. X509 6 : C : countryName
  694. X509 7 : L : localityName
  695. X509 8 : ST : stateOrProvinceName
  696. X509 9 : street : streetAddress
  697. X509 10 : O : organizationName
  698. X509 11 : OU : organizationalUnitName
  699. X509 12 : title : title
  700. X509 13 : : description
  701. X509 14 : : searchGuide
  702. X509 15 : : businessCategory
  703. X509 16 : : postalAddress
  704. X509 17 : : postalCode
  705. X509 18 : : postOfficeBox
  706. X509 19 : : physicalDeliveryOfficeName
  707. X509 20 : : telephoneNumber
  708. X509 21 : : telexNumber
  709. X509 22 : : teletexTerminalIdentifier
  710. X509 23 : : facsimileTelephoneNumber
  711. X509 24 : : x121Address
  712. X509 25 : : internationaliSDNNumber
  713. X509 26 : : registeredAddress
  714. X509 27 : : destinationIndicator
  715. X509 28 : : preferredDeliveryMethod
  716. X509 29 : : presentationAddress
  717. X509 30 : : supportedApplicationContext
  718. X509 31 : member :
  719. X509 32 : owner :
  720. X509 33 : : roleOccupant
  721. X509 34 : seeAlso :
  722. X509 35 : : userPassword
  723. X509 36 : : userCertificate
  724. X509 37 : : cACertificate
  725. X509 38 : : authorityRevocationList
  726. X509 39 : : certificateRevocationList
  727. X509 40 : : crossCertificatePair
  728. X509 41 : name : name
  729. X509 42 : GN : givenName
  730. X509 43 : initials : initials
  731. X509 44 : : generationQualifier
  732. X509 45 : : x500UniqueIdentifier
  733. X509 46 : dnQualifier : dnQualifier
  734. X509 47 : : enhancedSearchGuide
  735. X509 48 : : protocolInformation
  736. X509 49 : : distinguishedName
  737. X509 50 : : uniqueMember
  738. X509 51 : : houseIdentifier
  739. X509 52 : : supportedAlgorithms
  740. X509 53 : : deltaRevocationList
  741. X509 54 : dmdName :
  742. X509 65 : : pseudonym
  743. X509 72 : role : role
  744. X509 97 : : organizationIdentifier
  745. X509 98 : c3 : countryCode3c
  746. X509 99 : n3 : countryCode3n
  747. X509 100 : : dnsName
  748. X500 8 : X500algorithms : directory services - algorithms
  749. X500algorithms 1 1 : RSA : rsa
  750. X500algorithms 3 100 : RSA-MDC2 : mdc2WithRSA
  751. X500algorithms 3 101 : MDC2 : mdc2
  752. X500 29 : id-ce
  753. !Cname subject-directory-attributes
  754. id-ce 9 : subjectDirectoryAttributes : X509v3 Subject Directory Attributes
  755. !Cname subject-key-identifier
  756. id-ce 14 : subjectKeyIdentifier : X509v3 Subject Key Identifier
  757. !Cname key-usage
  758. id-ce 15 : keyUsage : X509v3 Key Usage
  759. !Cname private-key-usage-period
  760. id-ce 16 : privateKeyUsagePeriod : X509v3 Private Key Usage Period
  761. !Cname subject-alt-name
  762. id-ce 17 : subjectAltName : X509v3 Subject Alternative Name
  763. !Cname issuer-alt-name
  764. id-ce 18 : issuerAltName : X509v3 Issuer Alternative Name
  765. !Cname basic-constraints
  766. id-ce 19 : basicConstraints : X509v3 Basic Constraints
  767. !Cname crl-number
  768. id-ce 20 : crlNumber : X509v3 CRL Number
  769. !Cname crl-reason
  770. id-ce 21 : CRLReason : X509v3 CRL Reason Code
  771. !Cname invalidity-date
  772. id-ce 24 : invalidityDate : Invalidity Date
  773. !Cname delta-crl
  774. id-ce 27 : deltaCRL : X509v3 Delta CRL Indicator
  775. !Cname issuing-distribution-point
  776. id-ce 28 : issuingDistributionPoint : X509v3 Issuing Distribution Point
  777. !Cname certificate-issuer
  778. id-ce 29 : certificateIssuer : X509v3 Certificate Issuer
  779. !Cname name-constraints
  780. id-ce 30 : nameConstraints : X509v3 Name Constraints
  781. !Cname crl-distribution-points
  782. id-ce 31 : crlDistributionPoints : X509v3 CRL Distribution Points
  783. !Cname certificate-policies
  784. id-ce 32 : certificatePolicies : X509v3 Certificate Policies
  785. !Cname any-policy
  786. certificate-policies 0 : anyPolicy : X509v3 Any Policy
  787. !Cname policy-mappings
  788. id-ce 33 : policyMappings : X509v3 Policy Mappings
  789. !Cname authority-key-identifier
  790. id-ce 35 : authorityKeyIdentifier : X509v3 Authority Key Identifier
  791. !Cname policy-constraints
  792. id-ce 36 : policyConstraints : X509v3 Policy Constraints
  793. !Cname ext-key-usage
  794. id-ce 37 : extendedKeyUsage : X509v3 Extended Key Usage
  795. !Cname authority-attribute-identifier
  796. id-ce 38 : authorityAttributeIdentifier : X509v3 Authority Attribute Identifier
  797. !Cname role-spec-cert-identifier
  798. id-ce 39 : roleSpecCertIdentifier : X509v3 Role Specification Certificate Identifier
  799. !Cname basic-att-constraints
  800. id-ce 41 : basicAttConstraints : X509v3 Basic Attribute Certificate Constraints
  801. !Cname delegated-name-constraints
  802. id-ce 42 : delegatedNameConstraints : X509v3 Delegated Name Constraints
  803. !Cname time-specification
  804. id-ce 43 : timeSpecification : X509v3 Time Specification
  805. !Cname freshest-crl
  806. id-ce 46 : freshestCRL : X509v3 Freshest CRL
  807. !Cname attribute-descriptor
  808. id-ce 48 : attributeDescriptor : X509v3 Attribute Descriptor
  809. !Cname user-notice
  810. id-ce 49 : userNotice : X509v3 User Notice
  811. !Cname soa-identifier
  812. id-ce 50 : sOAIdentifier : X509v3 Source of Authority Identifier
  813. !Cname acceptable-cert-policies
  814. id-ce 52 : acceptableCertPolicies : X509v3 Acceptable Certification Policies
  815. !Cname inhibit-any-policy
  816. id-ce 54 : inhibitAnyPolicy : X509v3 Inhibit Any Policy
  817. !Cname target-information
  818. id-ce 55 : targetInformation : X509v3 AC Targeting
  819. !Cname no-rev-avail
  820. id-ce 56 : noRevAvail : X509v3 No Revocation Available
  821. !Cname acceptable-privilege-policies
  822. id-ce 57 : acceptablePrivPolicies : X509v3 Acceptable Privilege Policies
  823. !Cname indirect-issuer
  824. id-ce 61 : indirectIssuer : X509v3 Indirect Issuer
  825. !Cname no-assertion
  826. id-ce 62 : noAssertion : X509v3 No Assertion
  827. !Cname id-aa-issuing-distribution-point
  828. id-ce 63 : aAissuingDistributionPoint : X509v3 Attribute Authority Issuing Distribution Point
  829. !Cname issued-on-behalf-of
  830. id-ce 64 : issuedOnBehalfOf : X509v3 Issued On Behalf Of
  831. !Cname single-use
  832. id-ce 65 : singleUse : X509v3 Single Use
  833. !Cname group-ac
  834. id-ce 66 : groupAC : X509v3 Group Attribute Certificate
  835. !Cname allowed-attribute-assignments
  836. id-ce 67 : allowedAttributeAssignments : X509v3 Allowed Attribute Assignments
  837. !Cname attribute-mappings
  838. id-ce 68 : attributeMappings : X509v3 Attribute Mappings
  839. !Cname holder-name-constraints
  840. id-ce 69 : holderNameConstraints : X509v3 Holder Name Constraints
  841. !Cname authorization-validation
  842. id-ce 70 : authorizationValidation : X509v3 Authorization Validation
  843. !Cname prot-restrict
  844. id-ce 71 : protRestrict : X509v3 Protocol Restriction
  845. !Cname subject-alt-public-key-info
  846. id-ce 72 : subjectAltPublicKeyInfo : X509v3 Subject Alternative Public Key Info
  847. !Cname alt-signature-algorithm
  848. id-ce 73 : altSignatureAlgorithm : X509v3 Alternative Signature Algorithm
  849. !Cname alt-signature-value
  850. id-ce 74 : altSignatureValue : X509v3 Alternative Signature Value
  851. !Cname associated-information
  852. id-ce 75 : associatedInformation : X509v3 Associated Information
  853. # From RFC5280
  854. ext-key-usage 0 : anyExtendedKeyUsage : Any Extended Key Usage
  855. !Cname netscape
  856. 2 16 840 1 113730 : Netscape : Netscape Communications Corp.
  857. !Cname netscape-cert-extension
  858. netscape 1 : nsCertExt : Netscape Certificate Extension
  859. !Cname netscape-data-type
  860. netscape 2 : nsDataType : Netscape Data Type
  861. !Cname netscape-cert-type
  862. netscape-cert-extension 1 : nsCertType : Netscape Cert Type
  863. !Cname netscape-base-url
  864. netscape-cert-extension 2 : nsBaseUrl : Netscape Base Url
  865. !Cname netscape-revocation-url
  866. netscape-cert-extension 3 : nsRevocationUrl : Netscape Revocation Url
  867. !Cname netscape-ca-revocation-url
  868. netscape-cert-extension 4 : nsCaRevocationUrl : Netscape CA Revocation Url
  869. !Cname netscape-renewal-url
  870. netscape-cert-extension 7 : nsRenewalUrl : Netscape Renewal Url
  871. !Cname netscape-ca-policy-url
  872. netscape-cert-extension 8 : nsCaPolicyUrl : Netscape CA Policy Url
  873. !Cname netscape-ssl-server-name
  874. netscape-cert-extension 12 : nsSslServerName : Netscape SSL Server Name
  875. !Cname netscape-comment
  876. netscape-cert-extension 13 : nsComment : Netscape Comment
  877. !Cname netscape-cert-sequence
  878. netscape-data-type 5 : nsCertSequence : Netscape Certificate Sequence
  879. !Cname ns-sgc
  880. netscape 4 1 : nsSGC : Netscape Server Gated Crypto
  881. # iso(1)
  882. iso 3 : ORG : org
  883. org 6 : DOD : dod
  884. dod 1 : IANA : iana
  885. !Alias internet iana
  886. internet 1 : directory : Directory
  887. internet 2 : mgmt : Management
  888. internet 3 : experimental : Experimental
  889. internet 4 : private : Private
  890. internet 5 : security : Security
  891. internet 6 : snmpv2 : SNMPv2
  892. # Documents refer to "internet 7" as "mail". This however leads to ambiguities
  893. # with RFC2798, Section 9.1.3, where "mail" is defined as the short name for
  894. # rfc822Mailbox. The short name is therefore here left out for a reason.
  895. # Subclasses of "mail", e.g. "MIME MHS" don't constitute a problem, as
  896. # references are realized via long name "Mail" (with capital M).
  897. internet 7 : : Mail
  898. Private 1 : enterprises : Enterprises
  899. # RFC 2247
  900. Enterprises 1466 344 : dcobject : dcObject
  901. # RFC 1495
  902. Mail 1 : mime-mhs : MIME MHS
  903. mime-mhs 1 : mime-mhs-headings : mime-mhs-headings
  904. mime-mhs 2 : mime-mhs-bodies : mime-mhs-bodies
  905. mime-mhs-headings 1 : id-hex-partial-message : id-hex-partial-message
  906. mime-mhs-headings 2 : id-hex-multipart-message : id-hex-multipart-message
  907. # RFC 3274
  908. !Cname zlib-compression
  909. id-smime-alg 8 : ZLIB : zlib compression
  910. # AES aka Rijndael
  911. !Alias csor 2 16 840 1 101 3
  912. !Alias nistAlgorithms csor 4
  913. !Alias aes nistAlgorithms 1
  914. aes 1 : AES-128-ECB : aes-128-ecb
  915. aes 2 : AES-128-CBC : aes-128-cbc
  916. !Cname aes-128-ofb128
  917. aes 3 : AES-128-OFB : aes-128-ofb
  918. !Cname aes-128-cfb128
  919. aes 4 : AES-128-CFB : aes-128-cfb
  920. aes 5 : id-aes128-wrap
  921. aes 6 : id-aes128-GCM : aes-128-gcm
  922. aes 7 : id-aes128-CCM : aes-128-ccm
  923. aes 8 : id-aes128-wrap-pad
  924. aes 21 : AES-192-ECB : aes-192-ecb
  925. aes 22 : AES-192-CBC : aes-192-cbc
  926. !Cname aes-192-ofb128
  927. aes 23 : AES-192-OFB : aes-192-ofb
  928. !Cname aes-192-cfb128
  929. aes 24 : AES-192-CFB : aes-192-cfb
  930. aes 25 : id-aes192-wrap
  931. aes 26 : id-aes192-GCM : aes-192-gcm
  932. aes 27 : id-aes192-CCM : aes-192-ccm
  933. aes 28 : id-aes192-wrap-pad
  934. aes 41 : AES-256-ECB : aes-256-ecb
  935. aes 42 : AES-256-CBC : aes-256-cbc
  936. !Cname aes-256-ofb128
  937. aes 43 : AES-256-OFB : aes-256-ofb
  938. !Cname aes-256-cfb128
  939. aes 44 : AES-256-CFB : aes-256-cfb
  940. aes 45 : id-aes256-wrap
  941. aes 46 : id-aes256-GCM : aes-256-gcm
  942. aes 47 : id-aes256-CCM : aes-256-ccm
  943. aes 48 : id-aes256-wrap-pad
  944. ieee-siswg 0 1 1 : AES-128-XTS : aes-128-xts
  945. ieee-siswg 0 1 2 : AES-256-XTS : aes-256-xts
  946. # There are no OIDs for these modes...
  947. : AES-128-CFB1 : aes-128-cfb1
  948. : AES-192-CFB1 : aes-192-cfb1
  949. : AES-256-CFB1 : aes-256-cfb1
  950. : AES-128-CFB8 : aes-128-cfb8
  951. : AES-192-CFB8 : aes-192-cfb8
  952. : AES-256-CFB8 : aes-256-cfb8
  953. : AES-128-CTR : aes-128-ctr
  954. : AES-192-CTR : aes-192-ctr
  955. : AES-256-CTR : aes-256-ctr
  956. : AES-128-OCB : aes-128-ocb
  957. : AES-192-OCB : aes-192-ocb
  958. : AES-256-OCB : aes-256-ocb
  959. : DES-CFB1 : des-cfb1
  960. : DES-CFB8 : des-cfb8
  961. : DES-EDE3-CFB1 : des-ede3-cfb1
  962. : DES-EDE3-CFB8 : des-ede3-cfb8
  963. # OIDs for SHA224, SHA256, SHA385 and SHA512, according to x9.84 and
  964. # http://csrc.nist.gov/groups/ST/crypto_apps_infra/csor/algorithms.html
  965. # "Middle" names are specified to be id-sha256, id-sha384, etc., but
  966. # we adhere to unprefixed capitals for backward compatibility...
  967. !Alias nist_hashalgs nistAlgorithms 2
  968. nist_hashalgs 1 : SHA256 : sha256
  969. nist_hashalgs 2 : SHA384 : sha384
  970. nist_hashalgs 3 : SHA512 : sha512
  971. nist_hashalgs 4 : SHA224 : sha224
  972. nist_hashalgs 5 : SHA512-224 : sha512-224
  973. nist_hashalgs 6 : SHA512-256 : sha512-256
  974. nist_hashalgs 7 : SHA3-224 : sha3-224
  975. nist_hashalgs 8 : SHA3-256 : sha3-256
  976. nist_hashalgs 9 : SHA3-384 : sha3-384
  977. nist_hashalgs 10 : SHA3-512 : sha3-512
  978. nist_hashalgs 11 : SHAKE128 : shake128
  979. nist_hashalgs 12 : SHAKE256 : shake256
  980. nist_hashalgs 13 : id-hmacWithSHA3-224 : hmac-sha3-224
  981. nist_hashalgs 14 : id-hmacWithSHA3-256 : hmac-sha3-256
  982. nist_hashalgs 15 : id-hmacWithSHA3-384 : hmac-sha3-384
  983. nist_hashalgs 16 : id-hmacWithSHA3-512 : hmac-sha3-512
  984. # Below two are incomplete OIDs, to be uncommented when we figure out
  985. # how to handle them...
  986. # nist_hashalgs 17 : id-shake128-len : shake128-len
  987. # nist_hashalgs 18 : id-shake256-len : shake256-len
  988. nist_hashalgs 19 : KMAC128 : kmac128
  989. nist_hashalgs 20 : KMAC256 : kmac256
  990. # nist_hashalgs 21 : KMAC128-XOF : kmac128-xof
  991. # nist_hashalgs 22 : KMAC256-XOF : kmac256-xof
  992. # OIDs for dsa-with-sha224 and dsa-with-sha256
  993. !Alias dsa_with_sha2 nistAlgorithms 3
  994. dsa_with_sha2 1 : dsa_with_SHA224
  995. dsa_with_sha2 2 : dsa_with_SHA256
  996. # Above two belong below, but kept as they are for backward compatibility
  997. !Alias sigAlgs nistAlgorithms 3
  998. sigAlgs 3 : id-dsa-with-sha384 : dsa_with_SHA384
  999. sigAlgs 4 : id-dsa-with-sha512 : dsa_with_SHA512
  1000. sigAlgs 5 : id-dsa-with-sha3-224 : dsa_with_SHA3-224
  1001. sigAlgs 6 : id-dsa-with-sha3-256 : dsa_with_SHA3-256
  1002. sigAlgs 7 : id-dsa-with-sha3-384 : dsa_with_SHA3-384
  1003. sigAlgs 8 : id-dsa-with-sha3-512 : dsa_with_SHA3-512
  1004. sigAlgs 9 : id-ecdsa-with-sha3-224 : ecdsa_with_SHA3-224
  1005. sigAlgs 10 : id-ecdsa-with-sha3-256 : ecdsa_with_SHA3-256
  1006. sigAlgs 11 : id-ecdsa-with-sha3-384 : ecdsa_with_SHA3-384
  1007. sigAlgs 12 : id-ecdsa-with-sha3-512 : ecdsa_with_SHA3-512
  1008. sigAlgs 13 : id-rsassa-pkcs1-v1_5-with-sha3-224 : RSA-SHA3-224
  1009. sigAlgs 14 : id-rsassa-pkcs1-v1_5-with-sha3-256 : RSA-SHA3-256
  1010. sigAlgs 15 : id-rsassa-pkcs1-v1_5-with-sha3-384 : RSA-SHA3-384
  1011. sigAlgs 16 : id-rsassa-pkcs1-v1_5-with-sha3-512 : RSA-SHA3-512
  1012. # Hold instruction CRL entry extension
  1013. !Cname hold-instruction-code
  1014. id-ce 23 : holdInstructionCode : Hold Instruction Code
  1015. !Alias holdInstruction X9-57 2
  1016. !Cname hold-instruction-none
  1017. holdInstruction 1 : holdInstructionNone : Hold Instruction None
  1018. !Cname hold-instruction-call-issuer
  1019. holdInstruction 2 : holdInstructionCallIssuer : Hold Instruction Call Issuer
  1020. !Cname hold-instruction-reject
  1021. holdInstruction 3 : holdInstructionReject : Hold Instruction Reject
  1022. # OID's from ITU-T. Most of this is defined in RFC 1274. A couple of
  1023. # them are also mentioned in RFC 2247
  1024. # OIDs specific to Electronic Signature Standard/CAdES are as specified in
  1025. # ETSI EN 319 122-1 V1.2.1 (2021-10):
  1026. # Electronic Signatures and Infrastructures (ESI); CAdES digital signatures;
  1027. # Part 1: Building blocks and CAdES baseline signatures
  1028. itu-t 4 : itu-t-identified-organization
  1029. itu-t-identified-organization 0: etsi
  1030. etsi 1733 : electronic-signature-standard
  1031. electronic-signature-standard 2: ess-attributes
  1032. ess-attributes 1 : id-aa-ets-mimeType
  1033. ess-attributes 2 : id-aa-ets-longTermValidation
  1034. ess-attributes 3 : id-aa-ets-SignaturePolicyDocument
  1035. ess-attributes 4 : id-aa-ets-archiveTimestampV3
  1036. ess-attributes 5 : id-aa-ATSHashIndex
  1037. etsi 19122 : cades
  1038. cades 1 : cades-attributes
  1039. cades-attributes 1 : id-aa-ets-signerAttrV2
  1040. cades-attributes 3 : id-aa-ets-sigPolicyStore
  1041. cades-attributes 4 : id-aa-ATSHashIndex-v2
  1042. cades-attributes 5 : id-aa-ATSHashIndex-v3
  1043. cades-attributes 6 : signedAssertion
  1044. itu-t 9 : data
  1045. data 2342 : pss
  1046. pss 19200300 : ucl
  1047. ucl 100 : pilot
  1048. pilot 1 : : pilotAttributeType
  1049. pilot 3 : : pilotAttributeSyntax
  1050. pilot 4 : : pilotObjectClass
  1051. pilot 10 : : pilotGroups
  1052. pilotAttributeSyntax 4 : : iA5StringSyntax
  1053. pilotAttributeSyntax 5 : : caseIgnoreIA5StringSyntax
  1054. pilotObjectClass 3 : : pilotObject
  1055. pilotObjectClass 4 : : pilotPerson
  1056. pilotObjectClass 5 : account
  1057. pilotObjectClass 6 : document
  1058. pilotObjectClass 7 : room
  1059. pilotObjectClass 9 : : documentSeries
  1060. pilotObjectClass 13 : domain : Domain
  1061. pilotObjectClass 14 : : rFC822localPart
  1062. pilotObjectClass 15 : : dNSDomain
  1063. pilotObjectClass 17 : : domainRelatedObject
  1064. pilotObjectClass 18 : : friendlyCountry
  1065. pilotObjectClass 19 : : simpleSecurityObject
  1066. pilotObjectClass 20 : : pilotOrganization
  1067. pilotObjectClass 21 : : pilotDSA
  1068. pilotObjectClass 22 : : qualityLabelledData
  1069. pilotAttributeType 1 : UID : userId
  1070. pilotAttributeType 2 : : textEncodedORAddress
  1071. pilotAttributeType 3 : mail : rfc822Mailbox
  1072. pilotAttributeType 4 : info
  1073. pilotAttributeType 5 : : favouriteDrink
  1074. pilotAttributeType 6 : : roomNumber
  1075. pilotAttributeType 7 : photo
  1076. pilotAttributeType 8 : : userClass
  1077. pilotAttributeType 9 : host
  1078. pilotAttributeType 10 : manager
  1079. pilotAttributeType 11 : : documentIdentifier
  1080. pilotAttributeType 12 : : documentTitle
  1081. pilotAttributeType 13 : : documentVersion
  1082. pilotAttributeType 14 : : documentAuthor
  1083. pilotAttributeType 15 : : documentLocation
  1084. pilotAttributeType 20 : : homeTelephoneNumber
  1085. pilotAttributeType 21 : secretary
  1086. pilotAttributeType 22 : : otherMailbox
  1087. pilotAttributeType 23 : : lastModifiedTime
  1088. pilotAttributeType 24 : : lastModifiedBy
  1089. pilotAttributeType 25 : DC : domainComponent
  1090. pilotAttributeType 26 : : aRecord
  1091. pilotAttributeType 27 : : pilotAttributeType27
  1092. pilotAttributeType 28 : : mXRecord
  1093. pilotAttributeType 29 : : nSRecord
  1094. pilotAttributeType 30 : : sOARecord
  1095. pilotAttributeType 31 : : cNAMERecord
  1096. pilotAttributeType 37 : : associatedDomain
  1097. pilotAttributeType 38 : : associatedName
  1098. pilotAttributeType 39 : : homePostalAddress
  1099. pilotAttributeType 40 : : personalTitle
  1100. pilotAttributeType 41 : : mobileTelephoneNumber
  1101. pilotAttributeType 42 : : pagerTelephoneNumber
  1102. pilotAttributeType 43 : : friendlyCountryName
  1103. pilotAttributeType 44 : uid : uniqueIdentifier
  1104. pilotAttributeType 45 : : organizationalStatus
  1105. pilotAttributeType 46 : : janetMailbox
  1106. pilotAttributeType 47 : : mailPreferenceOption
  1107. pilotAttributeType 48 : : buildingName
  1108. pilotAttributeType 49 : : dSAQuality
  1109. pilotAttributeType 50 : : singleLevelQuality
  1110. pilotAttributeType 51 : : subtreeMinimumQuality
  1111. pilotAttributeType 52 : : subtreeMaximumQuality
  1112. pilotAttributeType 53 : : personalSignature
  1113. pilotAttributeType 54 : : dITRedirect
  1114. pilotAttributeType 55 : audio
  1115. pilotAttributeType 56 : : documentPublisher
  1116. international-organizations 42 : id-set : Secure Electronic Transactions
  1117. id-set 0 : set-ctype : content types
  1118. id-set 1 : set-msgExt : message extensions
  1119. id-set 3 : set-attr
  1120. id-set 5 : set-policy
  1121. id-set 7 : set-certExt : certificate extensions
  1122. id-set 8 : set-brand
  1123. set-ctype 0 : setct-PANData
  1124. set-ctype 1 : setct-PANToken
  1125. set-ctype 2 : setct-PANOnly
  1126. set-ctype 3 : setct-OIData
  1127. set-ctype 4 : setct-PI
  1128. set-ctype 5 : setct-PIData
  1129. set-ctype 6 : setct-PIDataUnsigned
  1130. set-ctype 7 : setct-HODInput
  1131. set-ctype 8 : setct-AuthResBaggage
  1132. set-ctype 9 : setct-AuthRevReqBaggage
  1133. set-ctype 10 : setct-AuthRevResBaggage
  1134. set-ctype 11 : setct-CapTokenSeq
  1135. set-ctype 12 : setct-PInitResData
  1136. set-ctype 13 : setct-PI-TBS
  1137. set-ctype 14 : setct-PResData
  1138. set-ctype 16 : setct-AuthReqTBS
  1139. set-ctype 17 : setct-AuthResTBS
  1140. set-ctype 18 : setct-AuthResTBSX
  1141. set-ctype 19 : setct-AuthTokenTBS
  1142. set-ctype 20 : setct-CapTokenData
  1143. set-ctype 21 : setct-CapTokenTBS
  1144. set-ctype 22 : setct-AcqCardCodeMsg
  1145. set-ctype 23 : setct-AuthRevReqTBS
  1146. set-ctype 24 : setct-AuthRevResData
  1147. set-ctype 25 : setct-AuthRevResTBS
  1148. set-ctype 26 : setct-CapReqTBS
  1149. set-ctype 27 : setct-CapReqTBSX
  1150. set-ctype 28 : setct-CapResData
  1151. set-ctype 29 : setct-CapRevReqTBS
  1152. set-ctype 30 : setct-CapRevReqTBSX
  1153. set-ctype 31 : setct-CapRevResData
  1154. set-ctype 32 : setct-CredReqTBS
  1155. set-ctype 33 : setct-CredReqTBSX
  1156. set-ctype 34 : setct-CredResData
  1157. set-ctype 35 : setct-CredRevReqTBS
  1158. set-ctype 36 : setct-CredRevReqTBSX
  1159. set-ctype 37 : setct-CredRevResData
  1160. set-ctype 38 : setct-PCertReqData
  1161. set-ctype 39 : setct-PCertResTBS
  1162. set-ctype 40 : setct-BatchAdminReqData
  1163. set-ctype 41 : setct-BatchAdminResData
  1164. set-ctype 42 : setct-CardCInitResTBS
  1165. set-ctype 43 : setct-MeAqCInitResTBS
  1166. set-ctype 44 : setct-RegFormResTBS
  1167. set-ctype 45 : setct-CertReqData
  1168. set-ctype 46 : setct-CertReqTBS
  1169. set-ctype 47 : setct-CertResData
  1170. set-ctype 48 : setct-CertInqReqTBS
  1171. set-ctype 49 : setct-ErrorTBS
  1172. set-ctype 50 : setct-PIDualSignedTBE
  1173. set-ctype 51 : setct-PIUnsignedTBE
  1174. set-ctype 52 : setct-AuthReqTBE
  1175. set-ctype 53 : setct-AuthResTBE
  1176. set-ctype 54 : setct-AuthResTBEX
  1177. set-ctype 55 : setct-AuthTokenTBE
  1178. set-ctype 56 : setct-CapTokenTBE
  1179. set-ctype 57 : setct-CapTokenTBEX
  1180. set-ctype 58 : setct-AcqCardCodeMsgTBE
  1181. set-ctype 59 : setct-AuthRevReqTBE
  1182. set-ctype 60 : setct-AuthRevResTBE
  1183. set-ctype 61 : setct-AuthRevResTBEB
  1184. set-ctype 62 : setct-CapReqTBE
  1185. set-ctype 63 : setct-CapReqTBEX
  1186. set-ctype 64 : setct-CapResTBE
  1187. set-ctype 65 : setct-CapRevReqTBE
  1188. set-ctype 66 : setct-CapRevReqTBEX
  1189. set-ctype 67 : setct-CapRevResTBE
  1190. set-ctype 68 : setct-CredReqTBE
  1191. set-ctype 69 : setct-CredReqTBEX
  1192. set-ctype 70 : setct-CredResTBE
  1193. set-ctype 71 : setct-CredRevReqTBE
  1194. set-ctype 72 : setct-CredRevReqTBEX
  1195. set-ctype 73 : setct-CredRevResTBE
  1196. set-ctype 74 : setct-BatchAdminReqTBE
  1197. set-ctype 75 : setct-BatchAdminResTBE
  1198. set-ctype 76 : setct-RegFormReqTBE
  1199. set-ctype 77 : setct-CertReqTBE
  1200. set-ctype 78 : setct-CertReqTBEX
  1201. set-ctype 79 : setct-CertResTBE
  1202. set-ctype 80 : setct-CRLNotificationTBS
  1203. set-ctype 81 : setct-CRLNotificationResTBS
  1204. set-ctype 82 : setct-BCIDistributionTBS
  1205. set-msgExt 1 : setext-genCrypt : generic cryptogram
  1206. set-msgExt 3 : setext-miAuth : merchant initiated auth
  1207. set-msgExt 4 : setext-pinSecure
  1208. set-msgExt 5 : setext-pinAny
  1209. set-msgExt 7 : setext-track2
  1210. set-msgExt 8 : setext-cv : additional verification
  1211. set-policy 0 : set-policy-root
  1212. set-certExt 0 : setCext-hashedRoot
  1213. set-certExt 1 : setCext-certType
  1214. set-certExt 2 : setCext-merchData
  1215. set-certExt 3 : setCext-cCertRequired
  1216. set-certExt 4 : setCext-tunneling
  1217. set-certExt 5 : setCext-setExt
  1218. set-certExt 6 : setCext-setQualf
  1219. set-certExt 7 : setCext-PGWYcapabilities
  1220. set-certExt 8 : setCext-TokenIdentifier
  1221. set-certExt 9 : setCext-Track2Data
  1222. set-certExt 10 : setCext-TokenType
  1223. set-certExt 11 : setCext-IssuerCapabilities
  1224. set-attr 0 : setAttr-Cert
  1225. set-attr 1 : setAttr-PGWYcap : payment gateway capabilities
  1226. set-attr 2 : setAttr-TokenType
  1227. set-attr 3 : setAttr-IssCap : issuer capabilities
  1228. setAttr-Cert 0 : set-rootKeyThumb
  1229. setAttr-Cert 1 : set-addPolicy
  1230. setAttr-TokenType 1 : setAttr-Token-EMV
  1231. setAttr-TokenType 2 : setAttr-Token-B0Prime
  1232. setAttr-IssCap 3 : setAttr-IssCap-CVM
  1233. setAttr-IssCap 4 : setAttr-IssCap-T2
  1234. setAttr-IssCap 5 : setAttr-IssCap-Sig
  1235. setAttr-IssCap-CVM 1 : setAttr-GenCryptgrm : generate cryptogram
  1236. setAttr-IssCap-T2 1 : setAttr-T2Enc : encrypted track 2
  1237. setAttr-IssCap-T2 2 : setAttr-T2cleartxt : cleartext track 2
  1238. setAttr-IssCap-Sig 1 : setAttr-TokICCsig : ICC or token signature
  1239. setAttr-IssCap-Sig 2 : setAttr-SecDevSig : secure device signature
  1240. set-brand 1 : set-brand-IATA-ATA
  1241. set-brand 30 : set-brand-Diners
  1242. set-brand 34 : set-brand-AmericanExpress
  1243. set-brand 35 : set-brand-JCB
  1244. set-brand 4 : set-brand-Visa
  1245. set-brand 5 : set-brand-MasterCard
  1246. set-brand 6011 : set-brand-Novus
  1247. rsadsi 3 10 : DES-CDMF : des-cdmf
  1248. rsadsi 1 1 6 : rsaOAEPEncryptionSET
  1249. : Oakley-EC2N-3 : ipsec3
  1250. : Oakley-EC2N-4 : ipsec4
  1251. iso 0 10118 3 0 55 : whirlpool
  1252. # GOST OIDs
  1253. member-body 643 2 2 : cryptopro
  1254. member-body 643 2 9 : cryptocom
  1255. member-body 643 7 1 : id-tc26
  1256. cryptopro 3 : id-GostR3411-94-with-GostR3410-2001 : GOST R 34.11-94 with GOST R 34.10-2001
  1257. cryptopro 4 : id-GostR3411-94-with-GostR3410-94 : GOST R 34.11-94 with GOST R 34.10-94
  1258. !Cname id-GostR3411-94
  1259. cryptopro 9 : md_gost94 : GOST R 34.11-94
  1260. cryptopro 10 : id-HMACGostR3411-94 : HMAC GOST 34.11-94
  1261. !Cname id-GostR3410-2001
  1262. cryptopro 19 : gost2001 : GOST R 34.10-2001
  1263. !Cname id-GostR3410-94
  1264. cryptopro 20 : gost94 : GOST R 34.10-94
  1265. !Cname id-Gost28147-89
  1266. cryptopro 21 : gost89 : GOST 28147-89
  1267. : gost89-cnt
  1268. : gost89-cnt-12
  1269. : gost89-cbc
  1270. : gost89-ecb
  1271. : gost89-ctr
  1272. !Cname id-Gost28147-89-MAC
  1273. cryptopro 22 : gost-mac : GOST 28147-89 MAC
  1274. : gost-mac-12
  1275. !Cname id-GostR3411-94-prf
  1276. cryptopro 23 : prf-gostr3411-94 : GOST R 34.11-94 PRF
  1277. cryptopro 98 : id-GostR3410-2001DH : GOST R 34.10-2001 DH
  1278. cryptopro 99 : id-GostR3410-94DH : GOST R 34.10-94 DH
  1279. cryptopro 14 1 : id-Gost28147-89-CryptoPro-KeyMeshing
  1280. cryptopro 14 0 : id-Gost28147-89-None-KeyMeshing
  1281. # GOST parameter set OIDs
  1282. cryptopro 30 0 : id-GostR3411-94-TestParamSet
  1283. cryptopro 30 1 : id-GostR3411-94-CryptoProParamSet
  1284. cryptopro 31 0 : id-Gost28147-89-TestParamSet
  1285. cryptopro 31 1 : id-Gost28147-89-CryptoPro-A-ParamSet
  1286. cryptopro 31 2 : id-Gost28147-89-CryptoPro-B-ParamSet
  1287. cryptopro 31 3 : id-Gost28147-89-CryptoPro-C-ParamSet
  1288. cryptopro 31 4 : id-Gost28147-89-CryptoPro-D-ParamSet
  1289. cryptopro 31 5 : id-Gost28147-89-CryptoPro-Oscar-1-1-ParamSet
  1290. cryptopro 31 6 : id-Gost28147-89-CryptoPro-Oscar-1-0-ParamSet
  1291. cryptopro 31 7 : id-Gost28147-89-CryptoPro-RIC-1-ParamSet
  1292. cryptopro 32 0 : id-GostR3410-94-TestParamSet
  1293. cryptopro 32 2 : id-GostR3410-94-CryptoPro-A-ParamSet
  1294. cryptopro 32 3 : id-GostR3410-94-CryptoPro-B-ParamSet
  1295. cryptopro 32 4 : id-GostR3410-94-CryptoPro-C-ParamSet
  1296. cryptopro 32 5 : id-GostR3410-94-CryptoPro-D-ParamSet
  1297. cryptopro 33 1 : id-GostR3410-94-CryptoPro-XchA-ParamSet
  1298. cryptopro 33 2 : id-GostR3410-94-CryptoPro-XchB-ParamSet
  1299. cryptopro 33 3 : id-GostR3410-94-CryptoPro-XchC-ParamSet
  1300. cryptopro 35 0 : id-GostR3410-2001-TestParamSet
  1301. cryptopro 35 1 : id-GostR3410-2001-CryptoPro-A-ParamSet
  1302. cryptopro 35 2 : id-GostR3410-2001-CryptoPro-B-ParamSet
  1303. cryptopro 35 3 : id-GostR3410-2001-CryptoPro-C-ParamSet
  1304. cryptopro 36 0 : id-GostR3410-2001-CryptoPro-XchA-ParamSet
  1305. cryptopro 36 1 : id-GostR3410-2001-CryptoPro-XchB-ParamSet
  1306. id-GostR3410-94 1 : id-GostR3410-94-a
  1307. id-GostR3410-94 2 : id-GostR3410-94-aBis
  1308. id-GostR3410-94 3 : id-GostR3410-94-b
  1309. id-GostR3410-94 4 : id-GostR3410-94-bBis
  1310. # Cryptocom LTD GOST OIDs
  1311. cryptocom 1 6 1 : id-Gost28147-89-cc : GOST 28147-89 Cryptocom ParamSet
  1312. !Cname id-GostR3410-94-cc
  1313. cryptocom 1 5 3 : gost94cc : GOST 34.10-94 Cryptocom
  1314. !Cname id-GostR3410-2001-cc
  1315. cryptocom 1 5 4 : gost2001cc : GOST 34.10-2001 Cryptocom
  1316. cryptocom 1 3 3 : id-GostR3411-94-with-GostR3410-94-cc : GOST R 34.11-94 with GOST R 34.10-94 Cryptocom
  1317. cryptocom 1 3 4 : id-GostR3411-94-with-GostR3410-2001-cc : GOST R 34.11-94 with GOST R 34.10-2001 Cryptocom
  1318. cryptocom 1 8 1 : id-GostR3410-2001-ParamSet-cc : GOST R 3410-2001 Parameter Set Cryptocom
  1319. # TC26 GOST OIDs
  1320. id-tc26 1 : id-tc26-algorithms
  1321. id-tc26-algorithms 1 : id-tc26-sign
  1322. !Cname id-GostR3410-2012-256
  1323. id-tc26-sign 1 : gost2012_256: GOST R 34.10-2012 with 256 bit modulus
  1324. !Cname id-GostR3410-2012-512
  1325. id-tc26-sign 2 : gost2012_512: GOST R 34.10-2012 with 512 bit modulus
  1326. id-tc26-algorithms 2 : id-tc26-digest
  1327. !Cname id-GostR3411-2012-256
  1328. id-tc26-digest 2 : md_gost12_256: GOST R 34.11-2012 with 256 bit hash
  1329. !Cname id-GostR3411-2012-512
  1330. id-tc26-digest 3 : md_gost12_512: GOST R 34.11-2012 with 512 bit hash
  1331. id-tc26-algorithms 3 : id-tc26-signwithdigest
  1332. id-tc26-signwithdigest 2: id-tc26-signwithdigest-gost3410-2012-256: GOST R 34.10-2012 with GOST R 34.11-2012 (256 bit)
  1333. id-tc26-signwithdigest 3: id-tc26-signwithdigest-gost3410-2012-512: GOST R 34.10-2012 with GOST R 34.11-2012 (512 bit)
  1334. id-tc26-algorithms 4 : id-tc26-mac
  1335. id-tc26-mac 1 : id-tc26-hmac-gost-3411-2012-256 : HMAC GOST 34.11-2012 256 bit
  1336. id-tc26-mac 2 : id-tc26-hmac-gost-3411-2012-512 : HMAC GOST 34.11-2012 512 bit
  1337. id-tc26-algorithms 5 : id-tc26-cipher
  1338. id-tc26-cipher 1 : id-tc26-cipher-gostr3412-2015-magma
  1339. id-tc26-cipher-gostr3412-2015-magma 1 : magma-ctr-acpkm
  1340. id-tc26-cipher-gostr3412-2015-magma 2 : magma-ctr-acpkm-omac
  1341. id-tc26-cipher 2 : id-tc26-cipher-gostr3412-2015-kuznyechik
  1342. id-tc26-cipher-gostr3412-2015-kuznyechik 1 : kuznyechik-ctr-acpkm
  1343. id-tc26-cipher-gostr3412-2015-kuznyechik 2 : kuznyechik-ctr-acpkm-omac
  1344. id-tc26-algorithms 6 : id-tc26-agreement
  1345. id-tc26-agreement 1 : id-tc26-agreement-gost-3410-2012-256
  1346. id-tc26-agreement 2 : id-tc26-agreement-gost-3410-2012-512
  1347. id-tc26-algorithms 7 : id-tc26-wrap
  1348. id-tc26-wrap 1 : id-tc26-wrap-gostr3412-2015-magma
  1349. id-tc26-wrap-gostr3412-2015-magma 1 : magma-kexp15
  1350. id-tc26-wrap 2 : id-tc26-wrap-gostr3412-2015-kuznyechik
  1351. id-tc26-wrap-gostr3412-2015-kuznyechik 1 : kuznyechik-kexp15
  1352. id-tc26 2 : id-tc26-constants
  1353. id-tc26-constants 1 : id-tc26-sign-constants
  1354. id-tc26-sign-constants 1: id-tc26-gost-3410-2012-256-constants
  1355. id-tc26-gost-3410-2012-256-constants 1 : id-tc26-gost-3410-2012-256-paramSetA: GOST R 34.10-2012 (256 bit) ParamSet A
  1356. id-tc26-gost-3410-2012-256-constants 2 : id-tc26-gost-3410-2012-256-paramSetB: GOST R 34.10-2012 (256 bit) ParamSet B
  1357. id-tc26-gost-3410-2012-256-constants 3 : id-tc26-gost-3410-2012-256-paramSetC: GOST R 34.10-2012 (256 bit) ParamSet C
  1358. id-tc26-gost-3410-2012-256-constants 4 : id-tc26-gost-3410-2012-256-paramSetD: GOST R 34.10-2012 (256 bit) ParamSet D
  1359. id-tc26-sign-constants 2: id-tc26-gost-3410-2012-512-constants
  1360. id-tc26-gost-3410-2012-512-constants 0 : id-tc26-gost-3410-2012-512-paramSetTest: GOST R 34.10-2012 (512 bit) testing parameter set
  1361. id-tc26-gost-3410-2012-512-constants 1 : id-tc26-gost-3410-2012-512-paramSetA: GOST R 34.10-2012 (512 bit) ParamSet A
  1362. id-tc26-gost-3410-2012-512-constants 2 : id-tc26-gost-3410-2012-512-paramSetB: GOST R 34.10-2012 (512 bit) ParamSet B
  1363. id-tc26-gost-3410-2012-512-constants 3 : id-tc26-gost-3410-2012-512-paramSetC: GOST R 34.10-2012 (512 bit) ParamSet C
  1364. id-tc26-constants 2 : id-tc26-digest-constants
  1365. id-tc26-constants 5 : id-tc26-cipher-constants
  1366. id-tc26-cipher-constants 1 : id-tc26-gost-28147-constants
  1367. id-tc26-gost-28147-constants 1 : id-tc26-gost-28147-param-Z : GOST 28147-89 TC26 parameter set
  1368. member-body 643 3 131 1 1 : INN : INN
  1369. member-body 643 100 1 : OGRN : OGRN
  1370. member-body 643 100 3 : SNILS : SNILS
  1371. member-body 643 100 5 : OGRNIP : OGRNIP
  1372. member-body 643 100 111 : subjectSignTool : Signing Tool of Subject
  1373. member-body 643 100 112 : issuerSignTool : Signing Tool of Issuer
  1374. member-body 643 100 113 : classSignTool : Class of Signing Tool
  1375. member-body 643 100 113 1 : classSignToolKC1 : Class of Signing Tool KC1
  1376. member-body 643 100 113 2 : classSignToolKC2 : Class of Signing Tool KC2
  1377. member-body 643 100 113 3 : classSignToolKC3 : Class of Signing Tool KC3
  1378. member-body 643 100 113 4 : classSignToolKB1 : Class of Signing Tool KB1
  1379. member-body 643 100 113 5 : classSignToolKB2 : Class of Signing Tool KB2
  1380. member-body 643 100 113 6 : classSignToolKA1 : Class of Signing Tool KA1
  1381. #GOST R34.13-2015 Grasshopper "Kuznechik"
  1382. : kuznyechik-ecb
  1383. : kuznyechik-ctr
  1384. : kuznyechik-ofb
  1385. : kuznyechik-cbc
  1386. : kuznyechik-cfb
  1387. : kuznyechik-mac
  1388. #GOST R34.13-2015 Magma
  1389. : magma-ecb
  1390. : magma-ctr
  1391. : magma-ofb
  1392. : magma-cbc
  1393. : magma-cfb
  1394. : magma-mac
  1395. # Definitions for Camellia cipher - CBC MODE
  1396. 1 2 392 200011 61 1 1 1 2 : CAMELLIA-128-CBC : camellia-128-cbc
  1397. 1 2 392 200011 61 1 1 1 3 : CAMELLIA-192-CBC : camellia-192-cbc
  1398. 1 2 392 200011 61 1 1 1 4 : CAMELLIA-256-CBC : camellia-256-cbc
  1399. 1 2 392 200011 61 1 1 3 2 : id-camellia128-wrap
  1400. 1 2 392 200011 61 1 1 3 3 : id-camellia192-wrap
  1401. 1 2 392 200011 61 1 1 3 4 : id-camellia256-wrap
  1402. # Definitions for Camellia cipher - ECB, CFB, OFB MODE
  1403. !Alias ntt-ds 0 3 4401 5
  1404. !Alias camellia ntt-ds 3 1 9
  1405. camellia 1 : CAMELLIA-128-ECB : camellia-128-ecb
  1406. !Cname camellia-128-ofb128
  1407. camellia 3 : CAMELLIA-128-OFB : camellia-128-ofb
  1408. !Cname camellia-128-cfb128
  1409. camellia 4 : CAMELLIA-128-CFB : camellia-128-cfb
  1410. camellia 6 : CAMELLIA-128-GCM : camellia-128-gcm
  1411. camellia 7 : CAMELLIA-128-CCM : camellia-128-ccm
  1412. camellia 9 : CAMELLIA-128-CTR : camellia-128-ctr
  1413. camellia 10 : CAMELLIA-128-CMAC : camellia-128-cmac
  1414. camellia 21 : CAMELLIA-192-ECB : camellia-192-ecb
  1415. !Cname camellia-192-ofb128
  1416. camellia 23 : CAMELLIA-192-OFB : camellia-192-ofb
  1417. !Cname camellia-192-cfb128
  1418. camellia 24 : CAMELLIA-192-CFB : camellia-192-cfb
  1419. camellia 26 : CAMELLIA-192-GCM : camellia-192-gcm
  1420. camellia 27 : CAMELLIA-192-CCM : camellia-192-ccm
  1421. camellia 29 : CAMELLIA-192-CTR : camellia-192-ctr
  1422. camellia 30 : CAMELLIA-192-CMAC : camellia-192-cmac
  1423. camellia 41 : CAMELLIA-256-ECB : camellia-256-ecb
  1424. !Cname camellia-256-ofb128
  1425. camellia 43 : CAMELLIA-256-OFB : camellia-256-ofb
  1426. !Cname camellia-256-cfb128
  1427. camellia 44 : CAMELLIA-256-CFB : camellia-256-cfb
  1428. camellia 46 : CAMELLIA-256-GCM : camellia-256-gcm
  1429. camellia 47 : CAMELLIA-256-CCM : camellia-256-ccm
  1430. camellia 49 : CAMELLIA-256-CTR : camellia-256-ctr
  1431. camellia 50 : CAMELLIA-256-CMAC : camellia-256-cmac
  1432. # There are no OIDs for these modes...
  1433. : CAMELLIA-128-CFB1 : camellia-128-cfb1
  1434. : CAMELLIA-192-CFB1 : camellia-192-cfb1
  1435. : CAMELLIA-256-CFB1 : camellia-256-cfb1
  1436. : CAMELLIA-128-CFB8 : camellia-128-cfb8
  1437. : CAMELLIA-192-CFB8 : camellia-192-cfb8
  1438. : CAMELLIA-256-CFB8 : camellia-256-cfb8
  1439. # Definitions for ARIA cipher
  1440. !Alias aria 1 2 410 200046 1 1
  1441. aria 1 : ARIA-128-ECB : aria-128-ecb
  1442. aria 2 : ARIA-128-CBC : aria-128-cbc
  1443. !Cname aria-128-cfb128
  1444. aria 3 : ARIA-128-CFB : aria-128-cfb
  1445. !Cname aria-128-ofb128
  1446. aria 4 : ARIA-128-OFB : aria-128-ofb
  1447. aria 5 : ARIA-128-CTR : aria-128-ctr
  1448. aria 6 : ARIA-192-ECB : aria-192-ecb
  1449. aria 7 : ARIA-192-CBC : aria-192-cbc
  1450. !Cname aria-192-cfb128
  1451. aria 8 : ARIA-192-CFB : aria-192-cfb
  1452. !Cname aria-192-ofb128
  1453. aria 9 : ARIA-192-OFB : aria-192-ofb
  1454. aria 10 : ARIA-192-CTR : aria-192-ctr
  1455. aria 11 : ARIA-256-ECB : aria-256-ecb
  1456. aria 12 : ARIA-256-CBC : aria-256-cbc
  1457. !Cname aria-256-cfb128
  1458. aria 13 : ARIA-256-CFB : aria-256-cfb
  1459. !Cname aria-256-ofb128
  1460. aria 14 : ARIA-256-OFB : aria-256-ofb
  1461. aria 15 : ARIA-256-CTR : aria-256-ctr
  1462. # There are no OIDs for these ARIA modes...
  1463. : ARIA-128-CFB1 : aria-128-cfb1
  1464. : ARIA-192-CFB1 : aria-192-cfb1
  1465. : ARIA-256-CFB1 : aria-256-cfb1
  1466. : ARIA-128-CFB8 : aria-128-cfb8
  1467. : ARIA-192-CFB8 : aria-192-cfb8
  1468. : ARIA-256-CFB8 : aria-256-cfb8
  1469. aria 37 : ARIA-128-CCM : aria-128-ccm
  1470. aria 38 : ARIA-192-CCM : aria-192-ccm
  1471. aria 39 : ARIA-256-CCM : aria-256-ccm
  1472. aria 34 : ARIA-128-GCM : aria-128-gcm
  1473. aria 35 : ARIA-192-GCM : aria-192-gcm
  1474. aria 36 : ARIA-256-GCM : aria-256-gcm
  1475. # Definitions for SEED cipher - ECB, CBC, OFB mode
  1476. member-body 410 200004 : KISA : kisa
  1477. kisa 1 3 : SEED-ECB : seed-ecb
  1478. kisa 1 4 : SEED-CBC : seed-cbc
  1479. !Cname seed-cfb128
  1480. kisa 1 5 : SEED-CFB : seed-cfb
  1481. !Cname seed-ofb128
  1482. kisa 1 6 : SEED-OFB : seed-ofb
  1483. # Definitions for SM4 cipher
  1484. sm-scheme 104 1 : SM4-ECB : sm4-ecb
  1485. sm-scheme 104 2 : SM4-CBC : sm4-cbc
  1486. !Cname sm4-ofb128
  1487. sm-scheme 104 3 : SM4-OFB : sm4-ofb
  1488. !Cname sm4-cfb128
  1489. sm-scheme 104 4 : SM4-CFB : sm4-cfb
  1490. sm-scheme 104 5 : SM4-CFB1 : sm4-cfb1
  1491. sm-scheme 104 6 : SM4-CFB8 : sm4-cfb8
  1492. sm-scheme 104 7 : SM4-CTR : sm4-ctr
  1493. sm-scheme 104 8 : SM4-GCM : sm4-gcm
  1494. sm-scheme 104 9 : SM4-CCM : sm4-ccm
  1495. sm-scheme 104 10 : SM4-XTS : sm4-xts
  1496. # There is no OID that just denotes "HMAC" oddly enough...
  1497. : HMAC : hmac
  1498. # Nor CMAC either
  1499. : CMAC : cmac
  1500. # Synthetic composite ciphersuites
  1501. : RC4-HMAC-MD5 : rc4-hmac-md5
  1502. : AES-128-CBC-HMAC-SHA1 : aes-128-cbc-hmac-sha1
  1503. : AES-192-CBC-HMAC-SHA1 : aes-192-cbc-hmac-sha1
  1504. : AES-256-CBC-HMAC-SHA1 : aes-256-cbc-hmac-sha1
  1505. : AES-128-CBC-HMAC-SHA256 : aes-128-cbc-hmac-sha256
  1506. : AES-192-CBC-HMAC-SHA256 : aes-192-cbc-hmac-sha256
  1507. : AES-256-CBC-HMAC-SHA256 : aes-256-cbc-hmac-sha256
  1508. : ChaCha20-Poly1305 : chacha20-poly1305
  1509. : ChaCha20 : chacha20
  1510. ISO-US 10046 2 1 : dhpublicnumber : X9.42 DH
  1511. # RFC 5639 curve OIDs (see http://www.ietf.org/rfc/rfc5639.txt)
  1512. # versionOne OBJECT IDENTIFIER ::= {
  1513. # iso(1) identified-organization(3) teletrust(36) algorithm(3)
  1514. # signature-algorithm(3) ecSign(2) ecStdCurvesAndGeneration(8)
  1515. # ellipticCurve(1) 1 }
  1516. 1 3 36 3 3 2 8 1 1 1 : brainpoolP160r1
  1517. 1 3 36 3 3 2 8 1 1 2 : brainpoolP160t1
  1518. 1 3 36 3 3 2 8 1 1 3 : brainpoolP192r1
  1519. 1 3 36 3 3 2 8 1 1 4 : brainpoolP192t1
  1520. 1 3 36 3 3 2 8 1 1 5 : brainpoolP224r1
  1521. 1 3 36 3 3 2 8 1 1 6 : brainpoolP224t1
  1522. 1 3 36 3 3 2 8 1 1 7 : brainpoolP256r1
  1523. # Alternate NID to represent the TLSv1.3 brainpoolP256r1 group
  1524. : brainpoolP256r1tls13
  1525. 1 3 36 3 3 2 8 1 1 8 : brainpoolP256t1
  1526. 1 3 36 3 3 2 8 1 1 9 : brainpoolP320r1
  1527. 1 3 36 3 3 2 8 1 1 10 : brainpoolP320t1
  1528. 1 3 36 3 3 2 8 1 1 11 : brainpoolP384r1
  1529. # Alternate NID to represent the TLSv1.3 brainpoolP384r1 group
  1530. : brainpoolP384r1tls13
  1531. 1 3 36 3 3 2 8 1 1 12 : brainpoolP384t1
  1532. 1 3 36 3 3 2 8 1 1 13 : brainpoolP512r1
  1533. # Alternate NID to represent the TLSv1.3 brainpoolP512r1 group
  1534. : brainpoolP512r1tls13
  1535. 1 3 36 3 3 2 8 1 1 14 : brainpoolP512t1
  1536. # ECDH schemes from RFC5753
  1537. !Alias x9-63-scheme 1 3 133 16 840 63 0
  1538. !Alias secg-scheme certicom-arc 1
  1539. x9-63-scheme 2 : dhSinglePass-stdDH-sha1kdf-scheme
  1540. secg-scheme 11 0 : dhSinglePass-stdDH-sha224kdf-scheme
  1541. secg-scheme 11 1 : dhSinglePass-stdDH-sha256kdf-scheme
  1542. secg-scheme 11 2 : dhSinglePass-stdDH-sha384kdf-scheme
  1543. secg-scheme 11 3 : dhSinglePass-stdDH-sha512kdf-scheme
  1544. x9-63-scheme 3 : dhSinglePass-cofactorDH-sha1kdf-scheme
  1545. secg-scheme 14 0 : dhSinglePass-cofactorDH-sha224kdf-scheme
  1546. secg-scheme 14 1 : dhSinglePass-cofactorDH-sha256kdf-scheme
  1547. secg-scheme 14 2 : dhSinglePass-cofactorDH-sha384kdf-scheme
  1548. secg-scheme 14 3 : dhSinglePass-cofactorDH-sha512kdf-scheme
  1549. # NIDs for use with lookup tables.
  1550. : dh-std-kdf
  1551. : dh-cofactor-kdf
  1552. # RFC 6962 Extension OIDs (see http://www.ietf.org/rfc/rfc6962.txt)
  1553. 1 3 6 1 4 1 11129 2 4 2 : ct_precert_scts : CT Precertificate SCTs
  1554. 1 3 6 1 4 1 11129 2 4 3 : ct_precert_poison : CT Precertificate Poison
  1555. 1 3 6 1 4 1 11129 2 4 4 : ct_precert_signer : CT Precertificate Signer
  1556. 1 3 6 1 4 1 11129 2 4 5 : ct_cert_scts : CT Certificate SCTs
  1557. # CABForum EV SSL Certificate Guidelines
  1558. # (see https://cabforum.org/extended-validation/)
  1559. # OIDs for Subject Jurisdiction of Incorporation or Registration
  1560. ms-corp 60 2 1 1 : jurisdictionL : jurisdictionLocalityName
  1561. ms-corp 60 2 1 2 : jurisdictionST : jurisdictionStateOrProvinceName
  1562. ms-corp 60 2 1 3 : jurisdictionC : jurisdictionCountryName
  1563. # SCRYPT algorithm
  1564. !Cname id-scrypt
  1565. 1 3 6 1 4 1 11591 4 11 : id-scrypt : scrypt
  1566. # NID for TLS1 PRF
  1567. : TLS1-PRF : tls1-prf
  1568. # NID for HKDF
  1569. : HKDF : hkdf
  1570. # NID for SSHKDF
  1571. : SSHKDF : sshkdf
  1572. # NID for SSKDF
  1573. : SSKDF : sskdf
  1574. # NID for X942KDF
  1575. : X942KDF : x942kdf
  1576. # NID for X963-2001 KDF
  1577. : X963KDF : x963kdf
  1578. # RFC 4556
  1579. 1 3 6 1 5 2 3 : id-pkinit
  1580. id-pkinit 4 : pkInitClientAuth : PKINIT Client Auth
  1581. id-pkinit 5 : pkInitKDC : Signing KDC Response
  1582. # From RFC8410
  1583. 1 3 101 110 : X25519
  1584. 1 3 101 111 : X448
  1585. 1 3 101 112 : ED25519
  1586. 1 3 101 113 : ED448
  1587. # NIDs for cipher key exchange
  1588. : KxRSA : kx-rsa
  1589. : KxECDHE : kx-ecdhe
  1590. : KxDHE : kx-dhe
  1591. : KxECDHE-PSK : kx-ecdhe-psk
  1592. : KxDHE-PSK : kx-dhe-psk
  1593. : KxRSA_PSK : kx-rsa-psk
  1594. : KxPSK : kx-psk
  1595. : KxSRP : kx-srp
  1596. : KxGOST : kx-gost
  1597. : KxGOST18 : kx-gost18
  1598. : KxANY : kx-any
  1599. # NIDs for cipher authentication
  1600. : AuthRSA : auth-rsa
  1601. : AuthECDSA : auth-ecdsa
  1602. : AuthPSK : auth-psk
  1603. : AuthDSS : auth-dss
  1604. : AuthGOST01 : auth-gost01
  1605. : AuthGOST12 : auth-gost12
  1606. : AuthSRP : auth-srp
  1607. : AuthNULL : auth-null
  1608. : AuthANY : auth-any
  1609. # NID for Poly1305
  1610. : Poly1305 : poly1305
  1611. # NID for SipHash
  1612. : SipHash : siphash
  1613. # NIDs for RFC7919 DH parameters
  1614. : ffdhe2048
  1615. : ffdhe3072
  1616. : ffdhe4096
  1617. : ffdhe6144
  1618. : ffdhe8192
  1619. # NIDs for RFC3526 DH parameters
  1620. : modp_1536
  1621. : modp_2048
  1622. : modp_3072
  1623. : modp_4096
  1624. : modp_6144
  1625. : modp_8192
  1626. # OIDs for DSTU-4145/DSTU-7564 (http://zakon2.rada.gov.ua/laws/show/z0423-17)
  1627. # DSTU OIDs
  1628. member-body 804 : ISO-UA
  1629. ISO-UA 2 1 1 1 : ua-pki
  1630. ua-pki 1 1 1 : dstu28147 : DSTU Gost 28147-2009
  1631. dstu28147 2 : dstu28147-ofb : DSTU Gost 28147-2009 OFB mode
  1632. dstu28147 3 : dstu28147-cfb : DSTU Gost 28147-2009 CFB mode
  1633. dstu28147 5 : dstu28147-wrap : DSTU Gost 28147-2009 key wrap
  1634. ua-pki 1 1 2 : hmacWithDstu34311 : HMAC DSTU Gost 34311-95
  1635. ua-pki 1 2 1 : dstu34311 : DSTU Gost 34311-95
  1636. ua-pki 1 3 1 1 : dstu4145le : DSTU 4145-2002 little endian
  1637. dstu4145le 1 1 : dstu4145be : DSTU 4145-2002 big endian
  1638. # 1.2.804. 2.1.1.1 1.3.1.1 .2.6
  1639. # UA ua-pki 4145 le
  1640. # DSTU named curves
  1641. dstu4145le 2 0 : uacurve0 : DSTU curve 0
  1642. dstu4145le 2 1 : uacurve1 : DSTU curve 1
  1643. dstu4145le 2 2 : uacurve2 : DSTU curve 2
  1644. dstu4145le 2 3 : uacurve3 : DSTU curve 3
  1645. dstu4145le 2 4 : uacurve4 : DSTU curve 4
  1646. dstu4145le 2 5 : uacurve5 : DSTU curve 5
  1647. dstu4145le 2 6 : uacurve6 : DSTU curve 6
  1648. dstu4145le 2 7 : uacurve7 : DSTU curve 7
  1649. dstu4145le 2 8 : uacurve8 : DSTU curve 8
  1650. dstu4145le 2 9 : uacurve9 : DSTU curve 9
  1651. # NID for AES-SIV
  1652. : AES-128-SIV : aes-128-siv
  1653. : AES-192-SIV : aes-192-siv
  1654. : AES-256-SIV : aes-256-siv
  1655. !Cname oracle
  1656. joint-iso-itu-t 16 840 1 113894 : oracle-organization : Oracle organization
  1657. # Jdk trustedKeyUsage attribute
  1658. oracle 746875 1 1 : oracle-jdk-trustedkeyusage : Trusted key usage (Oracle)
  1659. # NID for compression
  1660. : brotli : Brotli compression
  1661. : zstd : Zstandard compression