obj_mac.h 213 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223
  1. /*
  2. * WARNING: do not edit!
  3. * Generated by crypto/objects/objects.pl
  4. *
  5. * Copyright 2000-2018 The OpenSSL Project Authors. All Rights Reserved.
  6. * Licensed under the Apache License 2.0 (the "License"). You may not use
  7. * this file except in compliance with the License. You can obtain a copy
  8. * in the file LICENSE in the source distribution or at
  9. * https://www.openssl.org/source/license.html
  10. */
  11. #define SN_undef "UNDEF"
  12. #define LN_undef "undefined"
  13. #define NID_undef 0
  14. #define OBJ_undef 0L
  15. #define SN_itu_t "ITU-T"
  16. #define LN_itu_t "itu-t"
  17. #define NID_itu_t 645
  18. #define OBJ_itu_t 0L
  19. #define NID_ccitt 404
  20. #define OBJ_ccitt OBJ_itu_t
  21. #define SN_iso "ISO"
  22. #define LN_iso "iso"
  23. #define NID_iso 181
  24. #define OBJ_iso 1L
  25. #define SN_joint_iso_itu_t "JOINT-ISO-ITU-T"
  26. #define LN_joint_iso_itu_t "joint-iso-itu-t"
  27. #define NID_joint_iso_itu_t 646
  28. #define OBJ_joint_iso_itu_t 2L
  29. #define NID_joint_iso_ccitt 393
  30. #define OBJ_joint_iso_ccitt OBJ_joint_iso_itu_t
  31. #define SN_member_body "member-body"
  32. #define LN_member_body "ISO Member Body"
  33. #define NID_member_body 182
  34. #define OBJ_member_body OBJ_iso,2L
  35. #define SN_identified_organization "identified-organization"
  36. #define NID_identified_organization 676
  37. #define OBJ_identified_organization OBJ_iso,3L
  38. #define SN_gmac "GMAC"
  39. #define LN_gmac "gmac"
  40. #define NID_gmac 1195
  41. #define OBJ_gmac OBJ_iso,0L,9797L,3L,4L
  42. #define SN_kmac128 "KMAC128"
  43. #define LN_kmac128 "kmac128"
  44. #define NID_kmac128 1196
  45. #define SN_kmac256 "KMAC256"
  46. #define LN_kmac256 "kmac256"
  47. #define NID_kmac256 1197
  48. #define SN_hmac_md5 "HMAC-MD5"
  49. #define LN_hmac_md5 "hmac-md5"
  50. #define NID_hmac_md5 780
  51. #define OBJ_hmac_md5 OBJ_identified_organization,6L,1L,5L,5L,8L,1L,1L
  52. #define SN_hmac_sha1 "HMAC-SHA1"
  53. #define LN_hmac_sha1 "hmac-sha1"
  54. #define NID_hmac_sha1 781
  55. #define OBJ_hmac_sha1 OBJ_identified_organization,6L,1L,5L,5L,8L,1L,2L
  56. #define SN_x509ExtAdmission "x509ExtAdmission"
  57. #define LN_x509ExtAdmission "Professional Information or basis for Admission"
  58. #define NID_x509ExtAdmission 1093
  59. #define OBJ_x509ExtAdmission OBJ_identified_organization,36L,8L,3L,3L
  60. #define SN_certicom_arc "certicom-arc"
  61. #define NID_certicom_arc 677
  62. #define OBJ_certicom_arc OBJ_identified_organization,132L
  63. #define SN_ieee "ieee"
  64. #define NID_ieee 1170
  65. #define OBJ_ieee OBJ_identified_organization,111L
  66. #define SN_ieee_siswg "ieee-siswg"
  67. #define LN_ieee_siswg "IEEE Security in Storage Working Group"
  68. #define NID_ieee_siswg 1171
  69. #define OBJ_ieee_siswg OBJ_ieee,2L,1619L
  70. #define SN_international_organizations "international-organizations"
  71. #define LN_international_organizations "International Organizations"
  72. #define NID_international_organizations 647
  73. #define OBJ_international_organizations OBJ_joint_iso_itu_t,23L
  74. #define SN_wap "wap"
  75. #define NID_wap 678
  76. #define OBJ_wap OBJ_international_organizations,43L
  77. #define SN_wap_wsg "wap-wsg"
  78. #define NID_wap_wsg 679
  79. #define OBJ_wap_wsg OBJ_wap,1L
  80. #define SN_selected_attribute_types "selected-attribute-types"
  81. #define LN_selected_attribute_types "Selected Attribute Types"
  82. #define NID_selected_attribute_types 394
  83. #define OBJ_selected_attribute_types OBJ_joint_iso_itu_t,5L,1L,5L
  84. #define SN_clearance "clearance"
  85. #define NID_clearance 395
  86. #define OBJ_clearance OBJ_selected_attribute_types,55L
  87. #define SN_ISO_US "ISO-US"
  88. #define LN_ISO_US "ISO US Member Body"
  89. #define NID_ISO_US 183
  90. #define OBJ_ISO_US OBJ_member_body,840L
  91. #define SN_X9_57 "X9-57"
  92. #define LN_X9_57 "X9.57"
  93. #define NID_X9_57 184
  94. #define OBJ_X9_57 OBJ_ISO_US,10040L
  95. #define SN_X9cm "X9cm"
  96. #define LN_X9cm "X9.57 CM ?"
  97. #define NID_X9cm 185
  98. #define OBJ_X9cm OBJ_X9_57,4L
  99. #define SN_ISO_CN "ISO-CN"
  100. #define LN_ISO_CN "ISO CN Member Body"
  101. #define NID_ISO_CN 1140
  102. #define OBJ_ISO_CN OBJ_member_body,156L
  103. #define SN_oscca "oscca"
  104. #define NID_oscca 1141
  105. #define OBJ_oscca OBJ_ISO_CN,10197L
  106. #define SN_sm_scheme "sm-scheme"
  107. #define NID_sm_scheme 1142
  108. #define OBJ_sm_scheme OBJ_oscca,1L
  109. #define SN_dsa "DSA"
  110. #define LN_dsa "dsaEncryption"
  111. #define NID_dsa 116
  112. #define OBJ_dsa OBJ_X9cm,1L
  113. #define SN_dsaWithSHA1 "DSA-SHA1"
  114. #define LN_dsaWithSHA1 "dsaWithSHA1"
  115. #define NID_dsaWithSHA1 113
  116. #define OBJ_dsaWithSHA1 OBJ_X9cm,3L
  117. #define SN_ansi_X9_62 "ansi-X9-62"
  118. #define LN_ansi_X9_62 "ANSI X9.62"
  119. #define NID_ansi_X9_62 405
  120. #define OBJ_ansi_X9_62 OBJ_ISO_US,10045L
  121. #define OBJ_X9_62_id_fieldType OBJ_ansi_X9_62,1L
  122. #define SN_X9_62_prime_field "prime-field"
  123. #define NID_X9_62_prime_field 406
  124. #define OBJ_X9_62_prime_field OBJ_X9_62_id_fieldType,1L
  125. #define SN_X9_62_characteristic_two_field "characteristic-two-field"
  126. #define NID_X9_62_characteristic_two_field 407
  127. #define OBJ_X9_62_characteristic_two_field OBJ_X9_62_id_fieldType,2L
  128. #define SN_X9_62_id_characteristic_two_basis "id-characteristic-two-basis"
  129. #define NID_X9_62_id_characteristic_two_basis 680
  130. #define OBJ_X9_62_id_characteristic_two_basis OBJ_X9_62_characteristic_two_field,3L
  131. #define SN_X9_62_onBasis "onBasis"
  132. #define NID_X9_62_onBasis 681
  133. #define OBJ_X9_62_onBasis OBJ_X9_62_id_characteristic_two_basis,1L
  134. #define SN_X9_62_tpBasis "tpBasis"
  135. #define NID_X9_62_tpBasis 682
  136. #define OBJ_X9_62_tpBasis OBJ_X9_62_id_characteristic_two_basis,2L
  137. #define SN_X9_62_ppBasis "ppBasis"
  138. #define NID_X9_62_ppBasis 683
  139. #define OBJ_X9_62_ppBasis OBJ_X9_62_id_characteristic_two_basis,3L
  140. #define OBJ_X9_62_id_publicKeyType OBJ_ansi_X9_62,2L
  141. #define SN_X9_62_id_ecPublicKey "id-ecPublicKey"
  142. #define NID_X9_62_id_ecPublicKey 408
  143. #define OBJ_X9_62_id_ecPublicKey OBJ_X9_62_id_publicKeyType,1L
  144. #define OBJ_X9_62_ellipticCurve OBJ_ansi_X9_62,3L
  145. #define OBJ_X9_62_c_TwoCurve OBJ_X9_62_ellipticCurve,0L
  146. #define SN_X9_62_c2pnb163v1 "c2pnb163v1"
  147. #define NID_X9_62_c2pnb163v1 684
  148. #define OBJ_X9_62_c2pnb163v1 OBJ_X9_62_c_TwoCurve,1L
  149. #define SN_X9_62_c2pnb163v2 "c2pnb163v2"
  150. #define NID_X9_62_c2pnb163v2 685
  151. #define OBJ_X9_62_c2pnb163v2 OBJ_X9_62_c_TwoCurve,2L
  152. #define SN_X9_62_c2pnb163v3 "c2pnb163v3"
  153. #define NID_X9_62_c2pnb163v3 686
  154. #define OBJ_X9_62_c2pnb163v3 OBJ_X9_62_c_TwoCurve,3L
  155. #define SN_X9_62_c2pnb176v1 "c2pnb176v1"
  156. #define NID_X9_62_c2pnb176v1 687
  157. #define OBJ_X9_62_c2pnb176v1 OBJ_X9_62_c_TwoCurve,4L
  158. #define SN_X9_62_c2tnb191v1 "c2tnb191v1"
  159. #define NID_X9_62_c2tnb191v1 688
  160. #define OBJ_X9_62_c2tnb191v1 OBJ_X9_62_c_TwoCurve,5L
  161. #define SN_X9_62_c2tnb191v2 "c2tnb191v2"
  162. #define NID_X9_62_c2tnb191v2 689
  163. #define OBJ_X9_62_c2tnb191v2 OBJ_X9_62_c_TwoCurve,6L
  164. #define SN_X9_62_c2tnb191v3 "c2tnb191v3"
  165. #define NID_X9_62_c2tnb191v3 690
  166. #define OBJ_X9_62_c2tnb191v3 OBJ_X9_62_c_TwoCurve,7L
  167. #define SN_X9_62_c2onb191v4 "c2onb191v4"
  168. #define NID_X9_62_c2onb191v4 691
  169. #define OBJ_X9_62_c2onb191v4 OBJ_X9_62_c_TwoCurve,8L
  170. #define SN_X9_62_c2onb191v5 "c2onb191v5"
  171. #define NID_X9_62_c2onb191v5 692
  172. #define OBJ_X9_62_c2onb191v5 OBJ_X9_62_c_TwoCurve,9L
  173. #define SN_X9_62_c2pnb208w1 "c2pnb208w1"
  174. #define NID_X9_62_c2pnb208w1 693
  175. #define OBJ_X9_62_c2pnb208w1 OBJ_X9_62_c_TwoCurve,10L
  176. #define SN_X9_62_c2tnb239v1 "c2tnb239v1"
  177. #define NID_X9_62_c2tnb239v1 694
  178. #define OBJ_X9_62_c2tnb239v1 OBJ_X9_62_c_TwoCurve,11L
  179. #define SN_X9_62_c2tnb239v2 "c2tnb239v2"
  180. #define NID_X9_62_c2tnb239v2 695
  181. #define OBJ_X9_62_c2tnb239v2 OBJ_X9_62_c_TwoCurve,12L
  182. #define SN_X9_62_c2tnb239v3 "c2tnb239v3"
  183. #define NID_X9_62_c2tnb239v3 696
  184. #define OBJ_X9_62_c2tnb239v3 OBJ_X9_62_c_TwoCurve,13L
  185. #define SN_X9_62_c2onb239v4 "c2onb239v4"
  186. #define NID_X9_62_c2onb239v4 697
  187. #define OBJ_X9_62_c2onb239v4 OBJ_X9_62_c_TwoCurve,14L
  188. #define SN_X9_62_c2onb239v5 "c2onb239v5"
  189. #define NID_X9_62_c2onb239v5 698
  190. #define OBJ_X9_62_c2onb239v5 OBJ_X9_62_c_TwoCurve,15L
  191. #define SN_X9_62_c2pnb272w1 "c2pnb272w1"
  192. #define NID_X9_62_c2pnb272w1 699
  193. #define OBJ_X9_62_c2pnb272w1 OBJ_X9_62_c_TwoCurve,16L
  194. #define SN_X9_62_c2pnb304w1 "c2pnb304w1"
  195. #define NID_X9_62_c2pnb304w1 700
  196. #define OBJ_X9_62_c2pnb304w1 OBJ_X9_62_c_TwoCurve,17L
  197. #define SN_X9_62_c2tnb359v1 "c2tnb359v1"
  198. #define NID_X9_62_c2tnb359v1 701
  199. #define OBJ_X9_62_c2tnb359v1 OBJ_X9_62_c_TwoCurve,18L
  200. #define SN_X9_62_c2pnb368w1 "c2pnb368w1"
  201. #define NID_X9_62_c2pnb368w1 702
  202. #define OBJ_X9_62_c2pnb368w1 OBJ_X9_62_c_TwoCurve,19L
  203. #define SN_X9_62_c2tnb431r1 "c2tnb431r1"
  204. #define NID_X9_62_c2tnb431r1 703
  205. #define OBJ_X9_62_c2tnb431r1 OBJ_X9_62_c_TwoCurve,20L
  206. #define OBJ_X9_62_primeCurve OBJ_X9_62_ellipticCurve,1L
  207. #define SN_X9_62_prime192v1 "prime192v1"
  208. #define NID_X9_62_prime192v1 409
  209. #define OBJ_X9_62_prime192v1 OBJ_X9_62_primeCurve,1L
  210. #define SN_X9_62_prime192v2 "prime192v2"
  211. #define NID_X9_62_prime192v2 410
  212. #define OBJ_X9_62_prime192v2 OBJ_X9_62_primeCurve,2L
  213. #define SN_X9_62_prime192v3 "prime192v3"
  214. #define NID_X9_62_prime192v3 411
  215. #define OBJ_X9_62_prime192v3 OBJ_X9_62_primeCurve,3L
  216. #define SN_X9_62_prime239v1 "prime239v1"
  217. #define NID_X9_62_prime239v1 412
  218. #define OBJ_X9_62_prime239v1 OBJ_X9_62_primeCurve,4L
  219. #define SN_X9_62_prime239v2 "prime239v2"
  220. #define NID_X9_62_prime239v2 413
  221. #define OBJ_X9_62_prime239v2 OBJ_X9_62_primeCurve,5L
  222. #define SN_X9_62_prime239v3 "prime239v3"
  223. #define NID_X9_62_prime239v3 414
  224. #define OBJ_X9_62_prime239v3 OBJ_X9_62_primeCurve,6L
  225. #define SN_X9_62_prime256v1 "prime256v1"
  226. #define NID_X9_62_prime256v1 415
  227. #define OBJ_X9_62_prime256v1 OBJ_X9_62_primeCurve,7L
  228. #define OBJ_X9_62_id_ecSigType OBJ_ansi_X9_62,4L
  229. #define SN_ecdsa_with_SHA1 "ecdsa-with-SHA1"
  230. #define NID_ecdsa_with_SHA1 416
  231. #define OBJ_ecdsa_with_SHA1 OBJ_X9_62_id_ecSigType,1L
  232. #define SN_ecdsa_with_Recommended "ecdsa-with-Recommended"
  233. #define NID_ecdsa_with_Recommended 791
  234. #define OBJ_ecdsa_with_Recommended OBJ_X9_62_id_ecSigType,2L
  235. #define SN_ecdsa_with_Specified "ecdsa-with-Specified"
  236. #define NID_ecdsa_with_Specified 792
  237. #define OBJ_ecdsa_with_Specified OBJ_X9_62_id_ecSigType,3L
  238. #define SN_ecdsa_with_SHA224 "ecdsa-with-SHA224"
  239. #define NID_ecdsa_with_SHA224 793
  240. #define OBJ_ecdsa_with_SHA224 OBJ_ecdsa_with_Specified,1L
  241. #define SN_ecdsa_with_SHA256 "ecdsa-with-SHA256"
  242. #define NID_ecdsa_with_SHA256 794
  243. #define OBJ_ecdsa_with_SHA256 OBJ_ecdsa_with_Specified,2L
  244. #define SN_ecdsa_with_SHA384 "ecdsa-with-SHA384"
  245. #define NID_ecdsa_with_SHA384 795
  246. #define OBJ_ecdsa_with_SHA384 OBJ_ecdsa_with_Specified,3L
  247. #define SN_ecdsa_with_SHA512 "ecdsa-with-SHA512"
  248. #define NID_ecdsa_with_SHA512 796
  249. #define OBJ_ecdsa_with_SHA512 OBJ_ecdsa_with_Specified,4L
  250. #define OBJ_secg_ellipticCurve OBJ_certicom_arc,0L
  251. #define SN_secp112r1 "secp112r1"
  252. #define NID_secp112r1 704
  253. #define OBJ_secp112r1 OBJ_secg_ellipticCurve,6L
  254. #define SN_secp112r2 "secp112r2"
  255. #define NID_secp112r2 705
  256. #define OBJ_secp112r2 OBJ_secg_ellipticCurve,7L
  257. #define SN_secp128r1 "secp128r1"
  258. #define NID_secp128r1 706
  259. #define OBJ_secp128r1 OBJ_secg_ellipticCurve,28L
  260. #define SN_secp128r2 "secp128r2"
  261. #define NID_secp128r2 707
  262. #define OBJ_secp128r2 OBJ_secg_ellipticCurve,29L
  263. #define SN_secp160k1 "secp160k1"
  264. #define NID_secp160k1 708
  265. #define OBJ_secp160k1 OBJ_secg_ellipticCurve,9L
  266. #define SN_secp160r1 "secp160r1"
  267. #define NID_secp160r1 709
  268. #define OBJ_secp160r1 OBJ_secg_ellipticCurve,8L
  269. #define SN_secp160r2 "secp160r2"
  270. #define NID_secp160r2 710
  271. #define OBJ_secp160r2 OBJ_secg_ellipticCurve,30L
  272. #define SN_secp192k1 "secp192k1"
  273. #define NID_secp192k1 711
  274. #define OBJ_secp192k1 OBJ_secg_ellipticCurve,31L
  275. #define SN_secp224k1 "secp224k1"
  276. #define NID_secp224k1 712
  277. #define OBJ_secp224k1 OBJ_secg_ellipticCurve,32L
  278. #define SN_secp224r1 "secp224r1"
  279. #define NID_secp224r1 713
  280. #define OBJ_secp224r1 OBJ_secg_ellipticCurve,33L
  281. #define SN_secp256k1 "secp256k1"
  282. #define NID_secp256k1 714
  283. #define OBJ_secp256k1 OBJ_secg_ellipticCurve,10L
  284. #define SN_secp384r1 "secp384r1"
  285. #define NID_secp384r1 715
  286. #define OBJ_secp384r1 OBJ_secg_ellipticCurve,34L
  287. #define SN_secp521r1 "secp521r1"
  288. #define NID_secp521r1 716
  289. #define OBJ_secp521r1 OBJ_secg_ellipticCurve,35L
  290. #define SN_sect113r1 "sect113r1"
  291. #define NID_sect113r1 717
  292. #define OBJ_sect113r1 OBJ_secg_ellipticCurve,4L
  293. #define SN_sect113r2 "sect113r2"
  294. #define NID_sect113r2 718
  295. #define OBJ_sect113r2 OBJ_secg_ellipticCurve,5L
  296. #define SN_sect131r1 "sect131r1"
  297. #define NID_sect131r1 719
  298. #define OBJ_sect131r1 OBJ_secg_ellipticCurve,22L
  299. #define SN_sect131r2 "sect131r2"
  300. #define NID_sect131r2 720
  301. #define OBJ_sect131r2 OBJ_secg_ellipticCurve,23L
  302. #define SN_sect163k1 "sect163k1"
  303. #define NID_sect163k1 721
  304. #define OBJ_sect163k1 OBJ_secg_ellipticCurve,1L
  305. #define SN_sect163r1 "sect163r1"
  306. #define NID_sect163r1 722
  307. #define OBJ_sect163r1 OBJ_secg_ellipticCurve,2L
  308. #define SN_sect163r2 "sect163r2"
  309. #define NID_sect163r2 723
  310. #define OBJ_sect163r2 OBJ_secg_ellipticCurve,15L
  311. #define SN_sect193r1 "sect193r1"
  312. #define NID_sect193r1 724
  313. #define OBJ_sect193r1 OBJ_secg_ellipticCurve,24L
  314. #define SN_sect193r2 "sect193r2"
  315. #define NID_sect193r2 725
  316. #define OBJ_sect193r2 OBJ_secg_ellipticCurve,25L
  317. #define SN_sect233k1 "sect233k1"
  318. #define NID_sect233k1 726
  319. #define OBJ_sect233k1 OBJ_secg_ellipticCurve,26L
  320. #define SN_sect233r1 "sect233r1"
  321. #define NID_sect233r1 727
  322. #define OBJ_sect233r1 OBJ_secg_ellipticCurve,27L
  323. #define SN_sect239k1 "sect239k1"
  324. #define NID_sect239k1 728
  325. #define OBJ_sect239k1 OBJ_secg_ellipticCurve,3L
  326. #define SN_sect283k1 "sect283k1"
  327. #define NID_sect283k1 729
  328. #define OBJ_sect283k1 OBJ_secg_ellipticCurve,16L
  329. #define SN_sect283r1 "sect283r1"
  330. #define NID_sect283r1 730
  331. #define OBJ_sect283r1 OBJ_secg_ellipticCurve,17L
  332. #define SN_sect409k1 "sect409k1"
  333. #define NID_sect409k1 731
  334. #define OBJ_sect409k1 OBJ_secg_ellipticCurve,36L
  335. #define SN_sect409r1 "sect409r1"
  336. #define NID_sect409r1 732
  337. #define OBJ_sect409r1 OBJ_secg_ellipticCurve,37L
  338. #define SN_sect571k1 "sect571k1"
  339. #define NID_sect571k1 733
  340. #define OBJ_sect571k1 OBJ_secg_ellipticCurve,38L
  341. #define SN_sect571r1 "sect571r1"
  342. #define NID_sect571r1 734
  343. #define OBJ_sect571r1 OBJ_secg_ellipticCurve,39L
  344. #define OBJ_wap_wsg_idm_ecid OBJ_wap_wsg,4L
  345. #define SN_wap_wsg_idm_ecid_wtls1 "wap-wsg-idm-ecid-wtls1"
  346. #define NID_wap_wsg_idm_ecid_wtls1 735
  347. #define OBJ_wap_wsg_idm_ecid_wtls1 OBJ_wap_wsg_idm_ecid,1L
  348. #define SN_wap_wsg_idm_ecid_wtls3 "wap-wsg-idm-ecid-wtls3"
  349. #define NID_wap_wsg_idm_ecid_wtls3 736
  350. #define OBJ_wap_wsg_idm_ecid_wtls3 OBJ_wap_wsg_idm_ecid,3L
  351. #define SN_wap_wsg_idm_ecid_wtls4 "wap-wsg-idm-ecid-wtls4"
  352. #define NID_wap_wsg_idm_ecid_wtls4 737
  353. #define OBJ_wap_wsg_idm_ecid_wtls4 OBJ_wap_wsg_idm_ecid,4L
  354. #define SN_wap_wsg_idm_ecid_wtls5 "wap-wsg-idm-ecid-wtls5"
  355. #define NID_wap_wsg_idm_ecid_wtls5 738
  356. #define OBJ_wap_wsg_idm_ecid_wtls5 OBJ_wap_wsg_idm_ecid,5L
  357. #define SN_wap_wsg_idm_ecid_wtls6 "wap-wsg-idm-ecid-wtls6"
  358. #define NID_wap_wsg_idm_ecid_wtls6 739
  359. #define OBJ_wap_wsg_idm_ecid_wtls6 OBJ_wap_wsg_idm_ecid,6L
  360. #define SN_wap_wsg_idm_ecid_wtls7 "wap-wsg-idm-ecid-wtls7"
  361. #define NID_wap_wsg_idm_ecid_wtls7 740
  362. #define OBJ_wap_wsg_idm_ecid_wtls7 OBJ_wap_wsg_idm_ecid,7L
  363. #define SN_wap_wsg_idm_ecid_wtls8 "wap-wsg-idm-ecid-wtls8"
  364. #define NID_wap_wsg_idm_ecid_wtls8 741
  365. #define OBJ_wap_wsg_idm_ecid_wtls8 OBJ_wap_wsg_idm_ecid,8L
  366. #define SN_wap_wsg_idm_ecid_wtls9 "wap-wsg-idm-ecid-wtls9"
  367. #define NID_wap_wsg_idm_ecid_wtls9 742
  368. #define OBJ_wap_wsg_idm_ecid_wtls9 OBJ_wap_wsg_idm_ecid,9L
  369. #define SN_wap_wsg_idm_ecid_wtls10 "wap-wsg-idm-ecid-wtls10"
  370. #define NID_wap_wsg_idm_ecid_wtls10 743
  371. #define OBJ_wap_wsg_idm_ecid_wtls10 OBJ_wap_wsg_idm_ecid,10L
  372. #define SN_wap_wsg_idm_ecid_wtls11 "wap-wsg-idm-ecid-wtls11"
  373. #define NID_wap_wsg_idm_ecid_wtls11 744
  374. #define OBJ_wap_wsg_idm_ecid_wtls11 OBJ_wap_wsg_idm_ecid,11L
  375. #define SN_wap_wsg_idm_ecid_wtls12 "wap-wsg-idm-ecid-wtls12"
  376. #define NID_wap_wsg_idm_ecid_wtls12 745
  377. #define OBJ_wap_wsg_idm_ecid_wtls12 OBJ_wap_wsg_idm_ecid,12L
  378. #define SN_cast5_cbc "CAST5-CBC"
  379. #define LN_cast5_cbc "cast5-cbc"
  380. #define NID_cast5_cbc 108
  381. #define OBJ_cast5_cbc OBJ_ISO_US,113533L,7L,66L,10L
  382. #define SN_cast5_ecb "CAST5-ECB"
  383. #define LN_cast5_ecb "cast5-ecb"
  384. #define NID_cast5_ecb 109
  385. #define SN_cast5_cfb64 "CAST5-CFB"
  386. #define LN_cast5_cfb64 "cast5-cfb"
  387. #define NID_cast5_cfb64 110
  388. #define SN_cast5_ofb64 "CAST5-OFB"
  389. #define LN_cast5_ofb64 "cast5-ofb"
  390. #define NID_cast5_ofb64 111
  391. #define LN_pbeWithMD5AndCast5_CBC "pbeWithMD5AndCast5CBC"
  392. #define NID_pbeWithMD5AndCast5_CBC 112
  393. #define OBJ_pbeWithMD5AndCast5_CBC OBJ_ISO_US,113533L,7L,66L,12L
  394. #define SN_id_PasswordBasedMAC "id-PasswordBasedMAC"
  395. #define LN_id_PasswordBasedMAC "password based MAC"
  396. #define NID_id_PasswordBasedMAC 782
  397. #define OBJ_id_PasswordBasedMAC OBJ_ISO_US,113533L,7L,66L,13L
  398. #define SN_id_DHBasedMac "id-DHBasedMac"
  399. #define LN_id_DHBasedMac "Diffie-Hellman based MAC"
  400. #define NID_id_DHBasedMac 783
  401. #define OBJ_id_DHBasedMac OBJ_ISO_US,113533L,7L,66L,30L
  402. #define SN_rsadsi "rsadsi"
  403. #define LN_rsadsi "RSA Data Security, Inc."
  404. #define NID_rsadsi 1
  405. #define OBJ_rsadsi OBJ_ISO_US,113549L
  406. #define SN_pkcs "pkcs"
  407. #define LN_pkcs "RSA Data Security, Inc. PKCS"
  408. #define NID_pkcs 2
  409. #define OBJ_pkcs OBJ_rsadsi,1L
  410. #define SN_pkcs1 "pkcs1"
  411. #define NID_pkcs1 186
  412. #define OBJ_pkcs1 OBJ_pkcs,1L
  413. #define LN_rsaEncryption "rsaEncryption"
  414. #define NID_rsaEncryption 6
  415. #define OBJ_rsaEncryption OBJ_pkcs1,1L
  416. #define SN_md2WithRSAEncryption "RSA-MD2"
  417. #define LN_md2WithRSAEncryption "md2WithRSAEncryption"
  418. #define NID_md2WithRSAEncryption 7
  419. #define OBJ_md2WithRSAEncryption OBJ_pkcs1,2L
  420. #define SN_md4WithRSAEncryption "RSA-MD4"
  421. #define LN_md4WithRSAEncryption "md4WithRSAEncryption"
  422. #define NID_md4WithRSAEncryption 396
  423. #define OBJ_md4WithRSAEncryption OBJ_pkcs1,3L
  424. #define SN_md5WithRSAEncryption "RSA-MD5"
  425. #define LN_md5WithRSAEncryption "md5WithRSAEncryption"
  426. #define NID_md5WithRSAEncryption 8
  427. #define OBJ_md5WithRSAEncryption OBJ_pkcs1,4L
  428. #define SN_sha1WithRSAEncryption "RSA-SHA1"
  429. #define LN_sha1WithRSAEncryption "sha1WithRSAEncryption"
  430. #define NID_sha1WithRSAEncryption 65
  431. #define OBJ_sha1WithRSAEncryption OBJ_pkcs1,5L
  432. #define SN_rsaesOaep "RSAES-OAEP"
  433. #define LN_rsaesOaep "rsaesOaep"
  434. #define NID_rsaesOaep 919
  435. #define OBJ_rsaesOaep OBJ_pkcs1,7L
  436. #define SN_mgf1 "MGF1"
  437. #define LN_mgf1 "mgf1"
  438. #define NID_mgf1 911
  439. #define OBJ_mgf1 OBJ_pkcs1,8L
  440. #define SN_pSpecified "PSPECIFIED"
  441. #define LN_pSpecified "pSpecified"
  442. #define NID_pSpecified 935
  443. #define OBJ_pSpecified OBJ_pkcs1,9L
  444. #define SN_rsassaPss "RSASSA-PSS"
  445. #define LN_rsassaPss "rsassaPss"
  446. #define NID_rsassaPss 912
  447. #define OBJ_rsassaPss OBJ_pkcs1,10L
  448. #define SN_sha256WithRSAEncryption "RSA-SHA256"
  449. #define LN_sha256WithRSAEncryption "sha256WithRSAEncryption"
  450. #define NID_sha256WithRSAEncryption 668
  451. #define OBJ_sha256WithRSAEncryption OBJ_pkcs1,11L
  452. #define SN_sha384WithRSAEncryption "RSA-SHA384"
  453. #define LN_sha384WithRSAEncryption "sha384WithRSAEncryption"
  454. #define NID_sha384WithRSAEncryption 669
  455. #define OBJ_sha384WithRSAEncryption OBJ_pkcs1,12L
  456. #define SN_sha512WithRSAEncryption "RSA-SHA512"
  457. #define LN_sha512WithRSAEncryption "sha512WithRSAEncryption"
  458. #define NID_sha512WithRSAEncryption 670
  459. #define OBJ_sha512WithRSAEncryption OBJ_pkcs1,13L
  460. #define SN_sha224WithRSAEncryption "RSA-SHA224"
  461. #define LN_sha224WithRSAEncryption "sha224WithRSAEncryption"
  462. #define NID_sha224WithRSAEncryption 671
  463. #define OBJ_sha224WithRSAEncryption OBJ_pkcs1,14L
  464. #define SN_sha512_224WithRSAEncryption "RSA-SHA512/224"
  465. #define LN_sha512_224WithRSAEncryption "sha512-224WithRSAEncryption"
  466. #define NID_sha512_224WithRSAEncryption 1145
  467. #define OBJ_sha512_224WithRSAEncryption OBJ_pkcs1,15L
  468. #define SN_sha512_256WithRSAEncryption "RSA-SHA512/256"
  469. #define LN_sha512_256WithRSAEncryption "sha512-256WithRSAEncryption"
  470. #define NID_sha512_256WithRSAEncryption 1146
  471. #define OBJ_sha512_256WithRSAEncryption OBJ_pkcs1,16L
  472. #define SN_pkcs3 "pkcs3"
  473. #define NID_pkcs3 27
  474. #define OBJ_pkcs3 OBJ_pkcs,3L
  475. #define LN_dhKeyAgreement "dhKeyAgreement"
  476. #define NID_dhKeyAgreement 28
  477. #define OBJ_dhKeyAgreement OBJ_pkcs3,1L
  478. #define SN_pkcs5 "pkcs5"
  479. #define NID_pkcs5 187
  480. #define OBJ_pkcs5 OBJ_pkcs,5L
  481. #define SN_pbeWithMD2AndDES_CBC "PBE-MD2-DES"
  482. #define LN_pbeWithMD2AndDES_CBC "pbeWithMD2AndDES-CBC"
  483. #define NID_pbeWithMD2AndDES_CBC 9
  484. #define OBJ_pbeWithMD2AndDES_CBC OBJ_pkcs5,1L
  485. #define SN_pbeWithMD5AndDES_CBC "PBE-MD5-DES"
  486. #define LN_pbeWithMD5AndDES_CBC "pbeWithMD5AndDES-CBC"
  487. #define NID_pbeWithMD5AndDES_CBC 10
  488. #define OBJ_pbeWithMD5AndDES_CBC OBJ_pkcs5,3L
  489. #define SN_pbeWithMD2AndRC2_CBC "PBE-MD2-RC2-64"
  490. #define LN_pbeWithMD2AndRC2_CBC "pbeWithMD2AndRC2-CBC"
  491. #define NID_pbeWithMD2AndRC2_CBC 168
  492. #define OBJ_pbeWithMD2AndRC2_CBC OBJ_pkcs5,4L
  493. #define SN_pbeWithMD5AndRC2_CBC "PBE-MD5-RC2-64"
  494. #define LN_pbeWithMD5AndRC2_CBC "pbeWithMD5AndRC2-CBC"
  495. #define NID_pbeWithMD5AndRC2_CBC 169
  496. #define OBJ_pbeWithMD5AndRC2_CBC OBJ_pkcs5,6L
  497. #define SN_pbeWithSHA1AndDES_CBC "PBE-SHA1-DES"
  498. #define LN_pbeWithSHA1AndDES_CBC "pbeWithSHA1AndDES-CBC"
  499. #define NID_pbeWithSHA1AndDES_CBC 170
  500. #define OBJ_pbeWithSHA1AndDES_CBC OBJ_pkcs5,10L
  501. #define SN_pbeWithSHA1AndRC2_CBC "PBE-SHA1-RC2-64"
  502. #define LN_pbeWithSHA1AndRC2_CBC "pbeWithSHA1AndRC2-CBC"
  503. #define NID_pbeWithSHA1AndRC2_CBC 68
  504. #define OBJ_pbeWithSHA1AndRC2_CBC OBJ_pkcs5,11L
  505. #define LN_id_pbkdf2 "PBKDF2"
  506. #define NID_id_pbkdf2 69
  507. #define OBJ_id_pbkdf2 OBJ_pkcs5,12L
  508. #define LN_pbes2 "PBES2"
  509. #define NID_pbes2 161
  510. #define OBJ_pbes2 OBJ_pkcs5,13L
  511. #define LN_pbmac1 "PBMAC1"
  512. #define NID_pbmac1 162
  513. #define OBJ_pbmac1 OBJ_pkcs5,14L
  514. #define SN_pkcs7 "pkcs7"
  515. #define NID_pkcs7 20
  516. #define OBJ_pkcs7 OBJ_pkcs,7L
  517. #define LN_pkcs7_data "pkcs7-data"
  518. #define NID_pkcs7_data 21
  519. #define OBJ_pkcs7_data OBJ_pkcs7,1L
  520. #define LN_pkcs7_signed "pkcs7-signedData"
  521. #define NID_pkcs7_signed 22
  522. #define OBJ_pkcs7_signed OBJ_pkcs7,2L
  523. #define LN_pkcs7_enveloped "pkcs7-envelopedData"
  524. #define NID_pkcs7_enveloped 23
  525. #define OBJ_pkcs7_enveloped OBJ_pkcs7,3L
  526. #define LN_pkcs7_signedAndEnveloped "pkcs7-signedAndEnvelopedData"
  527. #define NID_pkcs7_signedAndEnveloped 24
  528. #define OBJ_pkcs7_signedAndEnveloped OBJ_pkcs7,4L
  529. #define LN_pkcs7_digest "pkcs7-digestData"
  530. #define NID_pkcs7_digest 25
  531. #define OBJ_pkcs7_digest OBJ_pkcs7,5L
  532. #define LN_pkcs7_encrypted "pkcs7-encryptedData"
  533. #define NID_pkcs7_encrypted 26
  534. #define OBJ_pkcs7_encrypted OBJ_pkcs7,6L
  535. #define SN_pkcs9 "pkcs9"
  536. #define NID_pkcs9 47
  537. #define OBJ_pkcs9 OBJ_pkcs,9L
  538. #define LN_pkcs9_emailAddress "emailAddress"
  539. #define NID_pkcs9_emailAddress 48
  540. #define OBJ_pkcs9_emailAddress OBJ_pkcs9,1L
  541. #define LN_pkcs9_unstructuredName "unstructuredName"
  542. #define NID_pkcs9_unstructuredName 49
  543. #define OBJ_pkcs9_unstructuredName OBJ_pkcs9,2L
  544. #define LN_pkcs9_contentType "contentType"
  545. #define NID_pkcs9_contentType 50
  546. #define OBJ_pkcs9_contentType OBJ_pkcs9,3L
  547. #define LN_pkcs9_messageDigest "messageDigest"
  548. #define NID_pkcs9_messageDigest 51
  549. #define OBJ_pkcs9_messageDigest OBJ_pkcs9,4L
  550. #define LN_pkcs9_signingTime "signingTime"
  551. #define NID_pkcs9_signingTime 52
  552. #define OBJ_pkcs9_signingTime OBJ_pkcs9,5L
  553. #define LN_pkcs9_countersignature "countersignature"
  554. #define NID_pkcs9_countersignature 53
  555. #define OBJ_pkcs9_countersignature OBJ_pkcs9,6L
  556. #define LN_pkcs9_challengePassword "challengePassword"
  557. #define NID_pkcs9_challengePassword 54
  558. #define OBJ_pkcs9_challengePassword OBJ_pkcs9,7L
  559. #define LN_pkcs9_unstructuredAddress "unstructuredAddress"
  560. #define NID_pkcs9_unstructuredAddress 55
  561. #define OBJ_pkcs9_unstructuredAddress OBJ_pkcs9,8L
  562. #define LN_pkcs9_extCertAttributes "extendedCertificateAttributes"
  563. #define NID_pkcs9_extCertAttributes 56
  564. #define OBJ_pkcs9_extCertAttributes OBJ_pkcs9,9L
  565. #define SN_ext_req "extReq"
  566. #define LN_ext_req "Extension Request"
  567. #define NID_ext_req 172
  568. #define OBJ_ext_req OBJ_pkcs9,14L
  569. #define SN_SMIMECapabilities "SMIME-CAPS"
  570. #define LN_SMIMECapabilities "S/MIME Capabilities"
  571. #define NID_SMIMECapabilities 167
  572. #define OBJ_SMIMECapabilities OBJ_pkcs9,15L
  573. #define SN_SMIME "SMIME"
  574. #define LN_SMIME "S/MIME"
  575. #define NID_SMIME 188
  576. #define OBJ_SMIME OBJ_pkcs9,16L
  577. #define SN_id_smime_mod "id-smime-mod"
  578. #define NID_id_smime_mod 189
  579. #define OBJ_id_smime_mod OBJ_SMIME,0L
  580. #define SN_id_smime_ct "id-smime-ct"
  581. #define NID_id_smime_ct 190
  582. #define OBJ_id_smime_ct OBJ_SMIME,1L
  583. #define SN_id_smime_aa "id-smime-aa"
  584. #define NID_id_smime_aa 191
  585. #define OBJ_id_smime_aa OBJ_SMIME,2L
  586. #define SN_id_smime_alg "id-smime-alg"
  587. #define NID_id_smime_alg 192
  588. #define OBJ_id_smime_alg OBJ_SMIME,3L
  589. #define SN_id_smime_cd "id-smime-cd"
  590. #define NID_id_smime_cd 193
  591. #define OBJ_id_smime_cd OBJ_SMIME,4L
  592. #define SN_id_smime_spq "id-smime-spq"
  593. #define NID_id_smime_spq 194
  594. #define OBJ_id_smime_spq OBJ_SMIME,5L
  595. #define SN_id_smime_cti "id-smime-cti"
  596. #define NID_id_smime_cti 195
  597. #define OBJ_id_smime_cti OBJ_SMIME,6L
  598. #define SN_id_smime_mod_cms "id-smime-mod-cms"
  599. #define NID_id_smime_mod_cms 196
  600. #define OBJ_id_smime_mod_cms OBJ_id_smime_mod,1L
  601. #define SN_id_smime_mod_ess "id-smime-mod-ess"
  602. #define NID_id_smime_mod_ess 197
  603. #define OBJ_id_smime_mod_ess OBJ_id_smime_mod,2L
  604. #define SN_id_smime_mod_oid "id-smime-mod-oid"
  605. #define NID_id_smime_mod_oid 198
  606. #define OBJ_id_smime_mod_oid OBJ_id_smime_mod,3L
  607. #define SN_id_smime_mod_msg_v3 "id-smime-mod-msg-v3"
  608. #define NID_id_smime_mod_msg_v3 199
  609. #define OBJ_id_smime_mod_msg_v3 OBJ_id_smime_mod,4L
  610. #define SN_id_smime_mod_ets_eSignature_88 "id-smime-mod-ets-eSignature-88"
  611. #define NID_id_smime_mod_ets_eSignature_88 200
  612. #define OBJ_id_smime_mod_ets_eSignature_88 OBJ_id_smime_mod,5L
  613. #define SN_id_smime_mod_ets_eSignature_97 "id-smime-mod-ets-eSignature-97"
  614. #define NID_id_smime_mod_ets_eSignature_97 201
  615. #define OBJ_id_smime_mod_ets_eSignature_97 OBJ_id_smime_mod,6L
  616. #define SN_id_smime_mod_ets_eSigPolicy_88 "id-smime-mod-ets-eSigPolicy-88"
  617. #define NID_id_smime_mod_ets_eSigPolicy_88 202
  618. #define OBJ_id_smime_mod_ets_eSigPolicy_88 OBJ_id_smime_mod,7L
  619. #define SN_id_smime_mod_ets_eSigPolicy_97 "id-smime-mod-ets-eSigPolicy-97"
  620. #define NID_id_smime_mod_ets_eSigPolicy_97 203
  621. #define OBJ_id_smime_mod_ets_eSigPolicy_97 OBJ_id_smime_mod,8L
  622. #define SN_id_smime_ct_receipt "id-smime-ct-receipt"
  623. #define NID_id_smime_ct_receipt 204
  624. #define OBJ_id_smime_ct_receipt OBJ_id_smime_ct,1L
  625. #define SN_id_smime_ct_authData "id-smime-ct-authData"
  626. #define NID_id_smime_ct_authData 205
  627. #define OBJ_id_smime_ct_authData OBJ_id_smime_ct,2L
  628. #define SN_id_smime_ct_publishCert "id-smime-ct-publishCert"
  629. #define NID_id_smime_ct_publishCert 206
  630. #define OBJ_id_smime_ct_publishCert OBJ_id_smime_ct,3L
  631. #define SN_id_smime_ct_TSTInfo "id-smime-ct-TSTInfo"
  632. #define NID_id_smime_ct_TSTInfo 207
  633. #define OBJ_id_smime_ct_TSTInfo OBJ_id_smime_ct,4L
  634. #define SN_id_smime_ct_TDTInfo "id-smime-ct-TDTInfo"
  635. #define NID_id_smime_ct_TDTInfo 208
  636. #define OBJ_id_smime_ct_TDTInfo OBJ_id_smime_ct,5L
  637. #define SN_id_smime_ct_contentInfo "id-smime-ct-contentInfo"
  638. #define NID_id_smime_ct_contentInfo 209
  639. #define OBJ_id_smime_ct_contentInfo OBJ_id_smime_ct,6L
  640. #define SN_id_smime_ct_DVCSRequestData "id-smime-ct-DVCSRequestData"
  641. #define NID_id_smime_ct_DVCSRequestData 210
  642. #define OBJ_id_smime_ct_DVCSRequestData OBJ_id_smime_ct,7L
  643. #define SN_id_smime_ct_DVCSResponseData "id-smime-ct-DVCSResponseData"
  644. #define NID_id_smime_ct_DVCSResponseData 211
  645. #define OBJ_id_smime_ct_DVCSResponseData OBJ_id_smime_ct,8L
  646. #define SN_id_smime_ct_compressedData "id-smime-ct-compressedData"
  647. #define NID_id_smime_ct_compressedData 786
  648. #define OBJ_id_smime_ct_compressedData OBJ_id_smime_ct,9L
  649. #define SN_id_smime_ct_contentCollection "id-smime-ct-contentCollection"
  650. #define NID_id_smime_ct_contentCollection 1058
  651. #define OBJ_id_smime_ct_contentCollection OBJ_id_smime_ct,19L
  652. #define SN_id_smime_ct_authEnvelopedData "id-smime-ct-authEnvelopedData"
  653. #define NID_id_smime_ct_authEnvelopedData 1059
  654. #define OBJ_id_smime_ct_authEnvelopedData OBJ_id_smime_ct,23L
  655. #define SN_id_ct_asciiTextWithCRLF "id-ct-asciiTextWithCRLF"
  656. #define NID_id_ct_asciiTextWithCRLF 787
  657. #define OBJ_id_ct_asciiTextWithCRLF OBJ_id_smime_ct,27L
  658. #define SN_id_ct_xml "id-ct-xml"
  659. #define NID_id_ct_xml 1060
  660. #define OBJ_id_ct_xml OBJ_id_smime_ct,28L
  661. #define SN_id_smime_aa_receiptRequest "id-smime-aa-receiptRequest"
  662. #define NID_id_smime_aa_receiptRequest 212
  663. #define OBJ_id_smime_aa_receiptRequest OBJ_id_smime_aa,1L
  664. #define SN_id_smime_aa_securityLabel "id-smime-aa-securityLabel"
  665. #define NID_id_smime_aa_securityLabel 213
  666. #define OBJ_id_smime_aa_securityLabel OBJ_id_smime_aa,2L
  667. #define SN_id_smime_aa_mlExpandHistory "id-smime-aa-mlExpandHistory"
  668. #define NID_id_smime_aa_mlExpandHistory 214
  669. #define OBJ_id_smime_aa_mlExpandHistory OBJ_id_smime_aa,3L
  670. #define SN_id_smime_aa_contentHint "id-smime-aa-contentHint"
  671. #define NID_id_smime_aa_contentHint 215
  672. #define OBJ_id_smime_aa_contentHint OBJ_id_smime_aa,4L
  673. #define SN_id_smime_aa_msgSigDigest "id-smime-aa-msgSigDigest"
  674. #define NID_id_smime_aa_msgSigDigest 216
  675. #define OBJ_id_smime_aa_msgSigDigest OBJ_id_smime_aa,5L
  676. #define SN_id_smime_aa_encapContentType "id-smime-aa-encapContentType"
  677. #define NID_id_smime_aa_encapContentType 217
  678. #define OBJ_id_smime_aa_encapContentType OBJ_id_smime_aa,6L
  679. #define SN_id_smime_aa_contentIdentifier "id-smime-aa-contentIdentifier"
  680. #define NID_id_smime_aa_contentIdentifier 218
  681. #define OBJ_id_smime_aa_contentIdentifier OBJ_id_smime_aa,7L
  682. #define SN_id_smime_aa_macValue "id-smime-aa-macValue"
  683. #define NID_id_smime_aa_macValue 219
  684. #define OBJ_id_smime_aa_macValue OBJ_id_smime_aa,8L
  685. #define SN_id_smime_aa_equivalentLabels "id-smime-aa-equivalentLabels"
  686. #define NID_id_smime_aa_equivalentLabels 220
  687. #define OBJ_id_smime_aa_equivalentLabels OBJ_id_smime_aa,9L
  688. #define SN_id_smime_aa_contentReference "id-smime-aa-contentReference"
  689. #define NID_id_smime_aa_contentReference 221
  690. #define OBJ_id_smime_aa_contentReference OBJ_id_smime_aa,10L
  691. #define SN_id_smime_aa_encrypKeyPref "id-smime-aa-encrypKeyPref"
  692. #define NID_id_smime_aa_encrypKeyPref 222
  693. #define OBJ_id_smime_aa_encrypKeyPref OBJ_id_smime_aa,11L
  694. #define SN_id_smime_aa_signingCertificate "id-smime-aa-signingCertificate"
  695. #define NID_id_smime_aa_signingCertificate 223
  696. #define OBJ_id_smime_aa_signingCertificate OBJ_id_smime_aa,12L
  697. #define SN_id_smime_aa_smimeEncryptCerts "id-smime-aa-smimeEncryptCerts"
  698. #define NID_id_smime_aa_smimeEncryptCerts 224
  699. #define OBJ_id_smime_aa_smimeEncryptCerts OBJ_id_smime_aa,13L
  700. #define SN_id_smime_aa_timeStampToken "id-smime-aa-timeStampToken"
  701. #define NID_id_smime_aa_timeStampToken 225
  702. #define OBJ_id_smime_aa_timeStampToken OBJ_id_smime_aa,14L
  703. #define SN_id_smime_aa_ets_sigPolicyId "id-smime-aa-ets-sigPolicyId"
  704. #define NID_id_smime_aa_ets_sigPolicyId 226
  705. #define OBJ_id_smime_aa_ets_sigPolicyId OBJ_id_smime_aa,15L
  706. #define SN_id_smime_aa_ets_commitmentType "id-smime-aa-ets-commitmentType"
  707. #define NID_id_smime_aa_ets_commitmentType 227
  708. #define OBJ_id_smime_aa_ets_commitmentType OBJ_id_smime_aa,16L
  709. #define SN_id_smime_aa_ets_signerLocation "id-smime-aa-ets-signerLocation"
  710. #define NID_id_smime_aa_ets_signerLocation 228
  711. #define OBJ_id_smime_aa_ets_signerLocation OBJ_id_smime_aa,17L
  712. #define SN_id_smime_aa_ets_signerAttr "id-smime-aa-ets-signerAttr"
  713. #define NID_id_smime_aa_ets_signerAttr 229
  714. #define OBJ_id_smime_aa_ets_signerAttr OBJ_id_smime_aa,18L
  715. #define SN_id_smime_aa_ets_otherSigCert "id-smime-aa-ets-otherSigCert"
  716. #define NID_id_smime_aa_ets_otherSigCert 230
  717. #define OBJ_id_smime_aa_ets_otherSigCert OBJ_id_smime_aa,19L
  718. #define SN_id_smime_aa_ets_contentTimestamp "id-smime-aa-ets-contentTimestamp"
  719. #define NID_id_smime_aa_ets_contentTimestamp 231
  720. #define OBJ_id_smime_aa_ets_contentTimestamp OBJ_id_smime_aa,20L
  721. #define SN_id_smime_aa_ets_CertificateRefs "id-smime-aa-ets-CertificateRefs"
  722. #define NID_id_smime_aa_ets_CertificateRefs 232
  723. #define OBJ_id_smime_aa_ets_CertificateRefs OBJ_id_smime_aa,21L
  724. #define SN_id_smime_aa_ets_RevocationRefs "id-smime-aa-ets-RevocationRefs"
  725. #define NID_id_smime_aa_ets_RevocationRefs 233
  726. #define OBJ_id_smime_aa_ets_RevocationRefs OBJ_id_smime_aa,22L
  727. #define SN_id_smime_aa_ets_certValues "id-smime-aa-ets-certValues"
  728. #define NID_id_smime_aa_ets_certValues 234
  729. #define OBJ_id_smime_aa_ets_certValues OBJ_id_smime_aa,23L
  730. #define SN_id_smime_aa_ets_revocationValues "id-smime-aa-ets-revocationValues"
  731. #define NID_id_smime_aa_ets_revocationValues 235
  732. #define OBJ_id_smime_aa_ets_revocationValues OBJ_id_smime_aa,24L
  733. #define SN_id_smime_aa_ets_escTimeStamp "id-smime-aa-ets-escTimeStamp"
  734. #define NID_id_smime_aa_ets_escTimeStamp 236
  735. #define OBJ_id_smime_aa_ets_escTimeStamp OBJ_id_smime_aa,25L
  736. #define SN_id_smime_aa_ets_certCRLTimestamp "id-smime-aa-ets-certCRLTimestamp"
  737. #define NID_id_smime_aa_ets_certCRLTimestamp 237
  738. #define OBJ_id_smime_aa_ets_certCRLTimestamp OBJ_id_smime_aa,26L
  739. #define SN_id_smime_aa_ets_archiveTimeStamp "id-smime-aa-ets-archiveTimeStamp"
  740. #define NID_id_smime_aa_ets_archiveTimeStamp 238
  741. #define OBJ_id_smime_aa_ets_archiveTimeStamp OBJ_id_smime_aa,27L
  742. #define SN_id_smime_aa_signatureType "id-smime-aa-signatureType"
  743. #define NID_id_smime_aa_signatureType 239
  744. #define OBJ_id_smime_aa_signatureType OBJ_id_smime_aa,28L
  745. #define SN_id_smime_aa_dvcs_dvc "id-smime-aa-dvcs-dvc"
  746. #define NID_id_smime_aa_dvcs_dvc 240
  747. #define OBJ_id_smime_aa_dvcs_dvc OBJ_id_smime_aa,29L
  748. #define SN_id_smime_aa_signingCertificateV2 "id-smime-aa-signingCertificateV2"
  749. #define NID_id_smime_aa_signingCertificateV2 1086
  750. #define OBJ_id_smime_aa_signingCertificateV2 OBJ_id_smime_aa,47L
  751. #define SN_id_smime_alg_ESDHwith3DES "id-smime-alg-ESDHwith3DES"
  752. #define NID_id_smime_alg_ESDHwith3DES 241
  753. #define OBJ_id_smime_alg_ESDHwith3DES OBJ_id_smime_alg,1L
  754. #define SN_id_smime_alg_ESDHwithRC2 "id-smime-alg-ESDHwithRC2"
  755. #define NID_id_smime_alg_ESDHwithRC2 242
  756. #define OBJ_id_smime_alg_ESDHwithRC2 OBJ_id_smime_alg,2L
  757. #define SN_id_smime_alg_3DESwrap "id-smime-alg-3DESwrap"
  758. #define NID_id_smime_alg_3DESwrap 243
  759. #define OBJ_id_smime_alg_3DESwrap OBJ_id_smime_alg,3L
  760. #define SN_id_smime_alg_RC2wrap "id-smime-alg-RC2wrap"
  761. #define NID_id_smime_alg_RC2wrap 244
  762. #define OBJ_id_smime_alg_RC2wrap OBJ_id_smime_alg,4L
  763. #define SN_id_smime_alg_ESDH "id-smime-alg-ESDH"
  764. #define NID_id_smime_alg_ESDH 245
  765. #define OBJ_id_smime_alg_ESDH OBJ_id_smime_alg,5L
  766. #define SN_id_smime_alg_CMS3DESwrap "id-smime-alg-CMS3DESwrap"
  767. #define NID_id_smime_alg_CMS3DESwrap 246
  768. #define OBJ_id_smime_alg_CMS3DESwrap OBJ_id_smime_alg,6L
  769. #define SN_id_smime_alg_CMSRC2wrap "id-smime-alg-CMSRC2wrap"
  770. #define NID_id_smime_alg_CMSRC2wrap 247
  771. #define OBJ_id_smime_alg_CMSRC2wrap OBJ_id_smime_alg,7L
  772. #define SN_id_alg_PWRI_KEK "id-alg-PWRI-KEK"
  773. #define NID_id_alg_PWRI_KEK 893
  774. #define OBJ_id_alg_PWRI_KEK OBJ_id_smime_alg,9L
  775. #define SN_id_smime_cd_ldap "id-smime-cd-ldap"
  776. #define NID_id_smime_cd_ldap 248
  777. #define OBJ_id_smime_cd_ldap OBJ_id_smime_cd,1L
  778. #define SN_id_smime_spq_ets_sqt_uri "id-smime-spq-ets-sqt-uri"
  779. #define NID_id_smime_spq_ets_sqt_uri 249
  780. #define OBJ_id_smime_spq_ets_sqt_uri OBJ_id_smime_spq,1L
  781. #define SN_id_smime_spq_ets_sqt_unotice "id-smime-spq-ets-sqt-unotice"
  782. #define NID_id_smime_spq_ets_sqt_unotice 250
  783. #define OBJ_id_smime_spq_ets_sqt_unotice OBJ_id_smime_spq,2L
  784. #define SN_id_smime_cti_ets_proofOfOrigin "id-smime-cti-ets-proofOfOrigin"
  785. #define NID_id_smime_cti_ets_proofOfOrigin 251
  786. #define OBJ_id_smime_cti_ets_proofOfOrigin OBJ_id_smime_cti,1L
  787. #define SN_id_smime_cti_ets_proofOfReceipt "id-smime-cti-ets-proofOfReceipt"
  788. #define NID_id_smime_cti_ets_proofOfReceipt 252
  789. #define OBJ_id_smime_cti_ets_proofOfReceipt OBJ_id_smime_cti,2L
  790. #define SN_id_smime_cti_ets_proofOfDelivery "id-smime-cti-ets-proofOfDelivery"
  791. #define NID_id_smime_cti_ets_proofOfDelivery 253
  792. #define OBJ_id_smime_cti_ets_proofOfDelivery OBJ_id_smime_cti,3L
  793. #define SN_id_smime_cti_ets_proofOfSender "id-smime-cti-ets-proofOfSender"
  794. #define NID_id_smime_cti_ets_proofOfSender 254
  795. #define OBJ_id_smime_cti_ets_proofOfSender OBJ_id_smime_cti,4L
  796. #define SN_id_smime_cti_ets_proofOfApproval "id-smime-cti-ets-proofOfApproval"
  797. #define NID_id_smime_cti_ets_proofOfApproval 255
  798. #define OBJ_id_smime_cti_ets_proofOfApproval OBJ_id_smime_cti,5L
  799. #define SN_id_smime_cti_ets_proofOfCreation "id-smime-cti-ets-proofOfCreation"
  800. #define NID_id_smime_cti_ets_proofOfCreation 256
  801. #define OBJ_id_smime_cti_ets_proofOfCreation OBJ_id_smime_cti,6L
  802. #define LN_friendlyName "friendlyName"
  803. #define NID_friendlyName 156
  804. #define OBJ_friendlyName OBJ_pkcs9,20L
  805. #define LN_localKeyID "localKeyID"
  806. #define NID_localKeyID 157
  807. #define OBJ_localKeyID OBJ_pkcs9,21L
  808. #define SN_ms_csp_name "CSPName"
  809. #define LN_ms_csp_name "Microsoft CSP Name"
  810. #define NID_ms_csp_name 417
  811. #define OBJ_ms_csp_name 1L,3L,6L,1L,4L,1L,311L,17L,1L
  812. #define SN_LocalKeySet "LocalKeySet"
  813. #define LN_LocalKeySet "Microsoft Local Key set"
  814. #define NID_LocalKeySet 856
  815. #define OBJ_LocalKeySet 1L,3L,6L,1L,4L,1L,311L,17L,2L
  816. #define OBJ_certTypes OBJ_pkcs9,22L
  817. #define LN_x509Certificate "x509Certificate"
  818. #define NID_x509Certificate 158
  819. #define OBJ_x509Certificate OBJ_certTypes,1L
  820. #define LN_sdsiCertificate "sdsiCertificate"
  821. #define NID_sdsiCertificate 159
  822. #define OBJ_sdsiCertificate OBJ_certTypes,2L
  823. #define OBJ_crlTypes OBJ_pkcs9,23L
  824. #define LN_x509Crl "x509Crl"
  825. #define NID_x509Crl 160
  826. #define OBJ_x509Crl OBJ_crlTypes,1L
  827. #define OBJ_pkcs12 OBJ_pkcs,12L
  828. #define OBJ_pkcs12_pbeids OBJ_pkcs12,1L
  829. #define SN_pbe_WithSHA1And128BitRC4 "PBE-SHA1-RC4-128"
  830. #define LN_pbe_WithSHA1And128BitRC4 "pbeWithSHA1And128BitRC4"
  831. #define NID_pbe_WithSHA1And128BitRC4 144
  832. #define OBJ_pbe_WithSHA1And128BitRC4 OBJ_pkcs12_pbeids,1L
  833. #define SN_pbe_WithSHA1And40BitRC4 "PBE-SHA1-RC4-40"
  834. #define LN_pbe_WithSHA1And40BitRC4 "pbeWithSHA1And40BitRC4"
  835. #define NID_pbe_WithSHA1And40BitRC4 145
  836. #define OBJ_pbe_WithSHA1And40BitRC4 OBJ_pkcs12_pbeids,2L
  837. #define SN_pbe_WithSHA1And3_Key_TripleDES_CBC "PBE-SHA1-3DES"
  838. #define LN_pbe_WithSHA1And3_Key_TripleDES_CBC "pbeWithSHA1And3-KeyTripleDES-CBC"
  839. #define NID_pbe_WithSHA1And3_Key_TripleDES_CBC 146
  840. #define OBJ_pbe_WithSHA1And3_Key_TripleDES_CBC OBJ_pkcs12_pbeids,3L
  841. #define SN_pbe_WithSHA1And2_Key_TripleDES_CBC "PBE-SHA1-2DES"
  842. #define LN_pbe_WithSHA1And2_Key_TripleDES_CBC "pbeWithSHA1And2-KeyTripleDES-CBC"
  843. #define NID_pbe_WithSHA1And2_Key_TripleDES_CBC 147
  844. #define OBJ_pbe_WithSHA1And2_Key_TripleDES_CBC OBJ_pkcs12_pbeids,4L
  845. #define SN_pbe_WithSHA1And128BitRC2_CBC "PBE-SHA1-RC2-128"
  846. #define LN_pbe_WithSHA1And128BitRC2_CBC "pbeWithSHA1And128BitRC2-CBC"
  847. #define NID_pbe_WithSHA1And128BitRC2_CBC 148
  848. #define OBJ_pbe_WithSHA1And128BitRC2_CBC OBJ_pkcs12_pbeids,5L
  849. #define SN_pbe_WithSHA1And40BitRC2_CBC "PBE-SHA1-RC2-40"
  850. #define LN_pbe_WithSHA1And40BitRC2_CBC "pbeWithSHA1And40BitRC2-CBC"
  851. #define NID_pbe_WithSHA1And40BitRC2_CBC 149
  852. #define OBJ_pbe_WithSHA1And40BitRC2_CBC OBJ_pkcs12_pbeids,6L
  853. #define OBJ_pkcs12_Version1 OBJ_pkcs12,10L
  854. #define OBJ_pkcs12_BagIds OBJ_pkcs12_Version1,1L
  855. #define LN_keyBag "keyBag"
  856. #define NID_keyBag 150
  857. #define OBJ_keyBag OBJ_pkcs12_BagIds,1L
  858. #define LN_pkcs8ShroudedKeyBag "pkcs8ShroudedKeyBag"
  859. #define NID_pkcs8ShroudedKeyBag 151
  860. #define OBJ_pkcs8ShroudedKeyBag OBJ_pkcs12_BagIds,2L
  861. #define LN_certBag "certBag"
  862. #define NID_certBag 152
  863. #define OBJ_certBag OBJ_pkcs12_BagIds,3L
  864. #define LN_crlBag "crlBag"
  865. #define NID_crlBag 153
  866. #define OBJ_crlBag OBJ_pkcs12_BagIds,4L
  867. #define LN_secretBag "secretBag"
  868. #define NID_secretBag 154
  869. #define OBJ_secretBag OBJ_pkcs12_BagIds,5L
  870. #define LN_safeContentsBag "safeContentsBag"
  871. #define NID_safeContentsBag 155
  872. #define OBJ_safeContentsBag OBJ_pkcs12_BagIds,6L
  873. #define SN_md2 "MD2"
  874. #define LN_md2 "md2"
  875. #define NID_md2 3
  876. #define OBJ_md2 OBJ_rsadsi,2L,2L
  877. #define SN_md4 "MD4"
  878. #define LN_md4 "md4"
  879. #define NID_md4 257
  880. #define OBJ_md4 OBJ_rsadsi,2L,4L
  881. #define SN_md5 "MD5"
  882. #define LN_md5 "md5"
  883. #define NID_md5 4
  884. #define OBJ_md5 OBJ_rsadsi,2L,5L
  885. #define SN_md5_sha1 "MD5-SHA1"
  886. #define LN_md5_sha1 "md5-sha1"
  887. #define NID_md5_sha1 114
  888. #define LN_hmacWithMD5 "hmacWithMD5"
  889. #define NID_hmacWithMD5 797
  890. #define OBJ_hmacWithMD5 OBJ_rsadsi,2L,6L
  891. #define LN_hmacWithSHA1 "hmacWithSHA1"
  892. #define NID_hmacWithSHA1 163
  893. #define OBJ_hmacWithSHA1 OBJ_rsadsi,2L,7L
  894. #define SN_sm2 "SM2"
  895. #define LN_sm2 "sm2"
  896. #define NID_sm2 1172
  897. #define OBJ_sm2 OBJ_sm_scheme,301L
  898. #define SN_sm3 "SM3"
  899. #define LN_sm3 "sm3"
  900. #define NID_sm3 1143
  901. #define OBJ_sm3 OBJ_sm_scheme,401L
  902. #define SN_sm3WithRSAEncryption "RSA-SM3"
  903. #define LN_sm3WithRSAEncryption "sm3WithRSAEncryption"
  904. #define NID_sm3WithRSAEncryption 1144
  905. #define OBJ_sm3WithRSAEncryption OBJ_sm_scheme,504L
  906. #define LN_hmacWithSHA224 "hmacWithSHA224"
  907. #define NID_hmacWithSHA224 798
  908. #define OBJ_hmacWithSHA224 OBJ_rsadsi,2L,8L
  909. #define LN_hmacWithSHA256 "hmacWithSHA256"
  910. #define NID_hmacWithSHA256 799
  911. #define OBJ_hmacWithSHA256 OBJ_rsadsi,2L,9L
  912. #define LN_hmacWithSHA384 "hmacWithSHA384"
  913. #define NID_hmacWithSHA384 800
  914. #define OBJ_hmacWithSHA384 OBJ_rsadsi,2L,10L
  915. #define LN_hmacWithSHA512 "hmacWithSHA512"
  916. #define NID_hmacWithSHA512 801
  917. #define OBJ_hmacWithSHA512 OBJ_rsadsi,2L,11L
  918. #define LN_hmacWithSHA512_224 "hmacWithSHA512-224"
  919. #define NID_hmacWithSHA512_224 1193
  920. #define OBJ_hmacWithSHA512_224 OBJ_rsadsi,2L,12L
  921. #define LN_hmacWithSHA512_256 "hmacWithSHA512-256"
  922. #define NID_hmacWithSHA512_256 1194
  923. #define OBJ_hmacWithSHA512_256 OBJ_rsadsi,2L,13L
  924. #define SN_rc2_cbc "RC2-CBC"
  925. #define LN_rc2_cbc "rc2-cbc"
  926. #define NID_rc2_cbc 37
  927. #define OBJ_rc2_cbc OBJ_rsadsi,3L,2L
  928. #define SN_rc2_ecb "RC2-ECB"
  929. #define LN_rc2_ecb "rc2-ecb"
  930. #define NID_rc2_ecb 38
  931. #define SN_rc2_cfb64 "RC2-CFB"
  932. #define LN_rc2_cfb64 "rc2-cfb"
  933. #define NID_rc2_cfb64 39
  934. #define SN_rc2_ofb64 "RC2-OFB"
  935. #define LN_rc2_ofb64 "rc2-ofb"
  936. #define NID_rc2_ofb64 40
  937. #define SN_rc2_40_cbc "RC2-40-CBC"
  938. #define LN_rc2_40_cbc "rc2-40-cbc"
  939. #define NID_rc2_40_cbc 98
  940. #define SN_rc2_64_cbc "RC2-64-CBC"
  941. #define LN_rc2_64_cbc "rc2-64-cbc"
  942. #define NID_rc2_64_cbc 166
  943. #define SN_rc4 "RC4"
  944. #define LN_rc4 "rc4"
  945. #define NID_rc4 5
  946. #define OBJ_rc4 OBJ_rsadsi,3L,4L
  947. #define SN_rc4_40 "RC4-40"
  948. #define LN_rc4_40 "rc4-40"
  949. #define NID_rc4_40 97
  950. #define SN_des_ede3_cbc "DES-EDE3-CBC"
  951. #define LN_des_ede3_cbc "des-ede3-cbc"
  952. #define NID_des_ede3_cbc 44
  953. #define OBJ_des_ede3_cbc OBJ_rsadsi,3L,7L
  954. #define SN_rc5_cbc "RC5-CBC"
  955. #define LN_rc5_cbc "rc5-cbc"
  956. #define NID_rc5_cbc 120
  957. #define OBJ_rc5_cbc OBJ_rsadsi,3L,8L
  958. #define SN_rc5_ecb "RC5-ECB"
  959. #define LN_rc5_ecb "rc5-ecb"
  960. #define NID_rc5_ecb 121
  961. #define SN_rc5_cfb64 "RC5-CFB"
  962. #define LN_rc5_cfb64 "rc5-cfb"
  963. #define NID_rc5_cfb64 122
  964. #define SN_rc5_ofb64 "RC5-OFB"
  965. #define LN_rc5_ofb64 "rc5-ofb"
  966. #define NID_rc5_ofb64 123
  967. #define SN_ms_ext_req "msExtReq"
  968. #define LN_ms_ext_req "Microsoft Extension Request"
  969. #define NID_ms_ext_req 171
  970. #define OBJ_ms_ext_req 1L,3L,6L,1L,4L,1L,311L,2L,1L,14L
  971. #define SN_ms_code_ind "msCodeInd"
  972. #define LN_ms_code_ind "Microsoft Individual Code Signing"
  973. #define NID_ms_code_ind 134
  974. #define OBJ_ms_code_ind 1L,3L,6L,1L,4L,1L,311L,2L,1L,21L
  975. #define SN_ms_code_com "msCodeCom"
  976. #define LN_ms_code_com "Microsoft Commercial Code Signing"
  977. #define NID_ms_code_com 135
  978. #define OBJ_ms_code_com 1L,3L,6L,1L,4L,1L,311L,2L,1L,22L
  979. #define SN_ms_ctl_sign "msCTLSign"
  980. #define LN_ms_ctl_sign "Microsoft Trust List Signing"
  981. #define NID_ms_ctl_sign 136
  982. #define OBJ_ms_ctl_sign 1L,3L,6L,1L,4L,1L,311L,10L,3L,1L
  983. #define SN_ms_sgc "msSGC"
  984. #define LN_ms_sgc "Microsoft Server Gated Crypto"
  985. #define NID_ms_sgc 137
  986. #define OBJ_ms_sgc 1L,3L,6L,1L,4L,1L,311L,10L,3L,3L
  987. #define SN_ms_efs "msEFS"
  988. #define LN_ms_efs "Microsoft Encrypted File System"
  989. #define NID_ms_efs 138
  990. #define OBJ_ms_efs 1L,3L,6L,1L,4L,1L,311L,10L,3L,4L
  991. #define SN_ms_smartcard_login "msSmartcardLogin"
  992. #define LN_ms_smartcard_login "Microsoft Smartcardlogin"
  993. #define NID_ms_smartcard_login 648
  994. #define OBJ_ms_smartcard_login 1L,3L,6L,1L,4L,1L,311L,20L,2L,2L
  995. #define SN_ms_upn "msUPN"
  996. #define LN_ms_upn "Microsoft Universal Principal Name"
  997. #define NID_ms_upn 649
  998. #define OBJ_ms_upn 1L,3L,6L,1L,4L,1L,311L,20L,2L,3L
  999. #define SN_idea_cbc "IDEA-CBC"
  1000. #define LN_idea_cbc "idea-cbc"
  1001. #define NID_idea_cbc 34
  1002. #define OBJ_idea_cbc 1L,3L,6L,1L,4L,1L,188L,7L,1L,1L,2L
  1003. #define SN_idea_ecb "IDEA-ECB"
  1004. #define LN_idea_ecb "idea-ecb"
  1005. #define NID_idea_ecb 36
  1006. #define SN_idea_cfb64 "IDEA-CFB"
  1007. #define LN_idea_cfb64 "idea-cfb"
  1008. #define NID_idea_cfb64 35
  1009. #define SN_idea_ofb64 "IDEA-OFB"
  1010. #define LN_idea_ofb64 "idea-ofb"
  1011. #define NID_idea_ofb64 46
  1012. #define SN_bf_cbc "BF-CBC"
  1013. #define LN_bf_cbc "bf-cbc"
  1014. #define NID_bf_cbc 91
  1015. #define OBJ_bf_cbc 1L,3L,6L,1L,4L,1L,3029L,1L,2L
  1016. #define SN_bf_ecb "BF-ECB"
  1017. #define LN_bf_ecb "bf-ecb"
  1018. #define NID_bf_ecb 92
  1019. #define SN_bf_cfb64 "BF-CFB"
  1020. #define LN_bf_cfb64 "bf-cfb"
  1021. #define NID_bf_cfb64 93
  1022. #define SN_bf_ofb64 "BF-OFB"
  1023. #define LN_bf_ofb64 "bf-ofb"
  1024. #define NID_bf_ofb64 94
  1025. #define SN_id_pkix "PKIX"
  1026. #define NID_id_pkix 127
  1027. #define OBJ_id_pkix 1L,3L,6L,1L,5L,5L,7L
  1028. #define SN_id_pkix_mod "id-pkix-mod"
  1029. #define NID_id_pkix_mod 258
  1030. #define OBJ_id_pkix_mod OBJ_id_pkix,0L
  1031. #define SN_id_pe "id-pe"
  1032. #define NID_id_pe 175
  1033. #define OBJ_id_pe OBJ_id_pkix,1L
  1034. #define SN_id_qt "id-qt"
  1035. #define NID_id_qt 259
  1036. #define OBJ_id_qt OBJ_id_pkix,2L
  1037. #define SN_id_kp "id-kp"
  1038. #define NID_id_kp 128
  1039. #define OBJ_id_kp OBJ_id_pkix,3L
  1040. #define SN_id_it "id-it"
  1041. #define NID_id_it 260
  1042. #define OBJ_id_it OBJ_id_pkix,4L
  1043. #define SN_id_pkip "id-pkip"
  1044. #define NID_id_pkip 261
  1045. #define OBJ_id_pkip OBJ_id_pkix,5L
  1046. #define SN_id_alg "id-alg"
  1047. #define NID_id_alg 262
  1048. #define OBJ_id_alg OBJ_id_pkix,6L
  1049. #define SN_id_cmc "id-cmc"
  1050. #define NID_id_cmc 263
  1051. #define OBJ_id_cmc OBJ_id_pkix,7L
  1052. #define SN_id_on "id-on"
  1053. #define NID_id_on 264
  1054. #define OBJ_id_on OBJ_id_pkix,8L
  1055. #define SN_id_pda "id-pda"
  1056. #define NID_id_pda 265
  1057. #define OBJ_id_pda OBJ_id_pkix,9L
  1058. #define SN_id_aca "id-aca"
  1059. #define NID_id_aca 266
  1060. #define OBJ_id_aca OBJ_id_pkix,10L
  1061. #define SN_id_qcs "id-qcs"
  1062. #define NID_id_qcs 267
  1063. #define OBJ_id_qcs OBJ_id_pkix,11L
  1064. #define SN_id_cct "id-cct"
  1065. #define NID_id_cct 268
  1066. #define OBJ_id_cct OBJ_id_pkix,12L
  1067. #define SN_id_ppl "id-ppl"
  1068. #define NID_id_ppl 662
  1069. #define OBJ_id_ppl OBJ_id_pkix,21L
  1070. #define SN_id_ad "id-ad"
  1071. #define NID_id_ad 176
  1072. #define OBJ_id_ad OBJ_id_pkix,48L
  1073. #define SN_id_pkix1_explicit_88 "id-pkix1-explicit-88"
  1074. #define NID_id_pkix1_explicit_88 269
  1075. #define OBJ_id_pkix1_explicit_88 OBJ_id_pkix_mod,1L
  1076. #define SN_id_pkix1_implicit_88 "id-pkix1-implicit-88"
  1077. #define NID_id_pkix1_implicit_88 270
  1078. #define OBJ_id_pkix1_implicit_88 OBJ_id_pkix_mod,2L
  1079. #define SN_id_pkix1_explicit_93 "id-pkix1-explicit-93"
  1080. #define NID_id_pkix1_explicit_93 271
  1081. #define OBJ_id_pkix1_explicit_93 OBJ_id_pkix_mod,3L
  1082. #define SN_id_pkix1_implicit_93 "id-pkix1-implicit-93"
  1083. #define NID_id_pkix1_implicit_93 272
  1084. #define OBJ_id_pkix1_implicit_93 OBJ_id_pkix_mod,4L
  1085. #define SN_id_mod_crmf "id-mod-crmf"
  1086. #define NID_id_mod_crmf 273
  1087. #define OBJ_id_mod_crmf OBJ_id_pkix_mod,5L
  1088. #define SN_id_mod_cmc "id-mod-cmc"
  1089. #define NID_id_mod_cmc 274
  1090. #define OBJ_id_mod_cmc OBJ_id_pkix_mod,6L
  1091. #define SN_id_mod_kea_profile_88 "id-mod-kea-profile-88"
  1092. #define NID_id_mod_kea_profile_88 275
  1093. #define OBJ_id_mod_kea_profile_88 OBJ_id_pkix_mod,7L
  1094. #define SN_id_mod_kea_profile_93 "id-mod-kea-profile-93"
  1095. #define NID_id_mod_kea_profile_93 276
  1096. #define OBJ_id_mod_kea_profile_93 OBJ_id_pkix_mod,8L
  1097. #define SN_id_mod_cmp "id-mod-cmp"
  1098. #define NID_id_mod_cmp 277
  1099. #define OBJ_id_mod_cmp OBJ_id_pkix_mod,9L
  1100. #define SN_id_mod_qualified_cert_88 "id-mod-qualified-cert-88"
  1101. #define NID_id_mod_qualified_cert_88 278
  1102. #define OBJ_id_mod_qualified_cert_88 OBJ_id_pkix_mod,10L
  1103. #define SN_id_mod_qualified_cert_93 "id-mod-qualified-cert-93"
  1104. #define NID_id_mod_qualified_cert_93 279
  1105. #define OBJ_id_mod_qualified_cert_93 OBJ_id_pkix_mod,11L
  1106. #define SN_id_mod_attribute_cert "id-mod-attribute-cert"
  1107. #define NID_id_mod_attribute_cert 280
  1108. #define OBJ_id_mod_attribute_cert OBJ_id_pkix_mod,12L
  1109. #define SN_id_mod_timestamp_protocol "id-mod-timestamp-protocol"
  1110. #define NID_id_mod_timestamp_protocol 281
  1111. #define OBJ_id_mod_timestamp_protocol OBJ_id_pkix_mod,13L
  1112. #define SN_id_mod_ocsp "id-mod-ocsp"
  1113. #define NID_id_mod_ocsp 282
  1114. #define OBJ_id_mod_ocsp OBJ_id_pkix_mod,14L
  1115. #define SN_id_mod_dvcs "id-mod-dvcs"
  1116. #define NID_id_mod_dvcs 283
  1117. #define OBJ_id_mod_dvcs OBJ_id_pkix_mod,15L
  1118. #define SN_id_mod_cmp2000 "id-mod-cmp2000"
  1119. #define NID_id_mod_cmp2000 284
  1120. #define OBJ_id_mod_cmp2000 OBJ_id_pkix_mod,16L
  1121. #define SN_info_access "authorityInfoAccess"
  1122. #define LN_info_access "Authority Information Access"
  1123. #define NID_info_access 177
  1124. #define OBJ_info_access OBJ_id_pe,1L
  1125. #define SN_biometricInfo "biometricInfo"
  1126. #define LN_biometricInfo "Biometric Info"
  1127. #define NID_biometricInfo 285
  1128. #define OBJ_biometricInfo OBJ_id_pe,2L
  1129. #define SN_qcStatements "qcStatements"
  1130. #define NID_qcStatements 286
  1131. #define OBJ_qcStatements OBJ_id_pe,3L
  1132. #define SN_ac_auditEntity "ac-auditEntity"
  1133. #define NID_ac_auditEntity 287
  1134. #define OBJ_ac_auditEntity OBJ_id_pe,4L
  1135. #define SN_ac_targeting "ac-targeting"
  1136. #define NID_ac_targeting 288
  1137. #define OBJ_ac_targeting OBJ_id_pe,5L
  1138. #define SN_aaControls "aaControls"
  1139. #define NID_aaControls 289
  1140. #define OBJ_aaControls OBJ_id_pe,6L
  1141. #define SN_sbgp_ipAddrBlock "sbgp-ipAddrBlock"
  1142. #define NID_sbgp_ipAddrBlock 290
  1143. #define OBJ_sbgp_ipAddrBlock OBJ_id_pe,7L
  1144. #define SN_sbgp_autonomousSysNum "sbgp-autonomousSysNum"
  1145. #define NID_sbgp_autonomousSysNum 291
  1146. #define OBJ_sbgp_autonomousSysNum OBJ_id_pe,8L
  1147. #define SN_sbgp_routerIdentifier "sbgp-routerIdentifier"
  1148. #define NID_sbgp_routerIdentifier 292
  1149. #define OBJ_sbgp_routerIdentifier OBJ_id_pe,9L
  1150. #define SN_ac_proxying "ac-proxying"
  1151. #define NID_ac_proxying 397
  1152. #define OBJ_ac_proxying OBJ_id_pe,10L
  1153. #define SN_sinfo_access "subjectInfoAccess"
  1154. #define LN_sinfo_access "Subject Information Access"
  1155. #define NID_sinfo_access 398
  1156. #define OBJ_sinfo_access OBJ_id_pe,11L
  1157. #define SN_proxyCertInfo "proxyCertInfo"
  1158. #define LN_proxyCertInfo "Proxy Certificate Information"
  1159. #define NID_proxyCertInfo 663
  1160. #define OBJ_proxyCertInfo OBJ_id_pe,14L
  1161. #define SN_tlsfeature "tlsfeature"
  1162. #define LN_tlsfeature "TLS Feature"
  1163. #define NID_tlsfeature 1020
  1164. #define OBJ_tlsfeature OBJ_id_pe,24L
  1165. #define SN_id_qt_cps "id-qt-cps"
  1166. #define LN_id_qt_cps "Policy Qualifier CPS"
  1167. #define NID_id_qt_cps 164
  1168. #define OBJ_id_qt_cps OBJ_id_qt,1L
  1169. #define SN_id_qt_unotice "id-qt-unotice"
  1170. #define LN_id_qt_unotice "Policy Qualifier User Notice"
  1171. #define NID_id_qt_unotice 165
  1172. #define OBJ_id_qt_unotice OBJ_id_qt,2L
  1173. #define SN_textNotice "textNotice"
  1174. #define NID_textNotice 293
  1175. #define OBJ_textNotice OBJ_id_qt,3L
  1176. #define SN_server_auth "serverAuth"
  1177. #define LN_server_auth "TLS Web Server Authentication"
  1178. #define NID_server_auth 129
  1179. #define OBJ_server_auth OBJ_id_kp,1L
  1180. #define SN_client_auth "clientAuth"
  1181. #define LN_client_auth "TLS Web Client Authentication"
  1182. #define NID_client_auth 130
  1183. #define OBJ_client_auth OBJ_id_kp,2L
  1184. #define SN_code_sign "codeSigning"
  1185. #define LN_code_sign "Code Signing"
  1186. #define NID_code_sign 131
  1187. #define OBJ_code_sign OBJ_id_kp,3L
  1188. #define SN_email_protect "emailProtection"
  1189. #define LN_email_protect "E-mail Protection"
  1190. #define NID_email_protect 132
  1191. #define OBJ_email_protect OBJ_id_kp,4L
  1192. #define SN_ipsecEndSystem "ipsecEndSystem"
  1193. #define LN_ipsecEndSystem "IPSec End System"
  1194. #define NID_ipsecEndSystem 294
  1195. #define OBJ_ipsecEndSystem OBJ_id_kp,5L
  1196. #define SN_ipsecTunnel "ipsecTunnel"
  1197. #define LN_ipsecTunnel "IPSec Tunnel"
  1198. #define NID_ipsecTunnel 295
  1199. #define OBJ_ipsecTunnel OBJ_id_kp,6L
  1200. #define SN_ipsecUser "ipsecUser"
  1201. #define LN_ipsecUser "IPSec User"
  1202. #define NID_ipsecUser 296
  1203. #define OBJ_ipsecUser OBJ_id_kp,7L
  1204. #define SN_time_stamp "timeStamping"
  1205. #define LN_time_stamp "Time Stamping"
  1206. #define NID_time_stamp 133
  1207. #define OBJ_time_stamp OBJ_id_kp,8L
  1208. #define SN_OCSP_sign "OCSPSigning"
  1209. #define LN_OCSP_sign "OCSP Signing"
  1210. #define NID_OCSP_sign 180
  1211. #define OBJ_OCSP_sign OBJ_id_kp,9L
  1212. #define SN_dvcs "DVCS"
  1213. #define LN_dvcs "dvcs"
  1214. #define NID_dvcs 297
  1215. #define OBJ_dvcs OBJ_id_kp,10L
  1216. #define SN_ipsec_IKE "ipsecIKE"
  1217. #define LN_ipsec_IKE "ipsec Internet Key Exchange"
  1218. #define NID_ipsec_IKE 1022
  1219. #define OBJ_ipsec_IKE OBJ_id_kp,17L
  1220. #define SN_capwapAC "capwapAC"
  1221. #define LN_capwapAC "Ctrl/provision WAP Access"
  1222. #define NID_capwapAC 1023
  1223. #define OBJ_capwapAC OBJ_id_kp,18L
  1224. #define SN_capwapWTP "capwapWTP"
  1225. #define LN_capwapWTP "Ctrl/Provision WAP Termination"
  1226. #define NID_capwapWTP 1024
  1227. #define OBJ_capwapWTP OBJ_id_kp,19L
  1228. #define SN_sshClient "secureShellClient"
  1229. #define LN_sshClient "SSH Client"
  1230. #define NID_sshClient 1025
  1231. #define OBJ_sshClient OBJ_id_kp,21L
  1232. #define SN_sshServer "secureShellServer"
  1233. #define LN_sshServer "SSH Server"
  1234. #define NID_sshServer 1026
  1235. #define OBJ_sshServer OBJ_id_kp,22L
  1236. #define SN_sendRouter "sendRouter"
  1237. #define LN_sendRouter "Send Router"
  1238. #define NID_sendRouter 1027
  1239. #define OBJ_sendRouter OBJ_id_kp,23L
  1240. #define SN_sendProxiedRouter "sendProxiedRouter"
  1241. #define LN_sendProxiedRouter "Send Proxied Router"
  1242. #define NID_sendProxiedRouter 1028
  1243. #define OBJ_sendProxiedRouter OBJ_id_kp,24L
  1244. #define SN_sendOwner "sendOwner"
  1245. #define LN_sendOwner "Send Owner"
  1246. #define NID_sendOwner 1029
  1247. #define OBJ_sendOwner OBJ_id_kp,25L
  1248. #define SN_sendProxiedOwner "sendProxiedOwner"
  1249. #define LN_sendProxiedOwner "Send Proxied Owner"
  1250. #define NID_sendProxiedOwner 1030
  1251. #define OBJ_sendProxiedOwner OBJ_id_kp,26L
  1252. #define SN_cmcCA "cmcCA"
  1253. #define LN_cmcCA "CMC Certificate Authority"
  1254. #define NID_cmcCA 1131
  1255. #define OBJ_cmcCA OBJ_id_kp,27L
  1256. #define SN_cmcRA "cmcRA"
  1257. #define LN_cmcRA "CMC Registration Authority"
  1258. #define NID_cmcRA 1132
  1259. #define OBJ_cmcRA OBJ_id_kp,28L
  1260. #define SN_id_it_caProtEncCert "id-it-caProtEncCert"
  1261. #define NID_id_it_caProtEncCert 298
  1262. #define OBJ_id_it_caProtEncCert OBJ_id_it,1L
  1263. #define SN_id_it_signKeyPairTypes "id-it-signKeyPairTypes"
  1264. #define NID_id_it_signKeyPairTypes 299
  1265. #define OBJ_id_it_signKeyPairTypes OBJ_id_it,2L
  1266. #define SN_id_it_encKeyPairTypes "id-it-encKeyPairTypes"
  1267. #define NID_id_it_encKeyPairTypes 300
  1268. #define OBJ_id_it_encKeyPairTypes OBJ_id_it,3L
  1269. #define SN_id_it_preferredSymmAlg "id-it-preferredSymmAlg"
  1270. #define NID_id_it_preferredSymmAlg 301
  1271. #define OBJ_id_it_preferredSymmAlg OBJ_id_it,4L
  1272. #define SN_id_it_caKeyUpdateInfo "id-it-caKeyUpdateInfo"
  1273. #define NID_id_it_caKeyUpdateInfo 302
  1274. #define OBJ_id_it_caKeyUpdateInfo OBJ_id_it,5L
  1275. #define SN_id_it_currentCRL "id-it-currentCRL"
  1276. #define NID_id_it_currentCRL 303
  1277. #define OBJ_id_it_currentCRL OBJ_id_it,6L
  1278. #define SN_id_it_unsupportedOIDs "id-it-unsupportedOIDs"
  1279. #define NID_id_it_unsupportedOIDs 304
  1280. #define OBJ_id_it_unsupportedOIDs OBJ_id_it,7L
  1281. #define SN_id_it_subscriptionRequest "id-it-subscriptionRequest"
  1282. #define NID_id_it_subscriptionRequest 305
  1283. #define OBJ_id_it_subscriptionRequest OBJ_id_it,8L
  1284. #define SN_id_it_subscriptionResponse "id-it-subscriptionResponse"
  1285. #define NID_id_it_subscriptionResponse 306
  1286. #define OBJ_id_it_subscriptionResponse OBJ_id_it,9L
  1287. #define SN_id_it_keyPairParamReq "id-it-keyPairParamReq"
  1288. #define NID_id_it_keyPairParamReq 307
  1289. #define OBJ_id_it_keyPairParamReq OBJ_id_it,10L
  1290. #define SN_id_it_keyPairParamRep "id-it-keyPairParamRep"
  1291. #define NID_id_it_keyPairParamRep 308
  1292. #define OBJ_id_it_keyPairParamRep OBJ_id_it,11L
  1293. #define SN_id_it_revPassphrase "id-it-revPassphrase"
  1294. #define NID_id_it_revPassphrase 309
  1295. #define OBJ_id_it_revPassphrase OBJ_id_it,12L
  1296. #define SN_id_it_implicitConfirm "id-it-implicitConfirm"
  1297. #define NID_id_it_implicitConfirm 310
  1298. #define OBJ_id_it_implicitConfirm OBJ_id_it,13L
  1299. #define SN_id_it_confirmWaitTime "id-it-confirmWaitTime"
  1300. #define NID_id_it_confirmWaitTime 311
  1301. #define OBJ_id_it_confirmWaitTime OBJ_id_it,14L
  1302. #define SN_id_it_origPKIMessage "id-it-origPKIMessage"
  1303. #define NID_id_it_origPKIMessage 312
  1304. #define OBJ_id_it_origPKIMessage OBJ_id_it,15L
  1305. #define SN_id_it_suppLangTags "id-it-suppLangTags"
  1306. #define NID_id_it_suppLangTags 784
  1307. #define OBJ_id_it_suppLangTags OBJ_id_it,16L
  1308. #define SN_id_regCtrl "id-regCtrl"
  1309. #define NID_id_regCtrl 313
  1310. #define OBJ_id_regCtrl OBJ_id_pkip,1L
  1311. #define SN_id_regInfo "id-regInfo"
  1312. #define NID_id_regInfo 314
  1313. #define OBJ_id_regInfo OBJ_id_pkip,2L
  1314. #define SN_id_regCtrl_regToken "id-regCtrl-regToken"
  1315. #define NID_id_regCtrl_regToken 315
  1316. #define OBJ_id_regCtrl_regToken OBJ_id_regCtrl,1L
  1317. #define SN_id_regCtrl_authenticator "id-regCtrl-authenticator"
  1318. #define NID_id_regCtrl_authenticator 316
  1319. #define OBJ_id_regCtrl_authenticator OBJ_id_regCtrl,2L
  1320. #define SN_id_regCtrl_pkiPublicationInfo "id-regCtrl-pkiPublicationInfo"
  1321. #define NID_id_regCtrl_pkiPublicationInfo 317
  1322. #define OBJ_id_regCtrl_pkiPublicationInfo OBJ_id_regCtrl,3L
  1323. #define SN_id_regCtrl_pkiArchiveOptions "id-regCtrl-pkiArchiveOptions"
  1324. #define NID_id_regCtrl_pkiArchiveOptions 318
  1325. #define OBJ_id_regCtrl_pkiArchiveOptions OBJ_id_regCtrl,4L
  1326. #define SN_id_regCtrl_oldCertID "id-regCtrl-oldCertID"
  1327. #define NID_id_regCtrl_oldCertID 319
  1328. #define OBJ_id_regCtrl_oldCertID OBJ_id_regCtrl,5L
  1329. #define SN_id_regCtrl_protocolEncrKey "id-regCtrl-protocolEncrKey"
  1330. #define NID_id_regCtrl_protocolEncrKey 320
  1331. #define OBJ_id_regCtrl_protocolEncrKey OBJ_id_regCtrl,6L
  1332. #define SN_id_regInfo_utf8Pairs "id-regInfo-utf8Pairs"
  1333. #define NID_id_regInfo_utf8Pairs 321
  1334. #define OBJ_id_regInfo_utf8Pairs OBJ_id_regInfo,1L
  1335. #define SN_id_regInfo_certReq "id-regInfo-certReq"
  1336. #define NID_id_regInfo_certReq 322
  1337. #define OBJ_id_regInfo_certReq OBJ_id_regInfo,2L
  1338. #define SN_id_alg_des40 "id-alg-des40"
  1339. #define NID_id_alg_des40 323
  1340. #define OBJ_id_alg_des40 OBJ_id_alg,1L
  1341. #define SN_id_alg_noSignature "id-alg-noSignature"
  1342. #define NID_id_alg_noSignature 324
  1343. #define OBJ_id_alg_noSignature OBJ_id_alg,2L
  1344. #define SN_id_alg_dh_sig_hmac_sha1 "id-alg-dh-sig-hmac-sha1"
  1345. #define NID_id_alg_dh_sig_hmac_sha1 325
  1346. #define OBJ_id_alg_dh_sig_hmac_sha1 OBJ_id_alg,3L
  1347. #define SN_id_alg_dh_pop "id-alg-dh-pop"
  1348. #define NID_id_alg_dh_pop 326
  1349. #define OBJ_id_alg_dh_pop OBJ_id_alg,4L
  1350. #define SN_id_cmc_statusInfo "id-cmc-statusInfo"
  1351. #define NID_id_cmc_statusInfo 327
  1352. #define OBJ_id_cmc_statusInfo OBJ_id_cmc,1L
  1353. #define SN_id_cmc_identification "id-cmc-identification"
  1354. #define NID_id_cmc_identification 328
  1355. #define OBJ_id_cmc_identification OBJ_id_cmc,2L
  1356. #define SN_id_cmc_identityProof "id-cmc-identityProof"
  1357. #define NID_id_cmc_identityProof 329
  1358. #define OBJ_id_cmc_identityProof OBJ_id_cmc,3L
  1359. #define SN_id_cmc_dataReturn "id-cmc-dataReturn"
  1360. #define NID_id_cmc_dataReturn 330
  1361. #define OBJ_id_cmc_dataReturn OBJ_id_cmc,4L
  1362. #define SN_id_cmc_transactionId "id-cmc-transactionId"
  1363. #define NID_id_cmc_transactionId 331
  1364. #define OBJ_id_cmc_transactionId OBJ_id_cmc,5L
  1365. #define SN_id_cmc_senderNonce "id-cmc-senderNonce"
  1366. #define NID_id_cmc_senderNonce 332
  1367. #define OBJ_id_cmc_senderNonce OBJ_id_cmc,6L
  1368. #define SN_id_cmc_recipientNonce "id-cmc-recipientNonce"
  1369. #define NID_id_cmc_recipientNonce 333
  1370. #define OBJ_id_cmc_recipientNonce OBJ_id_cmc,7L
  1371. #define SN_id_cmc_addExtensions "id-cmc-addExtensions"
  1372. #define NID_id_cmc_addExtensions 334
  1373. #define OBJ_id_cmc_addExtensions OBJ_id_cmc,8L
  1374. #define SN_id_cmc_encryptedPOP "id-cmc-encryptedPOP"
  1375. #define NID_id_cmc_encryptedPOP 335
  1376. #define OBJ_id_cmc_encryptedPOP OBJ_id_cmc,9L
  1377. #define SN_id_cmc_decryptedPOP "id-cmc-decryptedPOP"
  1378. #define NID_id_cmc_decryptedPOP 336
  1379. #define OBJ_id_cmc_decryptedPOP OBJ_id_cmc,10L
  1380. #define SN_id_cmc_lraPOPWitness "id-cmc-lraPOPWitness"
  1381. #define NID_id_cmc_lraPOPWitness 337
  1382. #define OBJ_id_cmc_lraPOPWitness OBJ_id_cmc,11L
  1383. #define SN_id_cmc_getCert "id-cmc-getCert"
  1384. #define NID_id_cmc_getCert 338
  1385. #define OBJ_id_cmc_getCert OBJ_id_cmc,15L
  1386. #define SN_id_cmc_getCRL "id-cmc-getCRL"
  1387. #define NID_id_cmc_getCRL 339
  1388. #define OBJ_id_cmc_getCRL OBJ_id_cmc,16L
  1389. #define SN_id_cmc_revokeRequest "id-cmc-revokeRequest"
  1390. #define NID_id_cmc_revokeRequest 340
  1391. #define OBJ_id_cmc_revokeRequest OBJ_id_cmc,17L
  1392. #define SN_id_cmc_regInfo "id-cmc-regInfo"
  1393. #define NID_id_cmc_regInfo 341
  1394. #define OBJ_id_cmc_regInfo OBJ_id_cmc,18L
  1395. #define SN_id_cmc_responseInfo "id-cmc-responseInfo"
  1396. #define NID_id_cmc_responseInfo 342
  1397. #define OBJ_id_cmc_responseInfo OBJ_id_cmc,19L
  1398. #define SN_id_cmc_queryPending "id-cmc-queryPending"
  1399. #define NID_id_cmc_queryPending 343
  1400. #define OBJ_id_cmc_queryPending OBJ_id_cmc,21L
  1401. #define SN_id_cmc_popLinkRandom "id-cmc-popLinkRandom"
  1402. #define NID_id_cmc_popLinkRandom 344
  1403. #define OBJ_id_cmc_popLinkRandom OBJ_id_cmc,22L
  1404. #define SN_id_cmc_popLinkWitness "id-cmc-popLinkWitness"
  1405. #define NID_id_cmc_popLinkWitness 345
  1406. #define OBJ_id_cmc_popLinkWitness OBJ_id_cmc,23L
  1407. #define SN_id_cmc_confirmCertAcceptance "id-cmc-confirmCertAcceptance"
  1408. #define NID_id_cmc_confirmCertAcceptance 346
  1409. #define OBJ_id_cmc_confirmCertAcceptance OBJ_id_cmc,24L
  1410. #define SN_id_on_personalData "id-on-personalData"
  1411. #define NID_id_on_personalData 347
  1412. #define OBJ_id_on_personalData OBJ_id_on,1L
  1413. #define SN_id_on_permanentIdentifier "id-on-permanentIdentifier"
  1414. #define LN_id_on_permanentIdentifier "Permanent Identifier"
  1415. #define NID_id_on_permanentIdentifier 858
  1416. #define OBJ_id_on_permanentIdentifier OBJ_id_on,3L
  1417. #define SN_id_pda_dateOfBirth "id-pda-dateOfBirth"
  1418. #define NID_id_pda_dateOfBirth 348
  1419. #define OBJ_id_pda_dateOfBirth OBJ_id_pda,1L
  1420. #define SN_id_pda_placeOfBirth "id-pda-placeOfBirth"
  1421. #define NID_id_pda_placeOfBirth 349
  1422. #define OBJ_id_pda_placeOfBirth OBJ_id_pda,2L
  1423. #define SN_id_pda_gender "id-pda-gender"
  1424. #define NID_id_pda_gender 351
  1425. #define OBJ_id_pda_gender OBJ_id_pda,3L
  1426. #define SN_id_pda_countryOfCitizenship "id-pda-countryOfCitizenship"
  1427. #define NID_id_pda_countryOfCitizenship 352
  1428. #define OBJ_id_pda_countryOfCitizenship OBJ_id_pda,4L
  1429. #define SN_id_pda_countryOfResidence "id-pda-countryOfResidence"
  1430. #define NID_id_pda_countryOfResidence 353
  1431. #define OBJ_id_pda_countryOfResidence OBJ_id_pda,5L
  1432. #define SN_id_aca_authenticationInfo "id-aca-authenticationInfo"
  1433. #define NID_id_aca_authenticationInfo 354
  1434. #define OBJ_id_aca_authenticationInfo OBJ_id_aca,1L
  1435. #define SN_id_aca_accessIdentity "id-aca-accessIdentity"
  1436. #define NID_id_aca_accessIdentity 355
  1437. #define OBJ_id_aca_accessIdentity OBJ_id_aca,2L
  1438. #define SN_id_aca_chargingIdentity "id-aca-chargingIdentity"
  1439. #define NID_id_aca_chargingIdentity 356
  1440. #define OBJ_id_aca_chargingIdentity OBJ_id_aca,3L
  1441. #define SN_id_aca_group "id-aca-group"
  1442. #define NID_id_aca_group 357
  1443. #define OBJ_id_aca_group OBJ_id_aca,4L
  1444. #define SN_id_aca_role "id-aca-role"
  1445. #define NID_id_aca_role 358
  1446. #define OBJ_id_aca_role OBJ_id_aca,5L
  1447. #define SN_id_aca_encAttrs "id-aca-encAttrs"
  1448. #define NID_id_aca_encAttrs 399
  1449. #define OBJ_id_aca_encAttrs OBJ_id_aca,6L
  1450. #define SN_id_qcs_pkixQCSyntax_v1 "id-qcs-pkixQCSyntax-v1"
  1451. #define NID_id_qcs_pkixQCSyntax_v1 359
  1452. #define OBJ_id_qcs_pkixQCSyntax_v1 OBJ_id_qcs,1L
  1453. #define SN_id_cct_crs "id-cct-crs"
  1454. #define NID_id_cct_crs 360
  1455. #define OBJ_id_cct_crs OBJ_id_cct,1L
  1456. #define SN_id_cct_PKIData "id-cct-PKIData"
  1457. #define NID_id_cct_PKIData 361
  1458. #define OBJ_id_cct_PKIData OBJ_id_cct,2L
  1459. #define SN_id_cct_PKIResponse "id-cct-PKIResponse"
  1460. #define NID_id_cct_PKIResponse 362
  1461. #define OBJ_id_cct_PKIResponse OBJ_id_cct,3L
  1462. #define SN_id_ppl_anyLanguage "id-ppl-anyLanguage"
  1463. #define LN_id_ppl_anyLanguage "Any language"
  1464. #define NID_id_ppl_anyLanguage 664
  1465. #define OBJ_id_ppl_anyLanguage OBJ_id_ppl,0L
  1466. #define SN_id_ppl_inheritAll "id-ppl-inheritAll"
  1467. #define LN_id_ppl_inheritAll "Inherit all"
  1468. #define NID_id_ppl_inheritAll 665
  1469. #define OBJ_id_ppl_inheritAll OBJ_id_ppl,1L
  1470. #define SN_Independent "id-ppl-independent"
  1471. #define LN_Independent "Independent"
  1472. #define NID_Independent 667
  1473. #define OBJ_Independent OBJ_id_ppl,2L
  1474. #define SN_ad_OCSP "OCSP"
  1475. #define LN_ad_OCSP "OCSP"
  1476. #define NID_ad_OCSP 178
  1477. #define OBJ_ad_OCSP OBJ_id_ad,1L
  1478. #define SN_ad_ca_issuers "caIssuers"
  1479. #define LN_ad_ca_issuers "CA Issuers"
  1480. #define NID_ad_ca_issuers 179
  1481. #define OBJ_ad_ca_issuers OBJ_id_ad,2L
  1482. #define SN_ad_timeStamping "ad_timestamping"
  1483. #define LN_ad_timeStamping "AD Time Stamping"
  1484. #define NID_ad_timeStamping 363
  1485. #define OBJ_ad_timeStamping OBJ_id_ad,3L
  1486. #define SN_ad_dvcs "AD_DVCS"
  1487. #define LN_ad_dvcs "ad dvcs"
  1488. #define NID_ad_dvcs 364
  1489. #define OBJ_ad_dvcs OBJ_id_ad,4L
  1490. #define SN_caRepository "caRepository"
  1491. #define LN_caRepository "CA Repository"
  1492. #define NID_caRepository 785
  1493. #define OBJ_caRepository OBJ_id_ad,5L
  1494. #define OBJ_id_pkix_OCSP OBJ_ad_OCSP
  1495. #define SN_id_pkix_OCSP_basic "basicOCSPResponse"
  1496. #define LN_id_pkix_OCSP_basic "Basic OCSP Response"
  1497. #define NID_id_pkix_OCSP_basic 365
  1498. #define OBJ_id_pkix_OCSP_basic OBJ_id_pkix_OCSP,1L
  1499. #define SN_id_pkix_OCSP_Nonce "Nonce"
  1500. #define LN_id_pkix_OCSP_Nonce "OCSP Nonce"
  1501. #define NID_id_pkix_OCSP_Nonce 366
  1502. #define OBJ_id_pkix_OCSP_Nonce OBJ_id_pkix_OCSP,2L
  1503. #define SN_id_pkix_OCSP_CrlID "CrlID"
  1504. #define LN_id_pkix_OCSP_CrlID "OCSP CRL ID"
  1505. #define NID_id_pkix_OCSP_CrlID 367
  1506. #define OBJ_id_pkix_OCSP_CrlID OBJ_id_pkix_OCSP,3L
  1507. #define SN_id_pkix_OCSP_acceptableResponses "acceptableResponses"
  1508. #define LN_id_pkix_OCSP_acceptableResponses "Acceptable OCSP Responses"
  1509. #define NID_id_pkix_OCSP_acceptableResponses 368
  1510. #define OBJ_id_pkix_OCSP_acceptableResponses OBJ_id_pkix_OCSP,4L
  1511. #define SN_id_pkix_OCSP_noCheck "noCheck"
  1512. #define LN_id_pkix_OCSP_noCheck "OCSP No Check"
  1513. #define NID_id_pkix_OCSP_noCheck 369
  1514. #define OBJ_id_pkix_OCSP_noCheck OBJ_id_pkix_OCSP,5L
  1515. #define SN_id_pkix_OCSP_archiveCutoff "archiveCutoff"
  1516. #define LN_id_pkix_OCSP_archiveCutoff "OCSP Archive Cutoff"
  1517. #define NID_id_pkix_OCSP_archiveCutoff 370
  1518. #define OBJ_id_pkix_OCSP_archiveCutoff OBJ_id_pkix_OCSP,6L
  1519. #define SN_id_pkix_OCSP_serviceLocator "serviceLocator"
  1520. #define LN_id_pkix_OCSP_serviceLocator "OCSP Service Locator"
  1521. #define NID_id_pkix_OCSP_serviceLocator 371
  1522. #define OBJ_id_pkix_OCSP_serviceLocator OBJ_id_pkix_OCSP,7L
  1523. #define SN_id_pkix_OCSP_extendedStatus "extendedStatus"
  1524. #define LN_id_pkix_OCSP_extendedStatus "Extended OCSP Status"
  1525. #define NID_id_pkix_OCSP_extendedStatus 372
  1526. #define OBJ_id_pkix_OCSP_extendedStatus OBJ_id_pkix_OCSP,8L
  1527. #define SN_id_pkix_OCSP_valid "valid"
  1528. #define NID_id_pkix_OCSP_valid 373
  1529. #define OBJ_id_pkix_OCSP_valid OBJ_id_pkix_OCSP,9L
  1530. #define SN_id_pkix_OCSP_path "path"
  1531. #define NID_id_pkix_OCSP_path 374
  1532. #define OBJ_id_pkix_OCSP_path OBJ_id_pkix_OCSP,10L
  1533. #define SN_id_pkix_OCSP_trustRoot "trustRoot"
  1534. #define LN_id_pkix_OCSP_trustRoot "Trust Root"
  1535. #define NID_id_pkix_OCSP_trustRoot 375
  1536. #define OBJ_id_pkix_OCSP_trustRoot OBJ_id_pkix_OCSP,11L
  1537. #define SN_algorithm "algorithm"
  1538. #define LN_algorithm "algorithm"
  1539. #define NID_algorithm 376
  1540. #define OBJ_algorithm 1L,3L,14L,3L,2L
  1541. #define SN_md5WithRSA "RSA-NP-MD5"
  1542. #define LN_md5WithRSA "md5WithRSA"
  1543. #define NID_md5WithRSA 104
  1544. #define OBJ_md5WithRSA OBJ_algorithm,3L
  1545. #define SN_des_ecb "DES-ECB"
  1546. #define LN_des_ecb "des-ecb"
  1547. #define NID_des_ecb 29
  1548. #define OBJ_des_ecb OBJ_algorithm,6L
  1549. #define SN_des_cbc "DES-CBC"
  1550. #define LN_des_cbc "des-cbc"
  1551. #define NID_des_cbc 31
  1552. #define OBJ_des_cbc OBJ_algorithm,7L
  1553. #define SN_des_ofb64 "DES-OFB"
  1554. #define LN_des_ofb64 "des-ofb"
  1555. #define NID_des_ofb64 45
  1556. #define OBJ_des_ofb64 OBJ_algorithm,8L
  1557. #define SN_des_cfb64 "DES-CFB"
  1558. #define LN_des_cfb64 "des-cfb"
  1559. #define NID_des_cfb64 30
  1560. #define OBJ_des_cfb64 OBJ_algorithm,9L
  1561. #define SN_rsaSignature "rsaSignature"
  1562. #define NID_rsaSignature 377
  1563. #define OBJ_rsaSignature OBJ_algorithm,11L
  1564. #define SN_dsa_2 "DSA-old"
  1565. #define LN_dsa_2 "dsaEncryption-old"
  1566. #define NID_dsa_2 67
  1567. #define OBJ_dsa_2 OBJ_algorithm,12L
  1568. #define SN_dsaWithSHA "DSA-SHA"
  1569. #define LN_dsaWithSHA "dsaWithSHA"
  1570. #define NID_dsaWithSHA 66
  1571. #define OBJ_dsaWithSHA OBJ_algorithm,13L
  1572. #define SN_shaWithRSAEncryption "RSA-SHA"
  1573. #define LN_shaWithRSAEncryption "shaWithRSAEncryption"
  1574. #define NID_shaWithRSAEncryption 42
  1575. #define OBJ_shaWithRSAEncryption OBJ_algorithm,15L
  1576. #define SN_des_ede_ecb "DES-EDE"
  1577. #define LN_des_ede_ecb "des-ede"
  1578. #define NID_des_ede_ecb 32
  1579. #define OBJ_des_ede_ecb OBJ_algorithm,17L
  1580. #define SN_des_ede3_ecb "DES-EDE3"
  1581. #define LN_des_ede3_ecb "des-ede3"
  1582. #define NID_des_ede3_ecb 33
  1583. #define SN_des_ede_cbc "DES-EDE-CBC"
  1584. #define LN_des_ede_cbc "des-ede-cbc"
  1585. #define NID_des_ede_cbc 43
  1586. #define SN_des_ede_cfb64 "DES-EDE-CFB"
  1587. #define LN_des_ede_cfb64 "des-ede-cfb"
  1588. #define NID_des_ede_cfb64 60
  1589. #define SN_des_ede3_cfb64 "DES-EDE3-CFB"
  1590. #define LN_des_ede3_cfb64 "des-ede3-cfb"
  1591. #define NID_des_ede3_cfb64 61
  1592. #define SN_des_ede_ofb64 "DES-EDE-OFB"
  1593. #define LN_des_ede_ofb64 "des-ede-ofb"
  1594. #define NID_des_ede_ofb64 62
  1595. #define SN_des_ede3_ofb64 "DES-EDE3-OFB"
  1596. #define LN_des_ede3_ofb64 "des-ede3-ofb"
  1597. #define NID_des_ede3_ofb64 63
  1598. #define SN_desx_cbc "DESX-CBC"
  1599. #define LN_desx_cbc "desx-cbc"
  1600. #define NID_desx_cbc 80
  1601. #define SN_sha "SHA"
  1602. #define LN_sha "sha"
  1603. #define NID_sha 41
  1604. #define OBJ_sha OBJ_algorithm,18L
  1605. #define SN_sha1 "SHA1"
  1606. #define LN_sha1 "sha1"
  1607. #define NID_sha1 64
  1608. #define OBJ_sha1 OBJ_algorithm,26L
  1609. #define SN_dsaWithSHA1_2 "DSA-SHA1-old"
  1610. #define LN_dsaWithSHA1_2 "dsaWithSHA1-old"
  1611. #define NID_dsaWithSHA1_2 70
  1612. #define OBJ_dsaWithSHA1_2 OBJ_algorithm,27L
  1613. #define SN_sha1WithRSA "RSA-SHA1-2"
  1614. #define LN_sha1WithRSA "sha1WithRSA"
  1615. #define NID_sha1WithRSA 115
  1616. #define OBJ_sha1WithRSA OBJ_algorithm,29L
  1617. #define SN_ripemd160 "RIPEMD160"
  1618. #define LN_ripemd160 "ripemd160"
  1619. #define NID_ripemd160 117
  1620. #define OBJ_ripemd160 1L,3L,36L,3L,2L,1L
  1621. #define SN_ripemd160WithRSA "RSA-RIPEMD160"
  1622. #define LN_ripemd160WithRSA "ripemd160WithRSA"
  1623. #define NID_ripemd160WithRSA 119
  1624. #define OBJ_ripemd160WithRSA 1L,3L,36L,3L,3L,1L,2L
  1625. #define SN_blake2b512 "BLAKE2b512"
  1626. #define LN_blake2b512 "blake2b512"
  1627. #define NID_blake2b512 1056
  1628. #define OBJ_blake2b512 1L,3L,6L,1L,4L,1L,1722L,12L,2L,1L,16L
  1629. #define SN_blake2s256 "BLAKE2s256"
  1630. #define LN_blake2s256 "blake2s256"
  1631. #define NID_blake2s256 1057
  1632. #define OBJ_blake2s256 1L,3L,6L,1L,4L,1L,1722L,12L,2L,2L,8L
  1633. #define SN_sxnet "SXNetID"
  1634. #define LN_sxnet "Strong Extranet ID"
  1635. #define NID_sxnet 143
  1636. #define OBJ_sxnet 1L,3L,101L,1L,4L,1L
  1637. #define SN_X500 "X500"
  1638. #define LN_X500 "directory services (X.500)"
  1639. #define NID_X500 11
  1640. #define OBJ_X500 2L,5L
  1641. #define SN_X509 "X509"
  1642. #define NID_X509 12
  1643. #define OBJ_X509 OBJ_X500,4L
  1644. #define SN_commonName "CN"
  1645. #define LN_commonName "commonName"
  1646. #define NID_commonName 13
  1647. #define OBJ_commonName OBJ_X509,3L
  1648. #define SN_surname "SN"
  1649. #define LN_surname "surname"
  1650. #define NID_surname 100
  1651. #define OBJ_surname OBJ_X509,4L
  1652. #define LN_serialNumber "serialNumber"
  1653. #define NID_serialNumber 105
  1654. #define OBJ_serialNumber OBJ_X509,5L
  1655. #define SN_countryName "C"
  1656. #define LN_countryName "countryName"
  1657. #define NID_countryName 14
  1658. #define OBJ_countryName OBJ_X509,6L
  1659. #define SN_localityName "L"
  1660. #define LN_localityName "localityName"
  1661. #define NID_localityName 15
  1662. #define OBJ_localityName OBJ_X509,7L
  1663. #define SN_stateOrProvinceName "ST"
  1664. #define LN_stateOrProvinceName "stateOrProvinceName"
  1665. #define NID_stateOrProvinceName 16
  1666. #define OBJ_stateOrProvinceName OBJ_X509,8L
  1667. #define SN_streetAddress "street"
  1668. #define LN_streetAddress "streetAddress"
  1669. #define NID_streetAddress 660
  1670. #define OBJ_streetAddress OBJ_X509,9L
  1671. #define SN_organizationName "O"
  1672. #define LN_organizationName "organizationName"
  1673. #define NID_organizationName 17
  1674. #define OBJ_organizationName OBJ_X509,10L
  1675. #define SN_organizationalUnitName "OU"
  1676. #define LN_organizationalUnitName "organizationalUnitName"
  1677. #define NID_organizationalUnitName 18
  1678. #define OBJ_organizationalUnitName OBJ_X509,11L
  1679. #define SN_title "title"
  1680. #define LN_title "title"
  1681. #define NID_title 106
  1682. #define OBJ_title OBJ_X509,12L
  1683. #define LN_description "description"
  1684. #define NID_description 107
  1685. #define OBJ_description OBJ_X509,13L
  1686. #define LN_searchGuide "searchGuide"
  1687. #define NID_searchGuide 859
  1688. #define OBJ_searchGuide OBJ_X509,14L
  1689. #define LN_businessCategory "businessCategory"
  1690. #define NID_businessCategory 860
  1691. #define OBJ_businessCategory OBJ_X509,15L
  1692. #define LN_postalAddress "postalAddress"
  1693. #define NID_postalAddress 861
  1694. #define OBJ_postalAddress OBJ_X509,16L
  1695. #define LN_postalCode "postalCode"
  1696. #define NID_postalCode 661
  1697. #define OBJ_postalCode OBJ_X509,17L
  1698. #define LN_postOfficeBox "postOfficeBox"
  1699. #define NID_postOfficeBox 862
  1700. #define OBJ_postOfficeBox OBJ_X509,18L
  1701. #define LN_physicalDeliveryOfficeName "physicalDeliveryOfficeName"
  1702. #define NID_physicalDeliveryOfficeName 863
  1703. #define OBJ_physicalDeliveryOfficeName OBJ_X509,19L
  1704. #define LN_telephoneNumber "telephoneNumber"
  1705. #define NID_telephoneNumber 864
  1706. #define OBJ_telephoneNumber OBJ_X509,20L
  1707. #define LN_telexNumber "telexNumber"
  1708. #define NID_telexNumber 865
  1709. #define OBJ_telexNumber OBJ_X509,21L
  1710. #define LN_teletexTerminalIdentifier "teletexTerminalIdentifier"
  1711. #define NID_teletexTerminalIdentifier 866
  1712. #define OBJ_teletexTerminalIdentifier OBJ_X509,22L
  1713. #define LN_facsimileTelephoneNumber "facsimileTelephoneNumber"
  1714. #define NID_facsimileTelephoneNumber 867
  1715. #define OBJ_facsimileTelephoneNumber OBJ_X509,23L
  1716. #define LN_x121Address "x121Address"
  1717. #define NID_x121Address 868
  1718. #define OBJ_x121Address OBJ_X509,24L
  1719. #define LN_internationaliSDNNumber "internationaliSDNNumber"
  1720. #define NID_internationaliSDNNumber 869
  1721. #define OBJ_internationaliSDNNumber OBJ_X509,25L
  1722. #define LN_registeredAddress "registeredAddress"
  1723. #define NID_registeredAddress 870
  1724. #define OBJ_registeredAddress OBJ_X509,26L
  1725. #define LN_destinationIndicator "destinationIndicator"
  1726. #define NID_destinationIndicator 871
  1727. #define OBJ_destinationIndicator OBJ_X509,27L
  1728. #define LN_preferredDeliveryMethod "preferredDeliveryMethod"
  1729. #define NID_preferredDeliveryMethod 872
  1730. #define OBJ_preferredDeliveryMethod OBJ_X509,28L
  1731. #define LN_presentationAddress "presentationAddress"
  1732. #define NID_presentationAddress 873
  1733. #define OBJ_presentationAddress OBJ_X509,29L
  1734. #define LN_supportedApplicationContext "supportedApplicationContext"
  1735. #define NID_supportedApplicationContext 874
  1736. #define OBJ_supportedApplicationContext OBJ_X509,30L
  1737. #define SN_member "member"
  1738. #define NID_member 875
  1739. #define OBJ_member OBJ_X509,31L
  1740. #define SN_owner "owner"
  1741. #define NID_owner 876
  1742. #define OBJ_owner OBJ_X509,32L
  1743. #define LN_roleOccupant "roleOccupant"
  1744. #define NID_roleOccupant 877
  1745. #define OBJ_roleOccupant OBJ_X509,33L
  1746. #define SN_seeAlso "seeAlso"
  1747. #define NID_seeAlso 878
  1748. #define OBJ_seeAlso OBJ_X509,34L
  1749. #define LN_userPassword "userPassword"
  1750. #define NID_userPassword 879
  1751. #define OBJ_userPassword OBJ_X509,35L
  1752. #define LN_userCertificate "userCertificate"
  1753. #define NID_userCertificate 880
  1754. #define OBJ_userCertificate OBJ_X509,36L
  1755. #define LN_cACertificate "cACertificate"
  1756. #define NID_cACertificate 881
  1757. #define OBJ_cACertificate OBJ_X509,37L
  1758. #define LN_authorityRevocationList "authorityRevocationList"
  1759. #define NID_authorityRevocationList 882
  1760. #define OBJ_authorityRevocationList OBJ_X509,38L
  1761. #define LN_certificateRevocationList "certificateRevocationList"
  1762. #define NID_certificateRevocationList 883
  1763. #define OBJ_certificateRevocationList OBJ_X509,39L
  1764. #define LN_crossCertificatePair "crossCertificatePair"
  1765. #define NID_crossCertificatePair 884
  1766. #define OBJ_crossCertificatePair OBJ_X509,40L
  1767. #define SN_name "name"
  1768. #define LN_name "name"
  1769. #define NID_name 173
  1770. #define OBJ_name OBJ_X509,41L
  1771. #define SN_givenName "GN"
  1772. #define LN_givenName "givenName"
  1773. #define NID_givenName 99
  1774. #define OBJ_givenName OBJ_X509,42L
  1775. #define SN_initials "initials"
  1776. #define LN_initials "initials"
  1777. #define NID_initials 101
  1778. #define OBJ_initials OBJ_X509,43L
  1779. #define LN_generationQualifier "generationQualifier"
  1780. #define NID_generationQualifier 509
  1781. #define OBJ_generationQualifier OBJ_X509,44L
  1782. #define LN_x500UniqueIdentifier "x500UniqueIdentifier"
  1783. #define NID_x500UniqueIdentifier 503
  1784. #define OBJ_x500UniqueIdentifier OBJ_X509,45L
  1785. #define SN_dnQualifier "dnQualifier"
  1786. #define LN_dnQualifier "dnQualifier"
  1787. #define NID_dnQualifier 174
  1788. #define OBJ_dnQualifier OBJ_X509,46L
  1789. #define LN_enhancedSearchGuide "enhancedSearchGuide"
  1790. #define NID_enhancedSearchGuide 885
  1791. #define OBJ_enhancedSearchGuide OBJ_X509,47L
  1792. #define LN_protocolInformation "protocolInformation"
  1793. #define NID_protocolInformation 886
  1794. #define OBJ_protocolInformation OBJ_X509,48L
  1795. #define LN_distinguishedName "distinguishedName"
  1796. #define NID_distinguishedName 887
  1797. #define OBJ_distinguishedName OBJ_X509,49L
  1798. #define LN_uniqueMember "uniqueMember"
  1799. #define NID_uniqueMember 888
  1800. #define OBJ_uniqueMember OBJ_X509,50L
  1801. #define LN_houseIdentifier "houseIdentifier"
  1802. #define NID_houseIdentifier 889
  1803. #define OBJ_houseIdentifier OBJ_X509,51L
  1804. #define LN_supportedAlgorithms "supportedAlgorithms"
  1805. #define NID_supportedAlgorithms 890
  1806. #define OBJ_supportedAlgorithms OBJ_X509,52L
  1807. #define LN_deltaRevocationList "deltaRevocationList"
  1808. #define NID_deltaRevocationList 891
  1809. #define OBJ_deltaRevocationList OBJ_X509,53L
  1810. #define SN_dmdName "dmdName"
  1811. #define NID_dmdName 892
  1812. #define OBJ_dmdName OBJ_X509,54L
  1813. #define LN_pseudonym "pseudonym"
  1814. #define NID_pseudonym 510
  1815. #define OBJ_pseudonym OBJ_X509,65L
  1816. #define SN_role "role"
  1817. #define LN_role "role"
  1818. #define NID_role 400
  1819. #define OBJ_role OBJ_X509,72L
  1820. #define LN_organizationIdentifier "organizationIdentifier"
  1821. #define NID_organizationIdentifier 1089
  1822. #define OBJ_organizationIdentifier OBJ_X509,97L
  1823. #define SN_countryCode3c "c3"
  1824. #define LN_countryCode3c "countryCode3c"
  1825. #define NID_countryCode3c 1090
  1826. #define OBJ_countryCode3c OBJ_X509,98L
  1827. #define SN_countryCode3n "n3"
  1828. #define LN_countryCode3n "countryCode3n"
  1829. #define NID_countryCode3n 1091
  1830. #define OBJ_countryCode3n OBJ_X509,99L
  1831. #define LN_dnsName "dnsName"
  1832. #define NID_dnsName 1092
  1833. #define OBJ_dnsName OBJ_X509,100L
  1834. #define SN_X500algorithms "X500algorithms"
  1835. #define LN_X500algorithms "directory services - algorithms"
  1836. #define NID_X500algorithms 378
  1837. #define OBJ_X500algorithms OBJ_X500,8L
  1838. #define SN_rsa "RSA"
  1839. #define LN_rsa "rsa"
  1840. #define NID_rsa 19
  1841. #define OBJ_rsa OBJ_X500algorithms,1L,1L
  1842. #define SN_mdc2WithRSA "RSA-MDC2"
  1843. #define LN_mdc2WithRSA "mdc2WithRSA"
  1844. #define NID_mdc2WithRSA 96
  1845. #define OBJ_mdc2WithRSA OBJ_X500algorithms,3L,100L
  1846. #define SN_mdc2 "MDC2"
  1847. #define LN_mdc2 "mdc2"
  1848. #define NID_mdc2 95
  1849. #define OBJ_mdc2 OBJ_X500algorithms,3L,101L
  1850. #define SN_id_ce "id-ce"
  1851. #define NID_id_ce 81
  1852. #define OBJ_id_ce OBJ_X500,29L
  1853. #define SN_subject_directory_attributes "subjectDirectoryAttributes"
  1854. #define LN_subject_directory_attributes "X509v3 Subject Directory Attributes"
  1855. #define NID_subject_directory_attributes 769
  1856. #define OBJ_subject_directory_attributes OBJ_id_ce,9L
  1857. #define SN_subject_key_identifier "subjectKeyIdentifier"
  1858. #define LN_subject_key_identifier "X509v3 Subject Key Identifier"
  1859. #define NID_subject_key_identifier 82
  1860. #define OBJ_subject_key_identifier OBJ_id_ce,14L
  1861. #define SN_key_usage "keyUsage"
  1862. #define LN_key_usage "X509v3 Key Usage"
  1863. #define NID_key_usage 83
  1864. #define OBJ_key_usage OBJ_id_ce,15L
  1865. #define SN_private_key_usage_period "privateKeyUsagePeriod"
  1866. #define LN_private_key_usage_period "X509v3 Private Key Usage Period"
  1867. #define NID_private_key_usage_period 84
  1868. #define OBJ_private_key_usage_period OBJ_id_ce,16L
  1869. #define SN_subject_alt_name "subjectAltName"
  1870. #define LN_subject_alt_name "X509v3 Subject Alternative Name"
  1871. #define NID_subject_alt_name 85
  1872. #define OBJ_subject_alt_name OBJ_id_ce,17L
  1873. #define SN_issuer_alt_name "issuerAltName"
  1874. #define LN_issuer_alt_name "X509v3 Issuer Alternative Name"
  1875. #define NID_issuer_alt_name 86
  1876. #define OBJ_issuer_alt_name OBJ_id_ce,18L
  1877. #define SN_basic_constraints "basicConstraints"
  1878. #define LN_basic_constraints "X509v3 Basic Constraints"
  1879. #define NID_basic_constraints 87
  1880. #define OBJ_basic_constraints OBJ_id_ce,19L
  1881. #define SN_crl_number "crlNumber"
  1882. #define LN_crl_number "X509v3 CRL Number"
  1883. #define NID_crl_number 88
  1884. #define OBJ_crl_number OBJ_id_ce,20L
  1885. #define SN_crl_reason "CRLReason"
  1886. #define LN_crl_reason "X509v3 CRL Reason Code"
  1887. #define NID_crl_reason 141
  1888. #define OBJ_crl_reason OBJ_id_ce,21L
  1889. #define SN_invalidity_date "invalidityDate"
  1890. #define LN_invalidity_date "Invalidity Date"
  1891. #define NID_invalidity_date 142
  1892. #define OBJ_invalidity_date OBJ_id_ce,24L
  1893. #define SN_delta_crl "deltaCRL"
  1894. #define LN_delta_crl "X509v3 Delta CRL Indicator"
  1895. #define NID_delta_crl 140
  1896. #define OBJ_delta_crl OBJ_id_ce,27L
  1897. #define SN_issuing_distribution_point "issuingDistributionPoint"
  1898. #define LN_issuing_distribution_point "X509v3 Issuing Distribution Point"
  1899. #define NID_issuing_distribution_point 770
  1900. #define OBJ_issuing_distribution_point OBJ_id_ce,28L
  1901. #define SN_certificate_issuer "certificateIssuer"
  1902. #define LN_certificate_issuer "X509v3 Certificate Issuer"
  1903. #define NID_certificate_issuer 771
  1904. #define OBJ_certificate_issuer OBJ_id_ce,29L
  1905. #define SN_name_constraints "nameConstraints"
  1906. #define LN_name_constraints "X509v3 Name Constraints"
  1907. #define NID_name_constraints 666
  1908. #define OBJ_name_constraints OBJ_id_ce,30L
  1909. #define SN_crl_distribution_points "crlDistributionPoints"
  1910. #define LN_crl_distribution_points "X509v3 CRL Distribution Points"
  1911. #define NID_crl_distribution_points 103
  1912. #define OBJ_crl_distribution_points OBJ_id_ce,31L
  1913. #define SN_certificate_policies "certificatePolicies"
  1914. #define LN_certificate_policies "X509v3 Certificate Policies"
  1915. #define NID_certificate_policies 89
  1916. #define OBJ_certificate_policies OBJ_id_ce,32L
  1917. #define SN_any_policy "anyPolicy"
  1918. #define LN_any_policy "X509v3 Any Policy"
  1919. #define NID_any_policy 746
  1920. #define OBJ_any_policy OBJ_certificate_policies,0L
  1921. #define SN_policy_mappings "policyMappings"
  1922. #define LN_policy_mappings "X509v3 Policy Mappings"
  1923. #define NID_policy_mappings 747
  1924. #define OBJ_policy_mappings OBJ_id_ce,33L
  1925. #define SN_authority_key_identifier "authorityKeyIdentifier"
  1926. #define LN_authority_key_identifier "X509v3 Authority Key Identifier"
  1927. #define NID_authority_key_identifier 90
  1928. #define OBJ_authority_key_identifier OBJ_id_ce,35L
  1929. #define SN_policy_constraints "policyConstraints"
  1930. #define LN_policy_constraints "X509v3 Policy Constraints"
  1931. #define NID_policy_constraints 401
  1932. #define OBJ_policy_constraints OBJ_id_ce,36L
  1933. #define SN_ext_key_usage "extendedKeyUsage"
  1934. #define LN_ext_key_usage "X509v3 Extended Key Usage"
  1935. #define NID_ext_key_usage 126
  1936. #define OBJ_ext_key_usage OBJ_id_ce,37L
  1937. #define SN_freshest_crl "freshestCRL"
  1938. #define LN_freshest_crl "X509v3 Freshest CRL"
  1939. #define NID_freshest_crl 857
  1940. #define OBJ_freshest_crl OBJ_id_ce,46L
  1941. #define SN_inhibit_any_policy "inhibitAnyPolicy"
  1942. #define LN_inhibit_any_policy "X509v3 Inhibit Any Policy"
  1943. #define NID_inhibit_any_policy 748
  1944. #define OBJ_inhibit_any_policy OBJ_id_ce,54L
  1945. #define SN_target_information "targetInformation"
  1946. #define LN_target_information "X509v3 AC Targeting"
  1947. #define NID_target_information 402
  1948. #define OBJ_target_information OBJ_id_ce,55L
  1949. #define SN_no_rev_avail "noRevAvail"
  1950. #define LN_no_rev_avail "X509v3 No Revocation Available"
  1951. #define NID_no_rev_avail 403
  1952. #define OBJ_no_rev_avail OBJ_id_ce,56L
  1953. #define SN_anyExtendedKeyUsage "anyExtendedKeyUsage"
  1954. #define LN_anyExtendedKeyUsage "Any Extended Key Usage"
  1955. #define NID_anyExtendedKeyUsage 910
  1956. #define OBJ_anyExtendedKeyUsage OBJ_ext_key_usage,0L
  1957. #define SN_netscape "Netscape"
  1958. #define LN_netscape "Netscape Communications Corp."
  1959. #define NID_netscape 57
  1960. #define OBJ_netscape 2L,16L,840L,1L,113730L
  1961. #define SN_netscape_cert_extension "nsCertExt"
  1962. #define LN_netscape_cert_extension "Netscape Certificate Extension"
  1963. #define NID_netscape_cert_extension 58
  1964. #define OBJ_netscape_cert_extension OBJ_netscape,1L
  1965. #define SN_netscape_data_type "nsDataType"
  1966. #define LN_netscape_data_type "Netscape Data Type"
  1967. #define NID_netscape_data_type 59
  1968. #define OBJ_netscape_data_type OBJ_netscape,2L
  1969. #define SN_netscape_cert_type "nsCertType"
  1970. #define LN_netscape_cert_type "Netscape Cert Type"
  1971. #define NID_netscape_cert_type 71
  1972. #define OBJ_netscape_cert_type OBJ_netscape_cert_extension,1L
  1973. #define SN_netscape_base_url "nsBaseUrl"
  1974. #define LN_netscape_base_url "Netscape Base Url"
  1975. #define NID_netscape_base_url 72
  1976. #define OBJ_netscape_base_url OBJ_netscape_cert_extension,2L
  1977. #define SN_netscape_revocation_url "nsRevocationUrl"
  1978. #define LN_netscape_revocation_url "Netscape Revocation Url"
  1979. #define NID_netscape_revocation_url 73
  1980. #define OBJ_netscape_revocation_url OBJ_netscape_cert_extension,3L
  1981. #define SN_netscape_ca_revocation_url "nsCaRevocationUrl"
  1982. #define LN_netscape_ca_revocation_url "Netscape CA Revocation Url"
  1983. #define NID_netscape_ca_revocation_url 74
  1984. #define OBJ_netscape_ca_revocation_url OBJ_netscape_cert_extension,4L
  1985. #define SN_netscape_renewal_url "nsRenewalUrl"
  1986. #define LN_netscape_renewal_url "Netscape Renewal Url"
  1987. #define NID_netscape_renewal_url 75
  1988. #define OBJ_netscape_renewal_url OBJ_netscape_cert_extension,7L
  1989. #define SN_netscape_ca_policy_url "nsCaPolicyUrl"
  1990. #define LN_netscape_ca_policy_url "Netscape CA Policy Url"
  1991. #define NID_netscape_ca_policy_url 76
  1992. #define OBJ_netscape_ca_policy_url OBJ_netscape_cert_extension,8L
  1993. #define SN_netscape_ssl_server_name "nsSslServerName"
  1994. #define LN_netscape_ssl_server_name "Netscape SSL Server Name"
  1995. #define NID_netscape_ssl_server_name 77
  1996. #define OBJ_netscape_ssl_server_name OBJ_netscape_cert_extension,12L
  1997. #define SN_netscape_comment "nsComment"
  1998. #define LN_netscape_comment "Netscape Comment"
  1999. #define NID_netscape_comment 78
  2000. #define OBJ_netscape_comment OBJ_netscape_cert_extension,13L
  2001. #define SN_netscape_cert_sequence "nsCertSequence"
  2002. #define LN_netscape_cert_sequence "Netscape Certificate Sequence"
  2003. #define NID_netscape_cert_sequence 79
  2004. #define OBJ_netscape_cert_sequence OBJ_netscape_data_type,5L
  2005. #define SN_ns_sgc "nsSGC"
  2006. #define LN_ns_sgc "Netscape Server Gated Crypto"
  2007. #define NID_ns_sgc 139
  2008. #define OBJ_ns_sgc OBJ_netscape,4L,1L
  2009. #define SN_org "ORG"
  2010. #define LN_org "org"
  2011. #define NID_org 379
  2012. #define OBJ_org OBJ_iso,3L
  2013. #define SN_dod "DOD"
  2014. #define LN_dod "dod"
  2015. #define NID_dod 380
  2016. #define OBJ_dod OBJ_org,6L
  2017. #define SN_iana "IANA"
  2018. #define LN_iana "iana"
  2019. #define NID_iana 381
  2020. #define OBJ_iana OBJ_dod,1L
  2021. #define OBJ_internet OBJ_iana
  2022. #define SN_Directory "directory"
  2023. #define LN_Directory "Directory"
  2024. #define NID_Directory 382
  2025. #define OBJ_Directory OBJ_internet,1L
  2026. #define SN_Management "mgmt"
  2027. #define LN_Management "Management"
  2028. #define NID_Management 383
  2029. #define OBJ_Management OBJ_internet,2L
  2030. #define SN_Experimental "experimental"
  2031. #define LN_Experimental "Experimental"
  2032. #define NID_Experimental 384
  2033. #define OBJ_Experimental OBJ_internet,3L
  2034. #define SN_Private "private"
  2035. #define LN_Private "Private"
  2036. #define NID_Private 385
  2037. #define OBJ_Private OBJ_internet,4L
  2038. #define SN_Security "security"
  2039. #define LN_Security "Security"
  2040. #define NID_Security 386
  2041. #define OBJ_Security OBJ_internet,5L
  2042. #define SN_SNMPv2 "snmpv2"
  2043. #define LN_SNMPv2 "SNMPv2"
  2044. #define NID_SNMPv2 387
  2045. #define OBJ_SNMPv2 OBJ_internet,6L
  2046. #define LN_Mail "Mail"
  2047. #define NID_Mail 388
  2048. #define OBJ_Mail OBJ_internet,7L
  2049. #define SN_Enterprises "enterprises"
  2050. #define LN_Enterprises "Enterprises"
  2051. #define NID_Enterprises 389
  2052. #define OBJ_Enterprises OBJ_Private,1L
  2053. #define SN_dcObject "dcobject"
  2054. #define LN_dcObject "dcObject"
  2055. #define NID_dcObject 390
  2056. #define OBJ_dcObject OBJ_Enterprises,1466L,344L
  2057. #define SN_mime_mhs "mime-mhs"
  2058. #define LN_mime_mhs "MIME MHS"
  2059. #define NID_mime_mhs 504
  2060. #define OBJ_mime_mhs OBJ_Mail,1L
  2061. #define SN_mime_mhs_headings "mime-mhs-headings"
  2062. #define LN_mime_mhs_headings "mime-mhs-headings"
  2063. #define NID_mime_mhs_headings 505
  2064. #define OBJ_mime_mhs_headings OBJ_mime_mhs,1L
  2065. #define SN_mime_mhs_bodies "mime-mhs-bodies"
  2066. #define LN_mime_mhs_bodies "mime-mhs-bodies"
  2067. #define NID_mime_mhs_bodies 506
  2068. #define OBJ_mime_mhs_bodies OBJ_mime_mhs,2L
  2069. #define SN_id_hex_partial_message "id-hex-partial-message"
  2070. #define LN_id_hex_partial_message "id-hex-partial-message"
  2071. #define NID_id_hex_partial_message 507
  2072. #define OBJ_id_hex_partial_message OBJ_mime_mhs_headings,1L
  2073. #define SN_id_hex_multipart_message "id-hex-multipart-message"
  2074. #define LN_id_hex_multipart_message "id-hex-multipart-message"
  2075. #define NID_id_hex_multipart_message 508
  2076. #define OBJ_id_hex_multipart_message OBJ_mime_mhs_headings,2L
  2077. #define SN_zlib_compression "ZLIB"
  2078. #define LN_zlib_compression "zlib compression"
  2079. #define NID_zlib_compression 125
  2080. #define OBJ_zlib_compression OBJ_id_smime_alg,8L
  2081. #define OBJ_csor 2L,16L,840L,1L,101L,3L
  2082. #define OBJ_nistAlgorithms OBJ_csor,4L
  2083. #define OBJ_aes OBJ_nistAlgorithms,1L
  2084. #define SN_aes_128_ecb "AES-128-ECB"
  2085. #define LN_aes_128_ecb "aes-128-ecb"
  2086. #define NID_aes_128_ecb 418
  2087. #define OBJ_aes_128_ecb OBJ_aes,1L
  2088. #define SN_aes_128_cbc "AES-128-CBC"
  2089. #define LN_aes_128_cbc "aes-128-cbc"
  2090. #define NID_aes_128_cbc 419
  2091. #define OBJ_aes_128_cbc OBJ_aes,2L
  2092. #define SN_aes_128_ofb128 "AES-128-OFB"
  2093. #define LN_aes_128_ofb128 "aes-128-ofb"
  2094. #define NID_aes_128_ofb128 420
  2095. #define OBJ_aes_128_ofb128 OBJ_aes,3L
  2096. #define SN_aes_128_cfb128 "AES-128-CFB"
  2097. #define LN_aes_128_cfb128 "aes-128-cfb"
  2098. #define NID_aes_128_cfb128 421
  2099. #define OBJ_aes_128_cfb128 OBJ_aes,4L
  2100. #define SN_id_aes128_wrap "id-aes128-wrap"
  2101. #define NID_id_aes128_wrap 788
  2102. #define OBJ_id_aes128_wrap OBJ_aes,5L
  2103. #define SN_aes_128_gcm "id-aes128-GCM"
  2104. #define LN_aes_128_gcm "aes-128-gcm"
  2105. #define NID_aes_128_gcm 895
  2106. #define OBJ_aes_128_gcm OBJ_aes,6L
  2107. #define SN_aes_128_ccm "id-aes128-CCM"
  2108. #define LN_aes_128_ccm "aes-128-ccm"
  2109. #define NID_aes_128_ccm 896
  2110. #define OBJ_aes_128_ccm OBJ_aes,7L
  2111. #define SN_id_aes128_wrap_pad "id-aes128-wrap-pad"
  2112. #define NID_id_aes128_wrap_pad 897
  2113. #define OBJ_id_aes128_wrap_pad OBJ_aes,8L
  2114. #define SN_aes_192_ecb "AES-192-ECB"
  2115. #define LN_aes_192_ecb "aes-192-ecb"
  2116. #define NID_aes_192_ecb 422
  2117. #define OBJ_aes_192_ecb OBJ_aes,21L
  2118. #define SN_aes_192_cbc "AES-192-CBC"
  2119. #define LN_aes_192_cbc "aes-192-cbc"
  2120. #define NID_aes_192_cbc 423
  2121. #define OBJ_aes_192_cbc OBJ_aes,22L
  2122. #define SN_aes_192_ofb128 "AES-192-OFB"
  2123. #define LN_aes_192_ofb128 "aes-192-ofb"
  2124. #define NID_aes_192_ofb128 424
  2125. #define OBJ_aes_192_ofb128 OBJ_aes,23L
  2126. #define SN_aes_192_cfb128 "AES-192-CFB"
  2127. #define LN_aes_192_cfb128 "aes-192-cfb"
  2128. #define NID_aes_192_cfb128 425
  2129. #define OBJ_aes_192_cfb128 OBJ_aes,24L
  2130. #define SN_id_aes192_wrap "id-aes192-wrap"
  2131. #define NID_id_aes192_wrap 789
  2132. #define OBJ_id_aes192_wrap OBJ_aes,25L
  2133. #define SN_aes_192_gcm "id-aes192-GCM"
  2134. #define LN_aes_192_gcm "aes-192-gcm"
  2135. #define NID_aes_192_gcm 898
  2136. #define OBJ_aes_192_gcm OBJ_aes,26L
  2137. #define SN_aes_192_ccm "id-aes192-CCM"
  2138. #define LN_aes_192_ccm "aes-192-ccm"
  2139. #define NID_aes_192_ccm 899
  2140. #define OBJ_aes_192_ccm OBJ_aes,27L
  2141. #define SN_id_aes192_wrap_pad "id-aes192-wrap-pad"
  2142. #define NID_id_aes192_wrap_pad 900
  2143. #define OBJ_id_aes192_wrap_pad OBJ_aes,28L
  2144. #define SN_aes_256_ecb "AES-256-ECB"
  2145. #define LN_aes_256_ecb "aes-256-ecb"
  2146. #define NID_aes_256_ecb 426
  2147. #define OBJ_aes_256_ecb OBJ_aes,41L
  2148. #define SN_aes_256_cbc "AES-256-CBC"
  2149. #define LN_aes_256_cbc "aes-256-cbc"
  2150. #define NID_aes_256_cbc 427
  2151. #define OBJ_aes_256_cbc OBJ_aes,42L
  2152. #define SN_aes_256_ofb128 "AES-256-OFB"
  2153. #define LN_aes_256_ofb128 "aes-256-ofb"
  2154. #define NID_aes_256_ofb128 428
  2155. #define OBJ_aes_256_ofb128 OBJ_aes,43L
  2156. #define SN_aes_256_cfb128 "AES-256-CFB"
  2157. #define LN_aes_256_cfb128 "aes-256-cfb"
  2158. #define NID_aes_256_cfb128 429
  2159. #define OBJ_aes_256_cfb128 OBJ_aes,44L
  2160. #define SN_id_aes256_wrap "id-aes256-wrap"
  2161. #define NID_id_aes256_wrap 790
  2162. #define OBJ_id_aes256_wrap OBJ_aes,45L
  2163. #define SN_aes_256_gcm "id-aes256-GCM"
  2164. #define LN_aes_256_gcm "aes-256-gcm"
  2165. #define NID_aes_256_gcm 901
  2166. #define OBJ_aes_256_gcm OBJ_aes,46L
  2167. #define SN_aes_256_ccm "id-aes256-CCM"
  2168. #define LN_aes_256_ccm "aes-256-ccm"
  2169. #define NID_aes_256_ccm 902
  2170. #define OBJ_aes_256_ccm OBJ_aes,47L
  2171. #define SN_id_aes256_wrap_pad "id-aes256-wrap-pad"
  2172. #define NID_id_aes256_wrap_pad 903
  2173. #define OBJ_id_aes256_wrap_pad OBJ_aes,48L
  2174. #define SN_aes_128_xts "AES-128-XTS"
  2175. #define LN_aes_128_xts "aes-128-xts"
  2176. #define NID_aes_128_xts 913
  2177. #define OBJ_aes_128_xts OBJ_ieee_siswg,0L,1L,1L
  2178. #define SN_aes_256_xts "AES-256-XTS"
  2179. #define LN_aes_256_xts "aes-256-xts"
  2180. #define NID_aes_256_xts 914
  2181. #define OBJ_aes_256_xts OBJ_ieee_siswg,0L,1L,2L
  2182. #define SN_aes_128_cfb1 "AES-128-CFB1"
  2183. #define LN_aes_128_cfb1 "aes-128-cfb1"
  2184. #define NID_aes_128_cfb1 650
  2185. #define SN_aes_192_cfb1 "AES-192-CFB1"
  2186. #define LN_aes_192_cfb1 "aes-192-cfb1"
  2187. #define NID_aes_192_cfb1 651
  2188. #define SN_aes_256_cfb1 "AES-256-CFB1"
  2189. #define LN_aes_256_cfb1 "aes-256-cfb1"
  2190. #define NID_aes_256_cfb1 652
  2191. #define SN_aes_128_cfb8 "AES-128-CFB8"
  2192. #define LN_aes_128_cfb8 "aes-128-cfb8"
  2193. #define NID_aes_128_cfb8 653
  2194. #define SN_aes_192_cfb8 "AES-192-CFB8"
  2195. #define LN_aes_192_cfb8 "aes-192-cfb8"
  2196. #define NID_aes_192_cfb8 654
  2197. #define SN_aes_256_cfb8 "AES-256-CFB8"
  2198. #define LN_aes_256_cfb8 "aes-256-cfb8"
  2199. #define NID_aes_256_cfb8 655
  2200. #define SN_aes_128_ctr "AES-128-CTR"
  2201. #define LN_aes_128_ctr "aes-128-ctr"
  2202. #define NID_aes_128_ctr 904
  2203. #define SN_aes_192_ctr "AES-192-CTR"
  2204. #define LN_aes_192_ctr "aes-192-ctr"
  2205. #define NID_aes_192_ctr 905
  2206. #define SN_aes_256_ctr "AES-256-CTR"
  2207. #define LN_aes_256_ctr "aes-256-ctr"
  2208. #define NID_aes_256_ctr 906
  2209. #define SN_aes_128_ocb "AES-128-OCB"
  2210. #define LN_aes_128_ocb "aes-128-ocb"
  2211. #define NID_aes_128_ocb 958
  2212. #define SN_aes_192_ocb "AES-192-OCB"
  2213. #define LN_aes_192_ocb "aes-192-ocb"
  2214. #define NID_aes_192_ocb 959
  2215. #define SN_aes_256_ocb "AES-256-OCB"
  2216. #define LN_aes_256_ocb "aes-256-ocb"
  2217. #define NID_aes_256_ocb 960
  2218. #define SN_des_cfb1 "DES-CFB1"
  2219. #define LN_des_cfb1 "des-cfb1"
  2220. #define NID_des_cfb1 656
  2221. #define SN_des_cfb8 "DES-CFB8"
  2222. #define LN_des_cfb8 "des-cfb8"
  2223. #define NID_des_cfb8 657
  2224. #define SN_des_ede3_cfb1 "DES-EDE3-CFB1"
  2225. #define LN_des_ede3_cfb1 "des-ede3-cfb1"
  2226. #define NID_des_ede3_cfb1 658
  2227. #define SN_des_ede3_cfb8 "DES-EDE3-CFB8"
  2228. #define LN_des_ede3_cfb8 "des-ede3-cfb8"
  2229. #define NID_des_ede3_cfb8 659
  2230. #define OBJ_nist_hashalgs OBJ_nistAlgorithms,2L
  2231. #define SN_sha256 "SHA256"
  2232. #define LN_sha256 "sha256"
  2233. #define NID_sha256 672
  2234. #define OBJ_sha256 OBJ_nist_hashalgs,1L
  2235. #define SN_sha384 "SHA384"
  2236. #define LN_sha384 "sha384"
  2237. #define NID_sha384 673
  2238. #define OBJ_sha384 OBJ_nist_hashalgs,2L
  2239. #define SN_sha512 "SHA512"
  2240. #define LN_sha512 "sha512"
  2241. #define NID_sha512 674
  2242. #define OBJ_sha512 OBJ_nist_hashalgs,3L
  2243. #define SN_sha224 "SHA224"
  2244. #define LN_sha224 "sha224"
  2245. #define NID_sha224 675
  2246. #define OBJ_sha224 OBJ_nist_hashalgs,4L
  2247. #define SN_sha512_224 "SHA512-224"
  2248. #define LN_sha512_224 "sha512-224"
  2249. #define NID_sha512_224 1094
  2250. #define OBJ_sha512_224 OBJ_nist_hashalgs,5L
  2251. #define SN_sha512_256 "SHA512-256"
  2252. #define LN_sha512_256 "sha512-256"
  2253. #define NID_sha512_256 1095
  2254. #define OBJ_sha512_256 OBJ_nist_hashalgs,6L
  2255. #define SN_sha3_224 "SHA3-224"
  2256. #define LN_sha3_224 "sha3-224"
  2257. #define NID_sha3_224 1096
  2258. #define OBJ_sha3_224 OBJ_nist_hashalgs,7L
  2259. #define SN_sha3_256 "SHA3-256"
  2260. #define LN_sha3_256 "sha3-256"
  2261. #define NID_sha3_256 1097
  2262. #define OBJ_sha3_256 OBJ_nist_hashalgs,8L
  2263. #define SN_sha3_384 "SHA3-384"
  2264. #define LN_sha3_384 "sha3-384"
  2265. #define NID_sha3_384 1098
  2266. #define OBJ_sha3_384 OBJ_nist_hashalgs,9L
  2267. #define SN_sha3_512 "SHA3-512"
  2268. #define LN_sha3_512 "sha3-512"
  2269. #define NID_sha3_512 1099
  2270. #define OBJ_sha3_512 OBJ_nist_hashalgs,10L
  2271. #define SN_shake128 "SHAKE128"
  2272. #define LN_shake128 "shake128"
  2273. #define NID_shake128 1100
  2274. #define OBJ_shake128 OBJ_nist_hashalgs,11L
  2275. #define SN_shake256 "SHAKE256"
  2276. #define LN_shake256 "shake256"
  2277. #define NID_shake256 1101
  2278. #define OBJ_shake256 OBJ_nist_hashalgs,12L
  2279. #define SN_hmac_sha3_224 "id-hmacWithSHA3-224"
  2280. #define LN_hmac_sha3_224 "hmac-sha3-224"
  2281. #define NID_hmac_sha3_224 1102
  2282. #define OBJ_hmac_sha3_224 OBJ_nist_hashalgs,13L
  2283. #define SN_hmac_sha3_256 "id-hmacWithSHA3-256"
  2284. #define LN_hmac_sha3_256 "hmac-sha3-256"
  2285. #define NID_hmac_sha3_256 1103
  2286. #define OBJ_hmac_sha3_256 OBJ_nist_hashalgs,14L
  2287. #define SN_hmac_sha3_384 "id-hmacWithSHA3-384"
  2288. #define LN_hmac_sha3_384 "hmac-sha3-384"
  2289. #define NID_hmac_sha3_384 1104
  2290. #define OBJ_hmac_sha3_384 OBJ_nist_hashalgs,15L
  2291. #define SN_hmac_sha3_512 "id-hmacWithSHA3-512"
  2292. #define LN_hmac_sha3_512 "hmac-sha3-512"
  2293. #define NID_hmac_sha3_512 1105
  2294. #define OBJ_hmac_sha3_512 OBJ_nist_hashalgs,16L
  2295. #define OBJ_dsa_with_sha2 OBJ_nistAlgorithms,3L
  2296. #define SN_dsa_with_SHA224 "dsa_with_SHA224"
  2297. #define NID_dsa_with_SHA224 802
  2298. #define OBJ_dsa_with_SHA224 OBJ_dsa_with_sha2,1L
  2299. #define SN_dsa_with_SHA256 "dsa_with_SHA256"
  2300. #define NID_dsa_with_SHA256 803
  2301. #define OBJ_dsa_with_SHA256 OBJ_dsa_with_sha2,2L
  2302. #define OBJ_sigAlgs OBJ_nistAlgorithms,3L
  2303. #define SN_dsa_with_SHA384 "id-dsa-with-sha384"
  2304. #define LN_dsa_with_SHA384 "dsa_with_SHA384"
  2305. #define NID_dsa_with_SHA384 1106
  2306. #define OBJ_dsa_with_SHA384 OBJ_sigAlgs,3L
  2307. #define SN_dsa_with_SHA512 "id-dsa-with-sha512"
  2308. #define LN_dsa_with_SHA512 "dsa_with_SHA512"
  2309. #define NID_dsa_with_SHA512 1107
  2310. #define OBJ_dsa_with_SHA512 OBJ_sigAlgs,4L
  2311. #define SN_dsa_with_SHA3_224 "id-dsa-with-sha3-224"
  2312. #define LN_dsa_with_SHA3_224 "dsa_with_SHA3-224"
  2313. #define NID_dsa_with_SHA3_224 1108
  2314. #define OBJ_dsa_with_SHA3_224 OBJ_sigAlgs,5L
  2315. #define SN_dsa_with_SHA3_256 "id-dsa-with-sha3-256"
  2316. #define LN_dsa_with_SHA3_256 "dsa_with_SHA3-256"
  2317. #define NID_dsa_with_SHA3_256 1109
  2318. #define OBJ_dsa_with_SHA3_256 OBJ_sigAlgs,6L
  2319. #define SN_dsa_with_SHA3_384 "id-dsa-with-sha3-384"
  2320. #define LN_dsa_with_SHA3_384 "dsa_with_SHA3-384"
  2321. #define NID_dsa_with_SHA3_384 1110
  2322. #define OBJ_dsa_with_SHA3_384 OBJ_sigAlgs,7L
  2323. #define SN_dsa_with_SHA3_512 "id-dsa-with-sha3-512"
  2324. #define LN_dsa_with_SHA3_512 "dsa_with_SHA3-512"
  2325. #define NID_dsa_with_SHA3_512 1111
  2326. #define OBJ_dsa_with_SHA3_512 OBJ_sigAlgs,8L
  2327. #define SN_ecdsa_with_SHA3_224 "id-ecdsa-with-sha3-224"
  2328. #define LN_ecdsa_with_SHA3_224 "ecdsa_with_SHA3-224"
  2329. #define NID_ecdsa_with_SHA3_224 1112
  2330. #define OBJ_ecdsa_with_SHA3_224 OBJ_sigAlgs,9L
  2331. #define SN_ecdsa_with_SHA3_256 "id-ecdsa-with-sha3-256"
  2332. #define LN_ecdsa_with_SHA3_256 "ecdsa_with_SHA3-256"
  2333. #define NID_ecdsa_with_SHA3_256 1113
  2334. #define OBJ_ecdsa_with_SHA3_256 OBJ_sigAlgs,10L
  2335. #define SN_ecdsa_with_SHA3_384 "id-ecdsa-with-sha3-384"
  2336. #define LN_ecdsa_with_SHA3_384 "ecdsa_with_SHA3-384"
  2337. #define NID_ecdsa_with_SHA3_384 1114
  2338. #define OBJ_ecdsa_with_SHA3_384 OBJ_sigAlgs,11L
  2339. #define SN_ecdsa_with_SHA3_512 "id-ecdsa-with-sha3-512"
  2340. #define LN_ecdsa_with_SHA3_512 "ecdsa_with_SHA3-512"
  2341. #define NID_ecdsa_with_SHA3_512 1115
  2342. #define OBJ_ecdsa_with_SHA3_512 OBJ_sigAlgs,12L
  2343. #define SN_RSA_SHA3_224 "id-rsassa-pkcs1-v1_5-with-sha3-224"
  2344. #define LN_RSA_SHA3_224 "RSA-SHA3-224"
  2345. #define NID_RSA_SHA3_224 1116
  2346. #define OBJ_RSA_SHA3_224 OBJ_sigAlgs,13L
  2347. #define SN_RSA_SHA3_256 "id-rsassa-pkcs1-v1_5-with-sha3-256"
  2348. #define LN_RSA_SHA3_256 "RSA-SHA3-256"
  2349. #define NID_RSA_SHA3_256 1117
  2350. #define OBJ_RSA_SHA3_256 OBJ_sigAlgs,14L
  2351. #define SN_RSA_SHA3_384 "id-rsassa-pkcs1-v1_5-with-sha3-384"
  2352. #define LN_RSA_SHA3_384 "RSA-SHA3-384"
  2353. #define NID_RSA_SHA3_384 1118
  2354. #define OBJ_RSA_SHA3_384 OBJ_sigAlgs,15L
  2355. #define SN_RSA_SHA3_512 "id-rsassa-pkcs1-v1_5-with-sha3-512"
  2356. #define LN_RSA_SHA3_512 "RSA-SHA3-512"
  2357. #define NID_RSA_SHA3_512 1119
  2358. #define OBJ_RSA_SHA3_512 OBJ_sigAlgs,16L
  2359. #define SN_hold_instruction_code "holdInstructionCode"
  2360. #define LN_hold_instruction_code "Hold Instruction Code"
  2361. #define NID_hold_instruction_code 430
  2362. #define OBJ_hold_instruction_code OBJ_id_ce,23L
  2363. #define OBJ_holdInstruction OBJ_X9_57,2L
  2364. #define SN_hold_instruction_none "holdInstructionNone"
  2365. #define LN_hold_instruction_none "Hold Instruction None"
  2366. #define NID_hold_instruction_none 431
  2367. #define OBJ_hold_instruction_none OBJ_holdInstruction,1L
  2368. #define SN_hold_instruction_call_issuer "holdInstructionCallIssuer"
  2369. #define LN_hold_instruction_call_issuer "Hold Instruction Call Issuer"
  2370. #define NID_hold_instruction_call_issuer 432
  2371. #define OBJ_hold_instruction_call_issuer OBJ_holdInstruction,2L
  2372. #define SN_hold_instruction_reject "holdInstructionReject"
  2373. #define LN_hold_instruction_reject "Hold Instruction Reject"
  2374. #define NID_hold_instruction_reject 433
  2375. #define OBJ_hold_instruction_reject OBJ_holdInstruction,3L
  2376. #define SN_data "data"
  2377. #define NID_data 434
  2378. #define OBJ_data OBJ_itu_t,9L
  2379. #define SN_pss "pss"
  2380. #define NID_pss 435
  2381. #define OBJ_pss OBJ_data,2342L
  2382. #define SN_ucl "ucl"
  2383. #define NID_ucl 436
  2384. #define OBJ_ucl OBJ_pss,19200300L
  2385. #define SN_pilot "pilot"
  2386. #define NID_pilot 437
  2387. #define OBJ_pilot OBJ_ucl,100L
  2388. #define LN_pilotAttributeType "pilotAttributeType"
  2389. #define NID_pilotAttributeType 438
  2390. #define OBJ_pilotAttributeType OBJ_pilot,1L
  2391. #define LN_pilotAttributeSyntax "pilotAttributeSyntax"
  2392. #define NID_pilotAttributeSyntax 439
  2393. #define OBJ_pilotAttributeSyntax OBJ_pilot,3L
  2394. #define LN_pilotObjectClass "pilotObjectClass"
  2395. #define NID_pilotObjectClass 440
  2396. #define OBJ_pilotObjectClass OBJ_pilot,4L
  2397. #define LN_pilotGroups "pilotGroups"
  2398. #define NID_pilotGroups 441
  2399. #define OBJ_pilotGroups OBJ_pilot,10L
  2400. #define LN_iA5StringSyntax "iA5StringSyntax"
  2401. #define NID_iA5StringSyntax 442
  2402. #define OBJ_iA5StringSyntax OBJ_pilotAttributeSyntax,4L
  2403. #define LN_caseIgnoreIA5StringSyntax "caseIgnoreIA5StringSyntax"
  2404. #define NID_caseIgnoreIA5StringSyntax 443
  2405. #define OBJ_caseIgnoreIA5StringSyntax OBJ_pilotAttributeSyntax,5L
  2406. #define LN_pilotObject "pilotObject"
  2407. #define NID_pilotObject 444
  2408. #define OBJ_pilotObject OBJ_pilotObjectClass,3L
  2409. #define LN_pilotPerson "pilotPerson"
  2410. #define NID_pilotPerson 445
  2411. #define OBJ_pilotPerson OBJ_pilotObjectClass,4L
  2412. #define SN_account "account"
  2413. #define NID_account 446
  2414. #define OBJ_account OBJ_pilotObjectClass,5L
  2415. #define SN_document "document"
  2416. #define NID_document 447
  2417. #define OBJ_document OBJ_pilotObjectClass,6L
  2418. #define SN_room "room"
  2419. #define NID_room 448
  2420. #define OBJ_room OBJ_pilotObjectClass,7L
  2421. #define LN_documentSeries "documentSeries"
  2422. #define NID_documentSeries 449
  2423. #define OBJ_documentSeries OBJ_pilotObjectClass,9L
  2424. #define SN_Domain "domain"
  2425. #define LN_Domain "Domain"
  2426. #define NID_Domain 392
  2427. #define OBJ_Domain OBJ_pilotObjectClass,13L
  2428. #define LN_rFC822localPart "rFC822localPart"
  2429. #define NID_rFC822localPart 450
  2430. #define OBJ_rFC822localPart OBJ_pilotObjectClass,14L
  2431. #define LN_dNSDomain "dNSDomain"
  2432. #define NID_dNSDomain 451
  2433. #define OBJ_dNSDomain OBJ_pilotObjectClass,15L
  2434. #define LN_domainRelatedObject "domainRelatedObject"
  2435. #define NID_domainRelatedObject 452
  2436. #define OBJ_domainRelatedObject OBJ_pilotObjectClass,17L
  2437. #define LN_friendlyCountry "friendlyCountry"
  2438. #define NID_friendlyCountry 453
  2439. #define OBJ_friendlyCountry OBJ_pilotObjectClass,18L
  2440. #define LN_simpleSecurityObject "simpleSecurityObject"
  2441. #define NID_simpleSecurityObject 454
  2442. #define OBJ_simpleSecurityObject OBJ_pilotObjectClass,19L
  2443. #define LN_pilotOrganization "pilotOrganization"
  2444. #define NID_pilotOrganization 455
  2445. #define OBJ_pilotOrganization OBJ_pilotObjectClass,20L
  2446. #define LN_pilotDSA "pilotDSA"
  2447. #define NID_pilotDSA 456
  2448. #define OBJ_pilotDSA OBJ_pilotObjectClass,21L
  2449. #define LN_qualityLabelledData "qualityLabelledData"
  2450. #define NID_qualityLabelledData 457
  2451. #define OBJ_qualityLabelledData OBJ_pilotObjectClass,22L
  2452. #define SN_userId "UID"
  2453. #define LN_userId "userId"
  2454. #define NID_userId 458
  2455. #define OBJ_userId OBJ_pilotAttributeType,1L
  2456. #define LN_textEncodedORAddress "textEncodedORAddress"
  2457. #define NID_textEncodedORAddress 459
  2458. #define OBJ_textEncodedORAddress OBJ_pilotAttributeType,2L
  2459. #define SN_rfc822Mailbox "mail"
  2460. #define LN_rfc822Mailbox "rfc822Mailbox"
  2461. #define NID_rfc822Mailbox 460
  2462. #define OBJ_rfc822Mailbox OBJ_pilotAttributeType,3L
  2463. #define SN_info "info"
  2464. #define NID_info 461
  2465. #define OBJ_info OBJ_pilotAttributeType,4L
  2466. #define LN_favouriteDrink "favouriteDrink"
  2467. #define NID_favouriteDrink 462
  2468. #define OBJ_favouriteDrink OBJ_pilotAttributeType,5L
  2469. #define LN_roomNumber "roomNumber"
  2470. #define NID_roomNumber 463
  2471. #define OBJ_roomNumber OBJ_pilotAttributeType,6L
  2472. #define SN_photo "photo"
  2473. #define NID_photo 464
  2474. #define OBJ_photo OBJ_pilotAttributeType,7L
  2475. #define LN_userClass "userClass"
  2476. #define NID_userClass 465
  2477. #define OBJ_userClass OBJ_pilotAttributeType,8L
  2478. #define SN_host "host"
  2479. #define NID_host 466
  2480. #define OBJ_host OBJ_pilotAttributeType,9L
  2481. #define SN_manager "manager"
  2482. #define NID_manager 467
  2483. #define OBJ_manager OBJ_pilotAttributeType,10L
  2484. #define LN_documentIdentifier "documentIdentifier"
  2485. #define NID_documentIdentifier 468
  2486. #define OBJ_documentIdentifier OBJ_pilotAttributeType,11L
  2487. #define LN_documentTitle "documentTitle"
  2488. #define NID_documentTitle 469
  2489. #define OBJ_documentTitle OBJ_pilotAttributeType,12L
  2490. #define LN_documentVersion "documentVersion"
  2491. #define NID_documentVersion 470
  2492. #define OBJ_documentVersion OBJ_pilotAttributeType,13L
  2493. #define LN_documentAuthor "documentAuthor"
  2494. #define NID_documentAuthor 471
  2495. #define OBJ_documentAuthor OBJ_pilotAttributeType,14L
  2496. #define LN_documentLocation "documentLocation"
  2497. #define NID_documentLocation 472
  2498. #define OBJ_documentLocation OBJ_pilotAttributeType,15L
  2499. #define LN_homeTelephoneNumber "homeTelephoneNumber"
  2500. #define NID_homeTelephoneNumber 473
  2501. #define OBJ_homeTelephoneNumber OBJ_pilotAttributeType,20L
  2502. #define SN_secretary "secretary"
  2503. #define NID_secretary 474
  2504. #define OBJ_secretary OBJ_pilotAttributeType,21L
  2505. #define LN_otherMailbox "otherMailbox"
  2506. #define NID_otherMailbox 475
  2507. #define OBJ_otherMailbox OBJ_pilotAttributeType,22L
  2508. #define LN_lastModifiedTime "lastModifiedTime"
  2509. #define NID_lastModifiedTime 476
  2510. #define OBJ_lastModifiedTime OBJ_pilotAttributeType,23L
  2511. #define LN_lastModifiedBy "lastModifiedBy"
  2512. #define NID_lastModifiedBy 477
  2513. #define OBJ_lastModifiedBy OBJ_pilotAttributeType,24L
  2514. #define SN_domainComponent "DC"
  2515. #define LN_domainComponent "domainComponent"
  2516. #define NID_domainComponent 391
  2517. #define OBJ_domainComponent OBJ_pilotAttributeType,25L
  2518. #define LN_aRecord "aRecord"
  2519. #define NID_aRecord 478
  2520. #define OBJ_aRecord OBJ_pilotAttributeType,26L
  2521. #define LN_pilotAttributeType27 "pilotAttributeType27"
  2522. #define NID_pilotAttributeType27 479
  2523. #define OBJ_pilotAttributeType27 OBJ_pilotAttributeType,27L
  2524. #define LN_mXRecord "mXRecord"
  2525. #define NID_mXRecord 480
  2526. #define OBJ_mXRecord OBJ_pilotAttributeType,28L
  2527. #define LN_nSRecord "nSRecord"
  2528. #define NID_nSRecord 481
  2529. #define OBJ_nSRecord OBJ_pilotAttributeType,29L
  2530. #define LN_sOARecord "sOARecord"
  2531. #define NID_sOARecord 482
  2532. #define OBJ_sOARecord OBJ_pilotAttributeType,30L
  2533. #define LN_cNAMERecord "cNAMERecord"
  2534. #define NID_cNAMERecord 483
  2535. #define OBJ_cNAMERecord OBJ_pilotAttributeType,31L
  2536. #define LN_associatedDomain "associatedDomain"
  2537. #define NID_associatedDomain 484
  2538. #define OBJ_associatedDomain OBJ_pilotAttributeType,37L
  2539. #define LN_associatedName "associatedName"
  2540. #define NID_associatedName 485
  2541. #define OBJ_associatedName OBJ_pilotAttributeType,38L
  2542. #define LN_homePostalAddress "homePostalAddress"
  2543. #define NID_homePostalAddress 486
  2544. #define OBJ_homePostalAddress OBJ_pilotAttributeType,39L
  2545. #define LN_personalTitle "personalTitle"
  2546. #define NID_personalTitle 487
  2547. #define OBJ_personalTitle OBJ_pilotAttributeType,40L
  2548. #define LN_mobileTelephoneNumber "mobileTelephoneNumber"
  2549. #define NID_mobileTelephoneNumber 488
  2550. #define OBJ_mobileTelephoneNumber OBJ_pilotAttributeType,41L
  2551. #define LN_pagerTelephoneNumber "pagerTelephoneNumber"
  2552. #define NID_pagerTelephoneNumber 489
  2553. #define OBJ_pagerTelephoneNumber OBJ_pilotAttributeType,42L
  2554. #define LN_friendlyCountryName "friendlyCountryName"
  2555. #define NID_friendlyCountryName 490
  2556. #define OBJ_friendlyCountryName OBJ_pilotAttributeType,43L
  2557. #define SN_uniqueIdentifier "uid"
  2558. #define LN_uniqueIdentifier "uniqueIdentifier"
  2559. #define NID_uniqueIdentifier 102
  2560. #define OBJ_uniqueIdentifier OBJ_pilotAttributeType,44L
  2561. #define LN_organizationalStatus "organizationalStatus"
  2562. #define NID_organizationalStatus 491
  2563. #define OBJ_organizationalStatus OBJ_pilotAttributeType,45L
  2564. #define LN_janetMailbox "janetMailbox"
  2565. #define NID_janetMailbox 492
  2566. #define OBJ_janetMailbox OBJ_pilotAttributeType,46L
  2567. #define LN_mailPreferenceOption "mailPreferenceOption"
  2568. #define NID_mailPreferenceOption 493
  2569. #define OBJ_mailPreferenceOption OBJ_pilotAttributeType,47L
  2570. #define LN_buildingName "buildingName"
  2571. #define NID_buildingName 494
  2572. #define OBJ_buildingName OBJ_pilotAttributeType,48L
  2573. #define LN_dSAQuality "dSAQuality"
  2574. #define NID_dSAQuality 495
  2575. #define OBJ_dSAQuality OBJ_pilotAttributeType,49L
  2576. #define LN_singleLevelQuality "singleLevelQuality"
  2577. #define NID_singleLevelQuality 496
  2578. #define OBJ_singleLevelQuality OBJ_pilotAttributeType,50L
  2579. #define LN_subtreeMinimumQuality "subtreeMinimumQuality"
  2580. #define NID_subtreeMinimumQuality 497
  2581. #define OBJ_subtreeMinimumQuality OBJ_pilotAttributeType,51L
  2582. #define LN_subtreeMaximumQuality "subtreeMaximumQuality"
  2583. #define NID_subtreeMaximumQuality 498
  2584. #define OBJ_subtreeMaximumQuality OBJ_pilotAttributeType,52L
  2585. #define LN_personalSignature "personalSignature"
  2586. #define NID_personalSignature 499
  2587. #define OBJ_personalSignature OBJ_pilotAttributeType,53L
  2588. #define LN_dITRedirect "dITRedirect"
  2589. #define NID_dITRedirect 500
  2590. #define OBJ_dITRedirect OBJ_pilotAttributeType,54L
  2591. #define SN_audio "audio"
  2592. #define NID_audio 501
  2593. #define OBJ_audio OBJ_pilotAttributeType,55L
  2594. #define LN_documentPublisher "documentPublisher"
  2595. #define NID_documentPublisher 502
  2596. #define OBJ_documentPublisher OBJ_pilotAttributeType,56L
  2597. #define SN_id_set "id-set"
  2598. #define LN_id_set "Secure Electronic Transactions"
  2599. #define NID_id_set 512
  2600. #define OBJ_id_set OBJ_international_organizations,42L
  2601. #define SN_set_ctype "set-ctype"
  2602. #define LN_set_ctype "content types"
  2603. #define NID_set_ctype 513
  2604. #define OBJ_set_ctype OBJ_id_set,0L
  2605. #define SN_set_msgExt "set-msgExt"
  2606. #define LN_set_msgExt "message extensions"
  2607. #define NID_set_msgExt 514
  2608. #define OBJ_set_msgExt OBJ_id_set,1L
  2609. #define SN_set_attr "set-attr"
  2610. #define NID_set_attr 515
  2611. #define OBJ_set_attr OBJ_id_set,3L
  2612. #define SN_set_policy "set-policy"
  2613. #define NID_set_policy 516
  2614. #define OBJ_set_policy OBJ_id_set,5L
  2615. #define SN_set_certExt "set-certExt"
  2616. #define LN_set_certExt "certificate extensions"
  2617. #define NID_set_certExt 517
  2618. #define OBJ_set_certExt OBJ_id_set,7L
  2619. #define SN_set_brand "set-brand"
  2620. #define NID_set_brand 518
  2621. #define OBJ_set_brand OBJ_id_set,8L
  2622. #define SN_setct_PANData "setct-PANData"
  2623. #define NID_setct_PANData 519
  2624. #define OBJ_setct_PANData OBJ_set_ctype,0L
  2625. #define SN_setct_PANToken "setct-PANToken"
  2626. #define NID_setct_PANToken 520
  2627. #define OBJ_setct_PANToken OBJ_set_ctype,1L
  2628. #define SN_setct_PANOnly "setct-PANOnly"
  2629. #define NID_setct_PANOnly 521
  2630. #define OBJ_setct_PANOnly OBJ_set_ctype,2L
  2631. #define SN_setct_OIData "setct-OIData"
  2632. #define NID_setct_OIData 522
  2633. #define OBJ_setct_OIData OBJ_set_ctype,3L
  2634. #define SN_setct_PI "setct-PI"
  2635. #define NID_setct_PI 523
  2636. #define OBJ_setct_PI OBJ_set_ctype,4L
  2637. #define SN_setct_PIData "setct-PIData"
  2638. #define NID_setct_PIData 524
  2639. #define OBJ_setct_PIData OBJ_set_ctype,5L
  2640. #define SN_setct_PIDataUnsigned "setct-PIDataUnsigned"
  2641. #define NID_setct_PIDataUnsigned 525
  2642. #define OBJ_setct_PIDataUnsigned OBJ_set_ctype,6L
  2643. #define SN_setct_HODInput "setct-HODInput"
  2644. #define NID_setct_HODInput 526
  2645. #define OBJ_setct_HODInput OBJ_set_ctype,7L
  2646. #define SN_setct_AuthResBaggage "setct-AuthResBaggage"
  2647. #define NID_setct_AuthResBaggage 527
  2648. #define OBJ_setct_AuthResBaggage OBJ_set_ctype,8L
  2649. #define SN_setct_AuthRevReqBaggage "setct-AuthRevReqBaggage"
  2650. #define NID_setct_AuthRevReqBaggage 528
  2651. #define OBJ_setct_AuthRevReqBaggage OBJ_set_ctype,9L
  2652. #define SN_setct_AuthRevResBaggage "setct-AuthRevResBaggage"
  2653. #define NID_setct_AuthRevResBaggage 529
  2654. #define OBJ_setct_AuthRevResBaggage OBJ_set_ctype,10L
  2655. #define SN_setct_CapTokenSeq "setct-CapTokenSeq"
  2656. #define NID_setct_CapTokenSeq 530
  2657. #define OBJ_setct_CapTokenSeq OBJ_set_ctype,11L
  2658. #define SN_setct_PInitResData "setct-PInitResData"
  2659. #define NID_setct_PInitResData 531
  2660. #define OBJ_setct_PInitResData OBJ_set_ctype,12L
  2661. #define SN_setct_PI_TBS "setct-PI-TBS"
  2662. #define NID_setct_PI_TBS 532
  2663. #define OBJ_setct_PI_TBS OBJ_set_ctype,13L
  2664. #define SN_setct_PResData "setct-PResData"
  2665. #define NID_setct_PResData 533
  2666. #define OBJ_setct_PResData OBJ_set_ctype,14L
  2667. #define SN_setct_AuthReqTBS "setct-AuthReqTBS"
  2668. #define NID_setct_AuthReqTBS 534
  2669. #define OBJ_setct_AuthReqTBS OBJ_set_ctype,16L
  2670. #define SN_setct_AuthResTBS "setct-AuthResTBS"
  2671. #define NID_setct_AuthResTBS 535
  2672. #define OBJ_setct_AuthResTBS OBJ_set_ctype,17L
  2673. #define SN_setct_AuthResTBSX "setct-AuthResTBSX"
  2674. #define NID_setct_AuthResTBSX 536
  2675. #define OBJ_setct_AuthResTBSX OBJ_set_ctype,18L
  2676. #define SN_setct_AuthTokenTBS "setct-AuthTokenTBS"
  2677. #define NID_setct_AuthTokenTBS 537
  2678. #define OBJ_setct_AuthTokenTBS OBJ_set_ctype,19L
  2679. #define SN_setct_CapTokenData "setct-CapTokenData"
  2680. #define NID_setct_CapTokenData 538
  2681. #define OBJ_setct_CapTokenData OBJ_set_ctype,20L
  2682. #define SN_setct_CapTokenTBS "setct-CapTokenTBS"
  2683. #define NID_setct_CapTokenTBS 539
  2684. #define OBJ_setct_CapTokenTBS OBJ_set_ctype,21L
  2685. #define SN_setct_AcqCardCodeMsg "setct-AcqCardCodeMsg"
  2686. #define NID_setct_AcqCardCodeMsg 540
  2687. #define OBJ_setct_AcqCardCodeMsg OBJ_set_ctype,22L
  2688. #define SN_setct_AuthRevReqTBS "setct-AuthRevReqTBS"
  2689. #define NID_setct_AuthRevReqTBS 541
  2690. #define OBJ_setct_AuthRevReqTBS OBJ_set_ctype,23L
  2691. #define SN_setct_AuthRevResData "setct-AuthRevResData"
  2692. #define NID_setct_AuthRevResData 542
  2693. #define OBJ_setct_AuthRevResData OBJ_set_ctype,24L
  2694. #define SN_setct_AuthRevResTBS "setct-AuthRevResTBS"
  2695. #define NID_setct_AuthRevResTBS 543
  2696. #define OBJ_setct_AuthRevResTBS OBJ_set_ctype,25L
  2697. #define SN_setct_CapReqTBS "setct-CapReqTBS"
  2698. #define NID_setct_CapReqTBS 544
  2699. #define OBJ_setct_CapReqTBS OBJ_set_ctype,26L
  2700. #define SN_setct_CapReqTBSX "setct-CapReqTBSX"
  2701. #define NID_setct_CapReqTBSX 545
  2702. #define OBJ_setct_CapReqTBSX OBJ_set_ctype,27L
  2703. #define SN_setct_CapResData "setct-CapResData"
  2704. #define NID_setct_CapResData 546
  2705. #define OBJ_setct_CapResData OBJ_set_ctype,28L
  2706. #define SN_setct_CapRevReqTBS "setct-CapRevReqTBS"
  2707. #define NID_setct_CapRevReqTBS 547
  2708. #define OBJ_setct_CapRevReqTBS OBJ_set_ctype,29L
  2709. #define SN_setct_CapRevReqTBSX "setct-CapRevReqTBSX"
  2710. #define NID_setct_CapRevReqTBSX 548
  2711. #define OBJ_setct_CapRevReqTBSX OBJ_set_ctype,30L
  2712. #define SN_setct_CapRevResData "setct-CapRevResData"
  2713. #define NID_setct_CapRevResData 549
  2714. #define OBJ_setct_CapRevResData OBJ_set_ctype,31L
  2715. #define SN_setct_CredReqTBS "setct-CredReqTBS"
  2716. #define NID_setct_CredReqTBS 550
  2717. #define OBJ_setct_CredReqTBS OBJ_set_ctype,32L
  2718. #define SN_setct_CredReqTBSX "setct-CredReqTBSX"
  2719. #define NID_setct_CredReqTBSX 551
  2720. #define OBJ_setct_CredReqTBSX OBJ_set_ctype,33L
  2721. #define SN_setct_CredResData "setct-CredResData"
  2722. #define NID_setct_CredResData 552
  2723. #define OBJ_setct_CredResData OBJ_set_ctype,34L
  2724. #define SN_setct_CredRevReqTBS "setct-CredRevReqTBS"
  2725. #define NID_setct_CredRevReqTBS 553
  2726. #define OBJ_setct_CredRevReqTBS OBJ_set_ctype,35L
  2727. #define SN_setct_CredRevReqTBSX "setct-CredRevReqTBSX"
  2728. #define NID_setct_CredRevReqTBSX 554
  2729. #define OBJ_setct_CredRevReqTBSX OBJ_set_ctype,36L
  2730. #define SN_setct_CredRevResData "setct-CredRevResData"
  2731. #define NID_setct_CredRevResData 555
  2732. #define OBJ_setct_CredRevResData OBJ_set_ctype,37L
  2733. #define SN_setct_PCertReqData "setct-PCertReqData"
  2734. #define NID_setct_PCertReqData 556
  2735. #define OBJ_setct_PCertReqData OBJ_set_ctype,38L
  2736. #define SN_setct_PCertResTBS "setct-PCertResTBS"
  2737. #define NID_setct_PCertResTBS 557
  2738. #define OBJ_setct_PCertResTBS OBJ_set_ctype,39L
  2739. #define SN_setct_BatchAdminReqData "setct-BatchAdminReqData"
  2740. #define NID_setct_BatchAdminReqData 558
  2741. #define OBJ_setct_BatchAdminReqData OBJ_set_ctype,40L
  2742. #define SN_setct_BatchAdminResData "setct-BatchAdminResData"
  2743. #define NID_setct_BatchAdminResData 559
  2744. #define OBJ_setct_BatchAdminResData OBJ_set_ctype,41L
  2745. #define SN_setct_CardCInitResTBS "setct-CardCInitResTBS"
  2746. #define NID_setct_CardCInitResTBS 560
  2747. #define OBJ_setct_CardCInitResTBS OBJ_set_ctype,42L
  2748. #define SN_setct_MeAqCInitResTBS "setct-MeAqCInitResTBS"
  2749. #define NID_setct_MeAqCInitResTBS 561
  2750. #define OBJ_setct_MeAqCInitResTBS OBJ_set_ctype,43L
  2751. #define SN_setct_RegFormResTBS "setct-RegFormResTBS"
  2752. #define NID_setct_RegFormResTBS 562
  2753. #define OBJ_setct_RegFormResTBS OBJ_set_ctype,44L
  2754. #define SN_setct_CertReqData "setct-CertReqData"
  2755. #define NID_setct_CertReqData 563
  2756. #define OBJ_setct_CertReqData OBJ_set_ctype,45L
  2757. #define SN_setct_CertReqTBS "setct-CertReqTBS"
  2758. #define NID_setct_CertReqTBS 564
  2759. #define OBJ_setct_CertReqTBS OBJ_set_ctype,46L
  2760. #define SN_setct_CertResData "setct-CertResData"
  2761. #define NID_setct_CertResData 565
  2762. #define OBJ_setct_CertResData OBJ_set_ctype,47L
  2763. #define SN_setct_CertInqReqTBS "setct-CertInqReqTBS"
  2764. #define NID_setct_CertInqReqTBS 566
  2765. #define OBJ_setct_CertInqReqTBS OBJ_set_ctype,48L
  2766. #define SN_setct_ErrorTBS "setct-ErrorTBS"
  2767. #define NID_setct_ErrorTBS 567
  2768. #define OBJ_setct_ErrorTBS OBJ_set_ctype,49L
  2769. #define SN_setct_PIDualSignedTBE "setct-PIDualSignedTBE"
  2770. #define NID_setct_PIDualSignedTBE 568
  2771. #define OBJ_setct_PIDualSignedTBE OBJ_set_ctype,50L
  2772. #define SN_setct_PIUnsignedTBE "setct-PIUnsignedTBE"
  2773. #define NID_setct_PIUnsignedTBE 569
  2774. #define OBJ_setct_PIUnsignedTBE OBJ_set_ctype,51L
  2775. #define SN_setct_AuthReqTBE "setct-AuthReqTBE"
  2776. #define NID_setct_AuthReqTBE 570
  2777. #define OBJ_setct_AuthReqTBE OBJ_set_ctype,52L
  2778. #define SN_setct_AuthResTBE "setct-AuthResTBE"
  2779. #define NID_setct_AuthResTBE 571
  2780. #define OBJ_setct_AuthResTBE OBJ_set_ctype,53L
  2781. #define SN_setct_AuthResTBEX "setct-AuthResTBEX"
  2782. #define NID_setct_AuthResTBEX 572
  2783. #define OBJ_setct_AuthResTBEX OBJ_set_ctype,54L
  2784. #define SN_setct_AuthTokenTBE "setct-AuthTokenTBE"
  2785. #define NID_setct_AuthTokenTBE 573
  2786. #define OBJ_setct_AuthTokenTBE OBJ_set_ctype,55L
  2787. #define SN_setct_CapTokenTBE "setct-CapTokenTBE"
  2788. #define NID_setct_CapTokenTBE 574
  2789. #define OBJ_setct_CapTokenTBE OBJ_set_ctype,56L
  2790. #define SN_setct_CapTokenTBEX "setct-CapTokenTBEX"
  2791. #define NID_setct_CapTokenTBEX 575
  2792. #define OBJ_setct_CapTokenTBEX OBJ_set_ctype,57L
  2793. #define SN_setct_AcqCardCodeMsgTBE "setct-AcqCardCodeMsgTBE"
  2794. #define NID_setct_AcqCardCodeMsgTBE 576
  2795. #define OBJ_setct_AcqCardCodeMsgTBE OBJ_set_ctype,58L
  2796. #define SN_setct_AuthRevReqTBE "setct-AuthRevReqTBE"
  2797. #define NID_setct_AuthRevReqTBE 577
  2798. #define OBJ_setct_AuthRevReqTBE OBJ_set_ctype,59L
  2799. #define SN_setct_AuthRevResTBE "setct-AuthRevResTBE"
  2800. #define NID_setct_AuthRevResTBE 578
  2801. #define OBJ_setct_AuthRevResTBE OBJ_set_ctype,60L
  2802. #define SN_setct_AuthRevResTBEB "setct-AuthRevResTBEB"
  2803. #define NID_setct_AuthRevResTBEB 579
  2804. #define OBJ_setct_AuthRevResTBEB OBJ_set_ctype,61L
  2805. #define SN_setct_CapReqTBE "setct-CapReqTBE"
  2806. #define NID_setct_CapReqTBE 580
  2807. #define OBJ_setct_CapReqTBE OBJ_set_ctype,62L
  2808. #define SN_setct_CapReqTBEX "setct-CapReqTBEX"
  2809. #define NID_setct_CapReqTBEX 581
  2810. #define OBJ_setct_CapReqTBEX OBJ_set_ctype,63L
  2811. #define SN_setct_CapResTBE "setct-CapResTBE"
  2812. #define NID_setct_CapResTBE 582
  2813. #define OBJ_setct_CapResTBE OBJ_set_ctype,64L
  2814. #define SN_setct_CapRevReqTBE "setct-CapRevReqTBE"
  2815. #define NID_setct_CapRevReqTBE 583
  2816. #define OBJ_setct_CapRevReqTBE OBJ_set_ctype,65L
  2817. #define SN_setct_CapRevReqTBEX "setct-CapRevReqTBEX"
  2818. #define NID_setct_CapRevReqTBEX 584
  2819. #define OBJ_setct_CapRevReqTBEX OBJ_set_ctype,66L
  2820. #define SN_setct_CapRevResTBE "setct-CapRevResTBE"
  2821. #define NID_setct_CapRevResTBE 585
  2822. #define OBJ_setct_CapRevResTBE OBJ_set_ctype,67L
  2823. #define SN_setct_CredReqTBE "setct-CredReqTBE"
  2824. #define NID_setct_CredReqTBE 586
  2825. #define OBJ_setct_CredReqTBE OBJ_set_ctype,68L
  2826. #define SN_setct_CredReqTBEX "setct-CredReqTBEX"
  2827. #define NID_setct_CredReqTBEX 587
  2828. #define OBJ_setct_CredReqTBEX OBJ_set_ctype,69L
  2829. #define SN_setct_CredResTBE "setct-CredResTBE"
  2830. #define NID_setct_CredResTBE 588
  2831. #define OBJ_setct_CredResTBE OBJ_set_ctype,70L
  2832. #define SN_setct_CredRevReqTBE "setct-CredRevReqTBE"
  2833. #define NID_setct_CredRevReqTBE 589
  2834. #define OBJ_setct_CredRevReqTBE OBJ_set_ctype,71L
  2835. #define SN_setct_CredRevReqTBEX "setct-CredRevReqTBEX"
  2836. #define NID_setct_CredRevReqTBEX 590
  2837. #define OBJ_setct_CredRevReqTBEX OBJ_set_ctype,72L
  2838. #define SN_setct_CredRevResTBE "setct-CredRevResTBE"
  2839. #define NID_setct_CredRevResTBE 591
  2840. #define OBJ_setct_CredRevResTBE OBJ_set_ctype,73L
  2841. #define SN_setct_BatchAdminReqTBE "setct-BatchAdminReqTBE"
  2842. #define NID_setct_BatchAdminReqTBE 592
  2843. #define OBJ_setct_BatchAdminReqTBE OBJ_set_ctype,74L
  2844. #define SN_setct_BatchAdminResTBE "setct-BatchAdminResTBE"
  2845. #define NID_setct_BatchAdminResTBE 593
  2846. #define OBJ_setct_BatchAdminResTBE OBJ_set_ctype,75L
  2847. #define SN_setct_RegFormReqTBE "setct-RegFormReqTBE"
  2848. #define NID_setct_RegFormReqTBE 594
  2849. #define OBJ_setct_RegFormReqTBE OBJ_set_ctype,76L
  2850. #define SN_setct_CertReqTBE "setct-CertReqTBE"
  2851. #define NID_setct_CertReqTBE 595
  2852. #define OBJ_setct_CertReqTBE OBJ_set_ctype,77L
  2853. #define SN_setct_CertReqTBEX "setct-CertReqTBEX"
  2854. #define NID_setct_CertReqTBEX 596
  2855. #define OBJ_setct_CertReqTBEX OBJ_set_ctype,78L
  2856. #define SN_setct_CertResTBE "setct-CertResTBE"
  2857. #define NID_setct_CertResTBE 597
  2858. #define OBJ_setct_CertResTBE OBJ_set_ctype,79L
  2859. #define SN_setct_CRLNotificationTBS "setct-CRLNotificationTBS"
  2860. #define NID_setct_CRLNotificationTBS 598
  2861. #define OBJ_setct_CRLNotificationTBS OBJ_set_ctype,80L
  2862. #define SN_setct_CRLNotificationResTBS "setct-CRLNotificationResTBS"
  2863. #define NID_setct_CRLNotificationResTBS 599
  2864. #define OBJ_setct_CRLNotificationResTBS OBJ_set_ctype,81L
  2865. #define SN_setct_BCIDistributionTBS "setct-BCIDistributionTBS"
  2866. #define NID_setct_BCIDistributionTBS 600
  2867. #define OBJ_setct_BCIDistributionTBS OBJ_set_ctype,82L
  2868. #define SN_setext_genCrypt "setext-genCrypt"
  2869. #define LN_setext_genCrypt "generic cryptogram"
  2870. #define NID_setext_genCrypt 601
  2871. #define OBJ_setext_genCrypt OBJ_set_msgExt,1L
  2872. #define SN_setext_miAuth "setext-miAuth"
  2873. #define LN_setext_miAuth "merchant initiated auth"
  2874. #define NID_setext_miAuth 602
  2875. #define OBJ_setext_miAuth OBJ_set_msgExt,3L
  2876. #define SN_setext_pinSecure "setext-pinSecure"
  2877. #define NID_setext_pinSecure 603
  2878. #define OBJ_setext_pinSecure OBJ_set_msgExt,4L
  2879. #define SN_setext_pinAny "setext-pinAny"
  2880. #define NID_setext_pinAny 604
  2881. #define OBJ_setext_pinAny OBJ_set_msgExt,5L
  2882. #define SN_setext_track2 "setext-track2"
  2883. #define NID_setext_track2 605
  2884. #define OBJ_setext_track2 OBJ_set_msgExt,7L
  2885. #define SN_setext_cv "setext-cv"
  2886. #define LN_setext_cv "additional verification"
  2887. #define NID_setext_cv 606
  2888. #define OBJ_setext_cv OBJ_set_msgExt,8L
  2889. #define SN_set_policy_root "set-policy-root"
  2890. #define NID_set_policy_root 607
  2891. #define OBJ_set_policy_root OBJ_set_policy,0L
  2892. #define SN_setCext_hashedRoot "setCext-hashedRoot"
  2893. #define NID_setCext_hashedRoot 608
  2894. #define OBJ_setCext_hashedRoot OBJ_set_certExt,0L
  2895. #define SN_setCext_certType "setCext-certType"
  2896. #define NID_setCext_certType 609
  2897. #define OBJ_setCext_certType OBJ_set_certExt,1L
  2898. #define SN_setCext_merchData "setCext-merchData"
  2899. #define NID_setCext_merchData 610
  2900. #define OBJ_setCext_merchData OBJ_set_certExt,2L
  2901. #define SN_setCext_cCertRequired "setCext-cCertRequired"
  2902. #define NID_setCext_cCertRequired 611
  2903. #define OBJ_setCext_cCertRequired OBJ_set_certExt,3L
  2904. #define SN_setCext_tunneling "setCext-tunneling"
  2905. #define NID_setCext_tunneling 612
  2906. #define OBJ_setCext_tunneling OBJ_set_certExt,4L
  2907. #define SN_setCext_setExt "setCext-setExt"
  2908. #define NID_setCext_setExt 613
  2909. #define OBJ_setCext_setExt OBJ_set_certExt,5L
  2910. #define SN_setCext_setQualf "setCext-setQualf"
  2911. #define NID_setCext_setQualf 614
  2912. #define OBJ_setCext_setQualf OBJ_set_certExt,6L
  2913. #define SN_setCext_PGWYcapabilities "setCext-PGWYcapabilities"
  2914. #define NID_setCext_PGWYcapabilities 615
  2915. #define OBJ_setCext_PGWYcapabilities OBJ_set_certExt,7L
  2916. #define SN_setCext_TokenIdentifier "setCext-TokenIdentifier"
  2917. #define NID_setCext_TokenIdentifier 616
  2918. #define OBJ_setCext_TokenIdentifier OBJ_set_certExt,8L
  2919. #define SN_setCext_Track2Data "setCext-Track2Data"
  2920. #define NID_setCext_Track2Data 617
  2921. #define OBJ_setCext_Track2Data OBJ_set_certExt,9L
  2922. #define SN_setCext_TokenType "setCext-TokenType"
  2923. #define NID_setCext_TokenType 618
  2924. #define OBJ_setCext_TokenType OBJ_set_certExt,10L
  2925. #define SN_setCext_IssuerCapabilities "setCext-IssuerCapabilities"
  2926. #define NID_setCext_IssuerCapabilities 619
  2927. #define OBJ_setCext_IssuerCapabilities OBJ_set_certExt,11L
  2928. #define SN_setAttr_Cert "setAttr-Cert"
  2929. #define NID_setAttr_Cert 620
  2930. #define OBJ_setAttr_Cert OBJ_set_attr,0L
  2931. #define SN_setAttr_PGWYcap "setAttr-PGWYcap"
  2932. #define LN_setAttr_PGWYcap "payment gateway capabilities"
  2933. #define NID_setAttr_PGWYcap 621
  2934. #define OBJ_setAttr_PGWYcap OBJ_set_attr,1L
  2935. #define SN_setAttr_TokenType "setAttr-TokenType"
  2936. #define NID_setAttr_TokenType 622
  2937. #define OBJ_setAttr_TokenType OBJ_set_attr,2L
  2938. #define SN_setAttr_IssCap "setAttr-IssCap"
  2939. #define LN_setAttr_IssCap "issuer capabilities"
  2940. #define NID_setAttr_IssCap 623
  2941. #define OBJ_setAttr_IssCap OBJ_set_attr,3L
  2942. #define SN_set_rootKeyThumb "set-rootKeyThumb"
  2943. #define NID_set_rootKeyThumb 624
  2944. #define OBJ_set_rootKeyThumb OBJ_setAttr_Cert,0L
  2945. #define SN_set_addPolicy "set-addPolicy"
  2946. #define NID_set_addPolicy 625
  2947. #define OBJ_set_addPolicy OBJ_setAttr_Cert,1L
  2948. #define SN_setAttr_Token_EMV "setAttr-Token-EMV"
  2949. #define NID_setAttr_Token_EMV 626
  2950. #define OBJ_setAttr_Token_EMV OBJ_setAttr_TokenType,1L
  2951. #define SN_setAttr_Token_B0Prime "setAttr-Token-B0Prime"
  2952. #define NID_setAttr_Token_B0Prime 627
  2953. #define OBJ_setAttr_Token_B0Prime OBJ_setAttr_TokenType,2L
  2954. #define SN_setAttr_IssCap_CVM "setAttr-IssCap-CVM"
  2955. #define NID_setAttr_IssCap_CVM 628
  2956. #define OBJ_setAttr_IssCap_CVM OBJ_setAttr_IssCap,3L
  2957. #define SN_setAttr_IssCap_T2 "setAttr-IssCap-T2"
  2958. #define NID_setAttr_IssCap_T2 629
  2959. #define OBJ_setAttr_IssCap_T2 OBJ_setAttr_IssCap,4L
  2960. #define SN_setAttr_IssCap_Sig "setAttr-IssCap-Sig"
  2961. #define NID_setAttr_IssCap_Sig 630
  2962. #define OBJ_setAttr_IssCap_Sig OBJ_setAttr_IssCap,5L
  2963. #define SN_setAttr_GenCryptgrm "setAttr-GenCryptgrm"
  2964. #define LN_setAttr_GenCryptgrm "generate cryptogram"
  2965. #define NID_setAttr_GenCryptgrm 631
  2966. #define OBJ_setAttr_GenCryptgrm OBJ_setAttr_IssCap_CVM,1L
  2967. #define SN_setAttr_T2Enc "setAttr-T2Enc"
  2968. #define LN_setAttr_T2Enc "encrypted track 2"
  2969. #define NID_setAttr_T2Enc 632
  2970. #define OBJ_setAttr_T2Enc OBJ_setAttr_IssCap_T2,1L
  2971. #define SN_setAttr_T2cleartxt "setAttr-T2cleartxt"
  2972. #define LN_setAttr_T2cleartxt "cleartext track 2"
  2973. #define NID_setAttr_T2cleartxt 633
  2974. #define OBJ_setAttr_T2cleartxt OBJ_setAttr_IssCap_T2,2L
  2975. #define SN_setAttr_TokICCsig "setAttr-TokICCsig"
  2976. #define LN_setAttr_TokICCsig "ICC or token signature"
  2977. #define NID_setAttr_TokICCsig 634
  2978. #define OBJ_setAttr_TokICCsig OBJ_setAttr_IssCap_Sig,1L
  2979. #define SN_setAttr_SecDevSig "setAttr-SecDevSig"
  2980. #define LN_setAttr_SecDevSig "secure device signature"
  2981. #define NID_setAttr_SecDevSig 635
  2982. #define OBJ_setAttr_SecDevSig OBJ_setAttr_IssCap_Sig,2L
  2983. #define SN_set_brand_IATA_ATA "set-brand-IATA-ATA"
  2984. #define NID_set_brand_IATA_ATA 636
  2985. #define OBJ_set_brand_IATA_ATA OBJ_set_brand,1L
  2986. #define SN_set_brand_Diners "set-brand-Diners"
  2987. #define NID_set_brand_Diners 637
  2988. #define OBJ_set_brand_Diners OBJ_set_brand,30L
  2989. #define SN_set_brand_AmericanExpress "set-brand-AmericanExpress"
  2990. #define NID_set_brand_AmericanExpress 638
  2991. #define OBJ_set_brand_AmericanExpress OBJ_set_brand,34L
  2992. #define SN_set_brand_JCB "set-brand-JCB"
  2993. #define NID_set_brand_JCB 639
  2994. #define OBJ_set_brand_JCB OBJ_set_brand,35L
  2995. #define SN_set_brand_Visa "set-brand-Visa"
  2996. #define NID_set_brand_Visa 640
  2997. #define OBJ_set_brand_Visa OBJ_set_brand,4L
  2998. #define SN_set_brand_MasterCard "set-brand-MasterCard"
  2999. #define NID_set_brand_MasterCard 641
  3000. #define OBJ_set_brand_MasterCard OBJ_set_brand,5L
  3001. #define SN_set_brand_Novus "set-brand-Novus"
  3002. #define NID_set_brand_Novus 642
  3003. #define OBJ_set_brand_Novus OBJ_set_brand,6011L
  3004. #define SN_des_cdmf "DES-CDMF"
  3005. #define LN_des_cdmf "des-cdmf"
  3006. #define NID_des_cdmf 643
  3007. #define OBJ_des_cdmf OBJ_rsadsi,3L,10L
  3008. #define SN_rsaOAEPEncryptionSET "rsaOAEPEncryptionSET"
  3009. #define NID_rsaOAEPEncryptionSET 644
  3010. #define OBJ_rsaOAEPEncryptionSET OBJ_rsadsi,1L,1L,6L
  3011. #define SN_ipsec3 "Oakley-EC2N-3"
  3012. #define LN_ipsec3 "ipsec3"
  3013. #define NID_ipsec3 749
  3014. #define SN_ipsec4 "Oakley-EC2N-4"
  3015. #define LN_ipsec4 "ipsec4"
  3016. #define NID_ipsec4 750
  3017. #define SN_whirlpool "whirlpool"
  3018. #define NID_whirlpool 804
  3019. #define OBJ_whirlpool OBJ_iso,0L,10118L,3L,0L,55L
  3020. #define SN_cryptopro "cryptopro"
  3021. #define NID_cryptopro 805
  3022. #define OBJ_cryptopro OBJ_member_body,643L,2L,2L
  3023. #define SN_cryptocom "cryptocom"
  3024. #define NID_cryptocom 806
  3025. #define OBJ_cryptocom OBJ_member_body,643L,2L,9L
  3026. #define SN_id_tc26 "id-tc26"
  3027. #define NID_id_tc26 974
  3028. #define OBJ_id_tc26 OBJ_member_body,643L,7L,1L
  3029. #define SN_id_GostR3411_94_with_GostR3410_2001 "id-GostR3411-94-with-GostR3410-2001"
  3030. #define LN_id_GostR3411_94_with_GostR3410_2001 "GOST R 34.11-94 with GOST R 34.10-2001"
  3031. #define NID_id_GostR3411_94_with_GostR3410_2001 807
  3032. #define OBJ_id_GostR3411_94_with_GostR3410_2001 OBJ_cryptopro,3L
  3033. #define SN_id_GostR3411_94_with_GostR3410_94 "id-GostR3411-94-with-GostR3410-94"
  3034. #define LN_id_GostR3411_94_with_GostR3410_94 "GOST R 34.11-94 with GOST R 34.10-94"
  3035. #define NID_id_GostR3411_94_with_GostR3410_94 808
  3036. #define OBJ_id_GostR3411_94_with_GostR3410_94 OBJ_cryptopro,4L
  3037. #define SN_id_GostR3411_94 "md_gost94"
  3038. #define LN_id_GostR3411_94 "GOST R 34.11-94"
  3039. #define NID_id_GostR3411_94 809
  3040. #define OBJ_id_GostR3411_94 OBJ_cryptopro,9L
  3041. #define SN_id_HMACGostR3411_94 "id-HMACGostR3411-94"
  3042. #define LN_id_HMACGostR3411_94 "HMAC GOST 34.11-94"
  3043. #define NID_id_HMACGostR3411_94 810
  3044. #define OBJ_id_HMACGostR3411_94 OBJ_cryptopro,10L
  3045. #define SN_id_GostR3410_2001 "gost2001"
  3046. #define LN_id_GostR3410_2001 "GOST R 34.10-2001"
  3047. #define NID_id_GostR3410_2001 811
  3048. #define OBJ_id_GostR3410_2001 OBJ_cryptopro,19L
  3049. #define SN_id_GostR3410_94 "gost94"
  3050. #define LN_id_GostR3410_94 "GOST R 34.10-94"
  3051. #define NID_id_GostR3410_94 812
  3052. #define OBJ_id_GostR3410_94 OBJ_cryptopro,20L
  3053. #define SN_id_Gost28147_89 "gost89"
  3054. #define LN_id_Gost28147_89 "GOST 28147-89"
  3055. #define NID_id_Gost28147_89 813
  3056. #define OBJ_id_Gost28147_89 OBJ_cryptopro,21L
  3057. #define SN_gost89_cnt "gost89-cnt"
  3058. #define NID_gost89_cnt 814
  3059. #define SN_gost89_cnt_12 "gost89-cnt-12"
  3060. #define NID_gost89_cnt_12 975
  3061. #define SN_gost89_cbc "gost89-cbc"
  3062. #define NID_gost89_cbc 1009
  3063. #define SN_gost89_ecb "gost89-ecb"
  3064. #define NID_gost89_ecb 1010
  3065. #define SN_gost89_ctr "gost89-ctr"
  3066. #define NID_gost89_ctr 1011
  3067. #define SN_id_Gost28147_89_MAC "gost-mac"
  3068. #define LN_id_Gost28147_89_MAC "GOST 28147-89 MAC"
  3069. #define NID_id_Gost28147_89_MAC 815
  3070. #define OBJ_id_Gost28147_89_MAC OBJ_cryptopro,22L
  3071. #define SN_gost_mac_12 "gost-mac-12"
  3072. #define NID_gost_mac_12 976
  3073. #define SN_id_GostR3411_94_prf "prf-gostr3411-94"
  3074. #define LN_id_GostR3411_94_prf "GOST R 34.11-94 PRF"
  3075. #define NID_id_GostR3411_94_prf 816
  3076. #define OBJ_id_GostR3411_94_prf OBJ_cryptopro,23L
  3077. #define SN_id_GostR3410_2001DH "id-GostR3410-2001DH"
  3078. #define LN_id_GostR3410_2001DH "GOST R 34.10-2001 DH"
  3079. #define NID_id_GostR3410_2001DH 817
  3080. #define OBJ_id_GostR3410_2001DH OBJ_cryptopro,98L
  3081. #define SN_id_GostR3410_94DH "id-GostR3410-94DH"
  3082. #define LN_id_GostR3410_94DH "GOST R 34.10-94 DH"
  3083. #define NID_id_GostR3410_94DH 818
  3084. #define OBJ_id_GostR3410_94DH OBJ_cryptopro,99L
  3085. #define SN_id_Gost28147_89_CryptoPro_KeyMeshing "id-Gost28147-89-CryptoPro-KeyMeshing"
  3086. #define NID_id_Gost28147_89_CryptoPro_KeyMeshing 819
  3087. #define OBJ_id_Gost28147_89_CryptoPro_KeyMeshing OBJ_cryptopro,14L,1L
  3088. #define SN_id_Gost28147_89_None_KeyMeshing "id-Gost28147-89-None-KeyMeshing"
  3089. #define NID_id_Gost28147_89_None_KeyMeshing 820
  3090. #define OBJ_id_Gost28147_89_None_KeyMeshing OBJ_cryptopro,14L,0L
  3091. #define SN_id_GostR3411_94_TestParamSet "id-GostR3411-94-TestParamSet"
  3092. #define NID_id_GostR3411_94_TestParamSet 821
  3093. #define OBJ_id_GostR3411_94_TestParamSet OBJ_cryptopro,30L,0L
  3094. #define SN_id_GostR3411_94_CryptoProParamSet "id-GostR3411-94-CryptoProParamSet"
  3095. #define NID_id_GostR3411_94_CryptoProParamSet 822
  3096. #define OBJ_id_GostR3411_94_CryptoProParamSet OBJ_cryptopro,30L,1L
  3097. #define SN_id_Gost28147_89_TestParamSet "id-Gost28147-89-TestParamSet"
  3098. #define NID_id_Gost28147_89_TestParamSet 823
  3099. #define OBJ_id_Gost28147_89_TestParamSet OBJ_cryptopro,31L,0L
  3100. #define SN_id_Gost28147_89_CryptoPro_A_ParamSet "id-Gost28147-89-CryptoPro-A-ParamSet"
  3101. #define NID_id_Gost28147_89_CryptoPro_A_ParamSet 824
  3102. #define OBJ_id_Gost28147_89_CryptoPro_A_ParamSet OBJ_cryptopro,31L,1L
  3103. #define SN_id_Gost28147_89_CryptoPro_B_ParamSet "id-Gost28147-89-CryptoPro-B-ParamSet"
  3104. #define NID_id_Gost28147_89_CryptoPro_B_ParamSet 825
  3105. #define OBJ_id_Gost28147_89_CryptoPro_B_ParamSet OBJ_cryptopro,31L,2L
  3106. #define SN_id_Gost28147_89_CryptoPro_C_ParamSet "id-Gost28147-89-CryptoPro-C-ParamSet"
  3107. #define NID_id_Gost28147_89_CryptoPro_C_ParamSet 826
  3108. #define OBJ_id_Gost28147_89_CryptoPro_C_ParamSet OBJ_cryptopro,31L,3L
  3109. #define SN_id_Gost28147_89_CryptoPro_D_ParamSet "id-Gost28147-89-CryptoPro-D-ParamSet"
  3110. #define NID_id_Gost28147_89_CryptoPro_D_ParamSet 827
  3111. #define OBJ_id_Gost28147_89_CryptoPro_D_ParamSet OBJ_cryptopro,31L,4L
  3112. #define SN_id_Gost28147_89_CryptoPro_Oscar_1_1_ParamSet "id-Gost28147-89-CryptoPro-Oscar-1-1-ParamSet"
  3113. #define NID_id_Gost28147_89_CryptoPro_Oscar_1_1_ParamSet 828
  3114. #define OBJ_id_Gost28147_89_CryptoPro_Oscar_1_1_ParamSet OBJ_cryptopro,31L,5L
  3115. #define SN_id_Gost28147_89_CryptoPro_Oscar_1_0_ParamSet "id-Gost28147-89-CryptoPro-Oscar-1-0-ParamSet"
  3116. #define NID_id_Gost28147_89_CryptoPro_Oscar_1_0_ParamSet 829
  3117. #define OBJ_id_Gost28147_89_CryptoPro_Oscar_1_0_ParamSet OBJ_cryptopro,31L,6L
  3118. #define SN_id_Gost28147_89_CryptoPro_RIC_1_ParamSet "id-Gost28147-89-CryptoPro-RIC-1-ParamSet"
  3119. #define NID_id_Gost28147_89_CryptoPro_RIC_1_ParamSet 830
  3120. #define OBJ_id_Gost28147_89_CryptoPro_RIC_1_ParamSet OBJ_cryptopro,31L,7L
  3121. #define SN_id_GostR3410_94_TestParamSet "id-GostR3410-94-TestParamSet"
  3122. #define NID_id_GostR3410_94_TestParamSet 831
  3123. #define OBJ_id_GostR3410_94_TestParamSet OBJ_cryptopro,32L,0L
  3124. #define SN_id_GostR3410_94_CryptoPro_A_ParamSet "id-GostR3410-94-CryptoPro-A-ParamSet"
  3125. #define NID_id_GostR3410_94_CryptoPro_A_ParamSet 832
  3126. #define OBJ_id_GostR3410_94_CryptoPro_A_ParamSet OBJ_cryptopro,32L,2L
  3127. #define SN_id_GostR3410_94_CryptoPro_B_ParamSet "id-GostR3410-94-CryptoPro-B-ParamSet"
  3128. #define NID_id_GostR3410_94_CryptoPro_B_ParamSet 833
  3129. #define OBJ_id_GostR3410_94_CryptoPro_B_ParamSet OBJ_cryptopro,32L,3L
  3130. #define SN_id_GostR3410_94_CryptoPro_C_ParamSet "id-GostR3410-94-CryptoPro-C-ParamSet"
  3131. #define NID_id_GostR3410_94_CryptoPro_C_ParamSet 834
  3132. #define OBJ_id_GostR3410_94_CryptoPro_C_ParamSet OBJ_cryptopro,32L,4L
  3133. #define SN_id_GostR3410_94_CryptoPro_D_ParamSet "id-GostR3410-94-CryptoPro-D-ParamSet"
  3134. #define NID_id_GostR3410_94_CryptoPro_D_ParamSet 835
  3135. #define OBJ_id_GostR3410_94_CryptoPro_D_ParamSet OBJ_cryptopro,32L,5L
  3136. #define SN_id_GostR3410_94_CryptoPro_XchA_ParamSet "id-GostR3410-94-CryptoPro-XchA-ParamSet"
  3137. #define NID_id_GostR3410_94_CryptoPro_XchA_ParamSet 836
  3138. #define OBJ_id_GostR3410_94_CryptoPro_XchA_ParamSet OBJ_cryptopro,33L,1L
  3139. #define SN_id_GostR3410_94_CryptoPro_XchB_ParamSet "id-GostR3410-94-CryptoPro-XchB-ParamSet"
  3140. #define NID_id_GostR3410_94_CryptoPro_XchB_ParamSet 837
  3141. #define OBJ_id_GostR3410_94_CryptoPro_XchB_ParamSet OBJ_cryptopro,33L,2L
  3142. #define SN_id_GostR3410_94_CryptoPro_XchC_ParamSet "id-GostR3410-94-CryptoPro-XchC-ParamSet"
  3143. #define NID_id_GostR3410_94_CryptoPro_XchC_ParamSet 838
  3144. #define OBJ_id_GostR3410_94_CryptoPro_XchC_ParamSet OBJ_cryptopro,33L,3L
  3145. #define SN_id_GostR3410_2001_TestParamSet "id-GostR3410-2001-TestParamSet"
  3146. #define NID_id_GostR3410_2001_TestParamSet 839
  3147. #define OBJ_id_GostR3410_2001_TestParamSet OBJ_cryptopro,35L,0L
  3148. #define SN_id_GostR3410_2001_CryptoPro_A_ParamSet "id-GostR3410-2001-CryptoPro-A-ParamSet"
  3149. #define NID_id_GostR3410_2001_CryptoPro_A_ParamSet 840
  3150. #define OBJ_id_GostR3410_2001_CryptoPro_A_ParamSet OBJ_cryptopro,35L,1L
  3151. #define SN_id_GostR3410_2001_CryptoPro_B_ParamSet "id-GostR3410-2001-CryptoPro-B-ParamSet"
  3152. #define NID_id_GostR3410_2001_CryptoPro_B_ParamSet 841
  3153. #define OBJ_id_GostR3410_2001_CryptoPro_B_ParamSet OBJ_cryptopro,35L,2L
  3154. #define SN_id_GostR3410_2001_CryptoPro_C_ParamSet "id-GostR3410-2001-CryptoPro-C-ParamSet"
  3155. #define NID_id_GostR3410_2001_CryptoPro_C_ParamSet 842
  3156. #define OBJ_id_GostR3410_2001_CryptoPro_C_ParamSet OBJ_cryptopro,35L,3L
  3157. #define SN_id_GostR3410_2001_CryptoPro_XchA_ParamSet "id-GostR3410-2001-CryptoPro-XchA-ParamSet"
  3158. #define NID_id_GostR3410_2001_CryptoPro_XchA_ParamSet 843
  3159. #define OBJ_id_GostR3410_2001_CryptoPro_XchA_ParamSet OBJ_cryptopro,36L,0L
  3160. #define SN_id_GostR3410_2001_CryptoPro_XchB_ParamSet "id-GostR3410-2001-CryptoPro-XchB-ParamSet"
  3161. #define NID_id_GostR3410_2001_CryptoPro_XchB_ParamSet 844
  3162. #define OBJ_id_GostR3410_2001_CryptoPro_XchB_ParamSet OBJ_cryptopro,36L,1L
  3163. #define SN_id_GostR3410_94_a "id-GostR3410-94-a"
  3164. #define NID_id_GostR3410_94_a 845
  3165. #define OBJ_id_GostR3410_94_a OBJ_id_GostR3410_94,1L
  3166. #define SN_id_GostR3410_94_aBis "id-GostR3410-94-aBis"
  3167. #define NID_id_GostR3410_94_aBis 846
  3168. #define OBJ_id_GostR3410_94_aBis OBJ_id_GostR3410_94,2L
  3169. #define SN_id_GostR3410_94_b "id-GostR3410-94-b"
  3170. #define NID_id_GostR3410_94_b 847
  3171. #define OBJ_id_GostR3410_94_b OBJ_id_GostR3410_94,3L
  3172. #define SN_id_GostR3410_94_bBis "id-GostR3410-94-bBis"
  3173. #define NID_id_GostR3410_94_bBis 848
  3174. #define OBJ_id_GostR3410_94_bBis OBJ_id_GostR3410_94,4L
  3175. #define SN_id_Gost28147_89_cc "id-Gost28147-89-cc"
  3176. #define LN_id_Gost28147_89_cc "GOST 28147-89 Cryptocom ParamSet"
  3177. #define NID_id_Gost28147_89_cc 849
  3178. #define OBJ_id_Gost28147_89_cc OBJ_cryptocom,1L,6L,1L
  3179. #define SN_id_GostR3410_94_cc "gost94cc"
  3180. #define LN_id_GostR3410_94_cc "GOST 34.10-94 Cryptocom"
  3181. #define NID_id_GostR3410_94_cc 850
  3182. #define OBJ_id_GostR3410_94_cc OBJ_cryptocom,1L,5L,3L
  3183. #define SN_id_GostR3410_2001_cc "gost2001cc"
  3184. #define LN_id_GostR3410_2001_cc "GOST 34.10-2001 Cryptocom"
  3185. #define NID_id_GostR3410_2001_cc 851
  3186. #define OBJ_id_GostR3410_2001_cc OBJ_cryptocom,1L,5L,4L
  3187. #define SN_id_GostR3411_94_with_GostR3410_94_cc "id-GostR3411-94-with-GostR3410-94-cc"
  3188. #define LN_id_GostR3411_94_with_GostR3410_94_cc "GOST R 34.11-94 with GOST R 34.10-94 Cryptocom"
  3189. #define NID_id_GostR3411_94_with_GostR3410_94_cc 852
  3190. #define OBJ_id_GostR3411_94_with_GostR3410_94_cc OBJ_cryptocom,1L,3L,3L
  3191. #define SN_id_GostR3411_94_with_GostR3410_2001_cc "id-GostR3411-94-with-GostR3410-2001-cc"
  3192. #define LN_id_GostR3411_94_with_GostR3410_2001_cc "GOST R 34.11-94 with GOST R 34.10-2001 Cryptocom"
  3193. #define NID_id_GostR3411_94_with_GostR3410_2001_cc 853
  3194. #define OBJ_id_GostR3411_94_with_GostR3410_2001_cc OBJ_cryptocom,1L,3L,4L
  3195. #define SN_id_GostR3410_2001_ParamSet_cc "id-GostR3410-2001-ParamSet-cc"
  3196. #define LN_id_GostR3410_2001_ParamSet_cc "GOST R 3410-2001 Parameter Set Cryptocom"
  3197. #define NID_id_GostR3410_2001_ParamSet_cc 854
  3198. #define OBJ_id_GostR3410_2001_ParamSet_cc OBJ_cryptocom,1L,8L,1L
  3199. #define SN_id_tc26_algorithms "id-tc26-algorithms"
  3200. #define NID_id_tc26_algorithms 977
  3201. #define OBJ_id_tc26_algorithms OBJ_id_tc26,1L
  3202. #define SN_id_tc26_sign "id-tc26-sign"
  3203. #define NID_id_tc26_sign 978
  3204. #define OBJ_id_tc26_sign OBJ_id_tc26_algorithms,1L
  3205. #define SN_id_GostR3410_2012_256 "gost2012_256"
  3206. #define LN_id_GostR3410_2012_256 "GOST R 34.10-2012 with 256 bit modulus"
  3207. #define NID_id_GostR3410_2012_256 979
  3208. #define OBJ_id_GostR3410_2012_256 OBJ_id_tc26_sign,1L
  3209. #define SN_id_GostR3410_2012_512 "gost2012_512"
  3210. #define LN_id_GostR3410_2012_512 "GOST R 34.10-2012 with 512 bit modulus"
  3211. #define NID_id_GostR3410_2012_512 980
  3212. #define OBJ_id_GostR3410_2012_512 OBJ_id_tc26_sign,2L
  3213. #define SN_id_tc26_digest "id-tc26-digest"
  3214. #define NID_id_tc26_digest 981
  3215. #define OBJ_id_tc26_digest OBJ_id_tc26_algorithms,2L
  3216. #define SN_id_GostR3411_2012_256 "md_gost12_256"
  3217. #define LN_id_GostR3411_2012_256 "GOST R 34.11-2012 with 256 bit hash"
  3218. #define NID_id_GostR3411_2012_256 982
  3219. #define OBJ_id_GostR3411_2012_256 OBJ_id_tc26_digest,2L
  3220. #define SN_id_GostR3411_2012_512 "md_gost12_512"
  3221. #define LN_id_GostR3411_2012_512 "GOST R 34.11-2012 with 512 bit hash"
  3222. #define NID_id_GostR3411_2012_512 983
  3223. #define OBJ_id_GostR3411_2012_512 OBJ_id_tc26_digest,3L
  3224. #define SN_id_tc26_signwithdigest "id-tc26-signwithdigest"
  3225. #define NID_id_tc26_signwithdigest 984
  3226. #define OBJ_id_tc26_signwithdigest OBJ_id_tc26_algorithms,3L
  3227. #define SN_id_tc26_signwithdigest_gost3410_2012_256 "id-tc26-signwithdigest-gost3410-2012-256"
  3228. #define LN_id_tc26_signwithdigest_gost3410_2012_256 "GOST R 34.10-2012 with GOST R 34.11-2012 (256 bit)"
  3229. #define NID_id_tc26_signwithdigest_gost3410_2012_256 985
  3230. #define OBJ_id_tc26_signwithdigest_gost3410_2012_256 OBJ_id_tc26_signwithdigest,2L
  3231. #define SN_id_tc26_signwithdigest_gost3410_2012_512 "id-tc26-signwithdigest-gost3410-2012-512"
  3232. #define LN_id_tc26_signwithdigest_gost3410_2012_512 "GOST R 34.10-2012 with GOST R 34.11-2012 (512 bit)"
  3233. #define NID_id_tc26_signwithdigest_gost3410_2012_512 986
  3234. #define OBJ_id_tc26_signwithdigest_gost3410_2012_512 OBJ_id_tc26_signwithdigest,3L
  3235. #define SN_id_tc26_mac "id-tc26-mac"
  3236. #define NID_id_tc26_mac 987
  3237. #define OBJ_id_tc26_mac OBJ_id_tc26_algorithms,4L
  3238. #define SN_id_tc26_hmac_gost_3411_2012_256 "id-tc26-hmac-gost-3411-2012-256"
  3239. #define LN_id_tc26_hmac_gost_3411_2012_256 "HMAC GOST 34.11-2012 256 bit"
  3240. #define NID_id_tc26_hmac_gost_3411_2012_256 988
  3241. #define OBJ_id_tc26_hmac_gost_3411_2012_256 OBJ_id_tc26_mac,1L
  3242. #define SN_id_tc26_hmac_gost_3411_2012_512 "id-tc26-hmac-gost-3411-2012-512"
  3243. #define LN_id_tc26_hmac_gost_3411_2012_512 "HMAC GOST 34.11-2012 512 bit"
  3244. #define NID_id_tc26_hmac_gost_3411_2012_512 989
  3245. #define OBJ_id_tc26_hmac_gost_3411_2012_512 OBJ_id_tc26_mac,2L
  3246. #define SN_id_tc26_cipher "id-tc26-cipher"
  3247. #define NID_id_tc26_cipher 990
  3248. #define OBJ_id_tc26_cipher OBJ_id_tc26_algorithms,5L
  3249. #define SN_id_tc26_cipher_gostr3412_2015_magma "id-tc26-cipher-gostr3412-2015-magma"
  3250. #define NID_id_tc26_cipher_gostr3412_2015_magma 1173
  3251. #define OBJ_id_tc26_cipher_gostr3412_2015_magma OBJ_id_tc26_cipher,1L
  3252. #define SN_id_tc26_cipher_gostr3412_2015_magma_ctracpkm "id-tc26-cipher-gostr3412-2015-magma-ctracpkm"
  3253. #define NID_id_tc26_cipher_gostr3412_2015_magma_ctracpkm 1174
  3254. #define OBJ_id_tc26_cipher_gostr3412_2015_magma_ctracpkm OBJ_id_tc26_cipher_gostr3412_2015_magma,1L
  3255. #define SN_id_tc26_cipher_gostr3412_2015_magma_ctracpkm_omac "id-tc26-cipher-gostr3412-2015-magma-ctracpkm-omac"
  3256. #define NID_id_tc26_cipher_gostr3412_2015_magma_ctracpkm_omac 1175
  3257. #define OBJ_id_tc26_cipher_gostr3412_2015_magma_ctracpkm_omac OBJ_id_tc26_cipher_gostr3412_2015_magma,2L
  3258. #define SN_id_tc26_cipher_gostr3412_2015_kuznyechik "id-tc26-cipher-gostr3412-2015-kuznyechik"
  3259. #define NID_id_tc26_cipher_gostr3412_2015_kuznyechik 1176
  3260. #define OBJ_id_tc26_cipher_gostr3412_2015_kuznyechik OBJ_id_tc26_cipher,2L
  3261. #define SN_id_tc26_cipher_gostr3412_2015_kuznyechik_ctracpkm "id-tc26-cipher-gostr3412-2015-kuznyechik-ctracpkm"
  3262. #define NID_id_tc26_cipher_gostr3412_2015_kuznyechik_ctracpkm 1177
  3263. #define OBJ_id_tc26_cipher_gostr3412_2015_kuznyechik_ctracpkm OBJ_id_tc26_cipher_gostr3412_2015_kuznyechik,1L
  3264. #define SN_id_tc26_cipher_gostr3412_2015_kuznyechik_ctracpkm_omac "id-tc26-cipher-gostr3412-2015-kuznyechik-ctracpkm-omac"
  3265. #define NID_id_tc26_cipher_gostr3412_2015_kuznyechik_ctracpkm_omac 1178
  3266. #define OBJ_id_tc26_cipher_gostr3412_2015_kuznyechik_ctracpkm_omac OBJ_id_tc26_cipher_gostr3412_2015_kuznyechik,2L
  3267. #define SN_id_tc26_agreement "id-tc26-agreement"
  3268. #define NID_id_tc26_agreement 991
  3269. #define OBJ_id_tc26_agreement OBJ_id_tc26_algorithms,6L
  3270. #define SN_id_tc26_agreement_gost_3410_2012_256 "id-tc26-agreement-gost-3410-2012-256"
  3271. #define NID_id_tc26_agreement_gost_3410_2012_256 992
  3272. #define OBJ_id_tc26_agreement_gost_3410_2012_256 OBJ_id_tc26_agreement,1L
  3273. #define SN_id_tc26_agreement_gost_3410_2012_512 "id-tc26-agreement-gost-3410-2012-512"
  3274. #define NID_id_tc26_agreement_gost_3410_2012_512 993
  3275. #define OBJ_id_tc26_agreement_gost_3410_2012_512 OBJ_id_tc26_agreement,2L
  3276. #define SN_id_tc26_wrap "id-tc26-wrap"
  3277. #define NID_id_tc26_wrap 1179
  3278. #define OBJ_id_tc26_wrap OBJ_id_tc26_algorithms,7L
  3279. #define SN_id_tc26_wrap_gostr3412_2015_magma "id-tc26-wrap-gostr3412-2015-magma"
  3280. #define NID_id_tc26_wrap_gostr3412_2015_magma 1180
  3281. #define OBJ_id_tc26_wrap_gostr3412_2015_magma OBJ_id_tc26_wrap,1L
  3282. #define SN_id_tc26_wrap_gostr3412_2015_magma_kexp15 "id-tc26-wrap-gostr3412-2015-magma-kexp15"
  3283. #define NID_id_tc26_wrap_gostr3412_2015_magma_kexp15 1181
  3284. #define OBJ_id_tc26_wrap_gostr3412_2015_magma_kexp15 OBJ_id_tc26_wrap_gostr3412_2015_magma,1L
  3285. #define SN_id_tc26_wrap_gostr3412_2015_kuznyechik "id-tc26-wrap-gostr3412-2015-kuznyechik"
  3286. #define NID_id_tc26_wrap_gostr3412_2015_kuznyechik 1182
  3287. #define OBJ_id_tc26_wrap_gostr3412_2015_kuznyechik OBJ_id_tc26_wrap,2L
  3288. #define SN_id_tc26_wrap_gostr3412_2015_kuznyechik_kexp15 "id-tc26-wrap-gostr3412-2015-kuznyechik-kexp15"
  3289. #define NID_id_tc26_wrap_gostr3412_2015_kuznyechik_kexp15 1183
  3290. #define OBJ_id_tc26_wrap_gostr3412_2015_kuznyechik_kexp15 OBJ_id_tc26_wrap_gostr3412_2015_magma,1L
  3291. #define SN_id_tc26_constants "id-tc26-constants"
  3292. #define NID_id_tc26_constants 994
  3293. #define OBJ_id_tc26_constants OBJ_id_tc26,2L
  3294. #define SN_id_tc26_sign_constants "id-tc26-sign-constants"
  3295. #define NID_id_tc26_sign_constants 995
  3296. #define OBJ_id_tc26_sign_constants OBJ_id_tc26_constants,1L
  3297. #define SN_id_tc26_gost_3410_2012_256_constants "id-tc26-gost-3410-2012-256-constants"
  3298. #define NID_id_tc26_gost_3410_2012_256_constants 1147
  3299. #define OBJ_id_tc26_gost_3410_2012_256_constants OBJ_id_tc26_sign_constants,1L
  3300. #define SN_id_tc26_gost_3410_2012_256_paramSetA "id-tc26-gost-3410-2012-256-paramSetA"
  3301. #define LN_id_tc26_gost_3410_2012_256_paramSetA "GOST R 34.10-2012 (256 bit) ParamSet A"
  3302. #define NID_id_tc26_gost_3410_2012_256_paramSetA 1148
  3303. #define OBJ_id_tc26_gost_3410_2012_256_paramSetA OBJ_id_tc26_gost_3410_2012_256_constants,1L
  3304. #define SN_id_tc26_gost_3410_2012_256_paramSetB "id-tc26-gost-3410-2012-256-paramSetB"
  3305. #define LN_id_tc26_gost_3410_2012_256_paramSetB "GOST R 34.10-2012 (256 bit) ParamSet B"
  3306. #define NID_id_tc26_gost_3410_2012_256_paramSetB 1184
  3307. #define OBJ_id_tc26_gost_3410_2012_256_paramSetB OBJ_id_tc26_gost_3410_2012_256_constants,2L
  3308. #define SN_id_tc26_gost_3410_2012_256_paramSetC "id-tc26-gost-3410-2012-256-paramSetC"
  3309. #define LN_id_tc26_gost_3410_2012_256_paramSetC "GOST R 34.10-2012 (256 bit) ParamSet C"
  3310. #define NID_id_tc26_gost_3410_2012_256_paramSetC 1185
  3311. #define OBJ_id_tc26_gost_3410_2012_256_paramSetC OBJ_id_tc26_gost_3410_2012_256_constants,3L
  3312. #define SN_id_tc26_gost_3410_2012_256_paramSetD "id-tc26-gost-3410-2012-256-paramSetD"
  3313. #define LN_id_tc26_gost_3410_2012_256_paramSetD "GOST R 34.10-2012 (256 bit) ParamSet D"
  3314. #define NID_id_tc26_gost_3410_2012_256_paramSetD 1186
  3315. #define OBJ_id_tc26_gost_3410_2012_256_paramSetD OBJ_id_tc26_gost_3410_2012_256_constants,4L
  3316. #define SN_id_tc26_gost_3410_2012_512_constants "id-tc26-gost-3410-2012-512-constants"
  3317. #define NID_id_tc26_gost_3410_2012_512_constants 996
  3318. #define OBJ_id_tc26_gost_3410_2012_512_constants OBJ_id_tc26_sign_constants,2L
  3319. #define SN_id_tc26_gost_3410_2012_512_paramSetTest "id-tc26-gost-3410-2012-512-paramSetTest"
  3320. #define LN_id_tc26_gost_3410_2012_512_paramSetTest "GOST R 34.10-2012 (512 bit) testing parameter set"
  3321. #define NID_id_tc26_gost_3410_2012_512_paramSetTest 997
  3322. #define OBJ_id_tc26_gost_3410_2012_512_paramSetTest OBJ_id_tc26_gost_3410_2012_512_constants,0L
  3323. #define SN_id_tc26_gost_3410_2012_512_paramSetA "id-tc26-gost-3410-2012-512-paramSetA"
  3324. #define LN_id_tc26_gost_3410_2012_512_paramSetA "GOST R 34.10-2012 (512 bit) ParamSet A"
  3325. #define NID_id_tc26_gost_3410_2012_512_paramSetA 998
  3326. #define OBJ_id_tc26_gost_3410_2012_512_paramSetA OBJ_id_tc26_gost_3410_2012_512_constants,1L
  3327. #define SN_id_tc26_gost_3410_2012_512_paramSetB "id-tc26-gost-3410-2012-512-paramSetB"
  3328. #define LN_id_tc26_gost_3410_2012_512_paramSetB "GOST R 34.10-2012 (512 bit) ParamSet B"
  3329. #define NID_id_tc26_gost_3410_2012_512_paramSetB 999
  3330. #define OBJ_id_tc26_gost_3410_2012_512_paramSetB OBJ_id_tc26_gost_3410_2012_512_constants,2L
  3331. #define SN_id_tc26_gost_3410_2012_512_paramSetC "id-tc26-gost-3410-2012-512-paramSetC"
  3332. #define LN_id_tc26_gost_3410_2012_512_paramSetC "GOST R 34.10-2012 (512 bit) ParamSet C"
  3333. #define NID_id_tc26_gost_3410_2012_512_paramSetC 1149
  3334. #define OBJ_id_tc26_gost_3410_2012_512_paramSetC OBJ_id_tc26_gost_3410_2012_512_constants,3L
  3335. #define SN_id_tc26_digest_constants "id-tc26-digest-constants"
  3336. #define NID_id_tc26_digest_constants 1000
  3337. #define OBJ_id_tc26_digest_constants OBJ_id_tc26_constants,2L
  3338. #define SN_id_tc26_cipher_constants "id-tc26-cipher-constants"
  3339. #define NID_id_tc26_cipher_constants 1001
  3340. #define OBJ_id_tc26_cipher_constants OBJ_id_tc26_constants,5L
  3341. #define SN_id_tc26_gost_28147_constants "id-tc26-gost-28147-constants"
  3342. #define NID_id_tc26_gost_28147_constants 1002
  3343. #define OBJ_id_tc26_gost_28147_constants OBJ_id_tc26_cipher_constants,1L
  3344. #define SN_id_tc26_gost_28147_param_Z "id-tc26-gost-28147-param-Z"
  3345. #define LN_id_tc26_gost_28147_param_Z "GOST 28147-89 TC26 parameter set"
  3346. #define NID_id_tc26_gost_28147_param_Z 1003
  3347. #define OBJ_id_tc26_gost_28147_param_Z OBJ_id_tc26_gost_28147_constants,1L
  3348. #define SN_INN "INN"
  3349. #define LN_INN "INN"
  3350. #define NID_INN 1004
  3351. #define OBJ_INN OBJ_member_body,643L,3L,131L,1L,1L
  3352. #define SN_OGRN "OGRN"
  3353. #define LN_OGRN "OGRN"
  3354. #define NID_OGRN 1005
  3355. #define OBJ_OGRN OBJ_member_body,643L,100L,1L
  3356. #define SN_SNILS "SNILS"
  3357. #define LN_SNILS "SNILS"
  3358. #define NID_SNILS 1006
  3359. #define OBJ_SNILS OBJ_member_body,643L,100L,3L
  3360. #define SN_subjectSignTool "subjectSignTool"
  3361. #define LN_subjectSignTool "Signing Tool of Subject"
  3362. #define NID_subjectSignTool 1007
  3363. #define OBJ_subjectSignTool OBJ_member_body,643L,100L,111L
  3364. #define SN_issuerSignTool "issuerSignTool"
  3365. #define LN_issuerSignTool "Signing Tool of Issuer"
  3366. #define NID_issuerSignTool 1008
  3367. #define OBJ_issuerSignTool OBJ_member_body,643L,100L,112L
  3368. #define SN_grasshopper_ecb "grasshopper-ecb"
  3369. #define NID_grasshopper_ecb 1012
  3370. #define SN_grasshopper_ctr "grasshopper-ctr"
  3371. #define NID_grasshopper_ctr 1013
  3372. #define SN_grasshopper_ofb "grasshopper-ofb"
  3373. #define NID_grasshopper_ofb 1014
  3374. #define SN_grasshopper_cbc "grasshopper-cbc"
  3375. #define NID_grasshopper_cbc 1015
  3376. #define SN_grasshopper_cfb "grasshopper-cfb"
  3377. #define NID_grasshopper_cfb 1016
  3378. #define SN_grasshopper_mac "grasshopper-mac"
  3379. #define NID_grasshopper_mac 1017
  3380. #define SN_magma_ecb "magma-ecb"
  3381. #define NID_magma_ecb 1187
  3382. #define SN_magma_ctr "magma-ctr"
  3383. #define NID_magma_ctr 1188
  3384. #define SN_magma_ofb "magma-ofb"
  3385. #define NID_magma_ofb 1189
  3386. #define SN_magma_cbc "magma-cbc"
  3387. #define NID_magma_cbc 1190
  3388. #define SN_magma_cfb "magma-cfb"
  3389. #define NID_magma_cfb 1191
  3390. #define SN_magma_mac "magma-mac"
  3391. #define NID_magma_mac 1192
  3392. #define SN_camellia_128_cbc "CAMELLIA-128-CBC"
  3393. #define LN_camellia_128_cbc "camellia-128-cbc"
  3394. #define NID_camellia_128_cbc 751
  3395. #define OBJ_camellia_128_cbc 1L,2L,392L,200011L,61L,1L,1L,1L,2L
  3396. #define SN_camellia_192_cbc "CAMELLIA-192-CBC"
  3397. #define LN_camellia_192_cbc "camellia-192-cbc"
  3398. #define NID_camellia_192_cbc 752
  3399. #define OBJ_camellia_192_cbc 1L,2L,392L,200011L,61L,1L,1L,1L,3L
  3400. #define SN_camellia_256_cbc "CAMELLIA-256-CBC"
  3401. #define LN_camellia_256_cbc "camellia-256-cbc"
  3402. #define NID_camellia_256_cbc 753
  3403. #define OBJ_camellia_256_cbc 1L,2L,392L,200011L,61L,1L,1L,1L,4L
  3404. #define SN_id_camellia128_wrap "id-camellia128-wrap"
  3405. #define NID_id_camellia128_wrap 907
  3406. #define OBJ_id_camellia128_wrap 1L,2L,392L,200011L,61L,1L,1L,3L,2L
  3407. #define SN_id_camellia192_wrap "id-camellia192-wrap"
  3408. #define NID_id_camellia192_wrap 908
  3409. #define OBJ_id_camellia192_wrap 1L,2L,392L,200011L,61L,1L,1L,3L,3L
  3410. #define SN_id_camellia256_wrap "id-camellia256-wrap"
  3411. #define NID_id_camellia256_wrap 909
  3412. #define OBJ_id_camellia256_wrap 1L,2L,392L,200011L,61L,1L,1L,3L,4L
  3413. #define OBJ_ntt_ds 0L,3L,4401L,5L
  3414. #define OBJ_camellia OBJ_ntt_ds,3L,1L,9L
  3415. #define SN_camellia_128_ecb "CAMELLIA-128-ECB"
  3416. #define LN_camellia_128_ecb "camellia-128-ecb"
  3417. #define NID_camellia_128_ecb 754
  3418. #define OBJ_camellia_128_ecb OBJ_camellia,1L
  3419. #define SN_camellia_128_ofb128 "CAMELLIA-128-OFB"
  3420. #define LN_camellia_128_ofb128 "camellia-128-ofb"
  3421. #define NID_camellia_128_ofb128 766
  3422. #define OBJ_camellia_128_ofb128 OBJ_camellia,3L
  3423. #define SN_camellia_128_cfb128 "CAMELLIA-128-CFB"
  3424. #define LN_camellia_128_cfb128 "camellia-128-cfb"
  3425. #define NID_camellia_128_cfb128 757
  3426. #define OBJ_camellia_128_cfb128 OBJ_camellia,4L
  3427. #define SN_camellia_128_gcm "CAMELLIA-128-GCM"
  3428. #define LN_camellia_128_gcm "camellia-128-gcm"
  3429. #define NID_camellia_128_gcm 961
  3430. #define OBJ_camellia_128_gcm OBJ_camellia,6L
  3431. #define SN_camellia_128_ccm "CAMELLIA-128-CCM"
  3432. #define LN_camellia_128_ccm "camellia-128-ccm"
  3433. #define NID_camellia_128_ccm 962
  3434. #define OBJ_camellia_128_ccm OBJ_camellia,7L
  3435. #define SN_camellia_128_ctr "CAMELLIA-128-CTR"
  3436. #define LN_camellia_128_ctr "camellia-128-ctr"
  3437. #define NID_camellia_128_ctr 963
  3438. #define OBJ_camellia_128_ctr OBJ_camellia,9L
  3439. #define SN_camellia_128_cmac "CAMELLIA-128-CMAC"
  3440. #define LN_camellia_128_cmac "camellia-128-cmac"
  3441. #define NID_camellia_128_cmac 964
  3442. #define OBJ_camellia_128_cmac OBJ_camellia,10L
  3443. #define SN_camellia_192_ecb "CAMELLIA-192-ECB"
  3444. #define LN_camellia_192_ecb "camellia-192-ecb"
  3445. #define NID_camellia_192_ecb 755
  3446. #define OBJ_camellia_192_ecb OBJ_camellia,21L
  3447. #define SN_camellia_192_ofb128 "CAMELLIA-192-OFB"
  3448. #define LN_camellia_192_ofb128 "camellia-192-ofb"
  3449. #define NID_camellia_192_ofb128 767
  3450. #define OBJ_camellia_192_ofb128 OBJ_camellia,23L
  3451. #define SN_camellia_192_cfb128 "CAMELLIA-192-CFB"
  3452. #define LN_camellia_192_cfb128 "camellia-192-cfb"
  3453. #define NID_camellia_192_cfb128 758
  3454. #define OBJ_camellia_192_cfb128 OBJ_camellia,24L
  3455. #define SN_camellia_192_gcm "CAMELLIA-192-GCM"
  3456. #define LN_camellia_192_gcm "camellia-192-gcm"
  3457. #define NID_camellia_192_gcm 965
  3458. #define OBJ_camellia_192_gcm OBJ_camellia,26L
  3459. #define SN_camellia_192_ccm "CAMELLIA-192-CCM"
  3460. #define LN_camellia_192_ccm "camellia-192-ccm"
  3461. #define NID_camellia_192_ccm 966
  3462. #define OBJ_camellia_192_ccm OBJ_camellia,27L
  3463. #define SN_camellia_192_ctr "CAMELLIA-192-CTR"
  3464. #define LN_camellia_192_ctr "camellia-192-ctr"
  3465. #define NID_camellia_192_ctr 967
  3466. #define OBJ_camellia_192_ctr OBJ_camellia,29L
  3467. #define SN_camellia_192_cmac "CAMELLIA-192-CMAC"
  3468. #define LN_camellia_192_cmac "camellia-192-cmac"
  3469. #define NID_camellia_192_cmac 968
  3470. #define OBJ_camellia_192_cmac OBJ_camellia,30L
  3471. #define SN_camellia_256_ecb "CAMELLIA-256-ECB"
  3472. #define LN_camellia_256_ecb "camellia-256-ecb"
  3473. #define NID_camellia_256_ecb 756
  3474. #define OBJ_camellia_256_ecb OBJ_camellia,41L
  3475. #define SN_camellia_256_ofb128 "CAMELLIA-256-OFB"
  3476. #define LN_camellia_256_ofb128 "camellia-256-ofb"
  3477. #define NID_camellia_256_ofb128 768
  3478. #define OBJ_camellia_256_ofb128 OBJ_camellia,43L
  3479. #define SN_camellia_256_cfb128 "CAMELLIA-256-CFB"
  3480. #define LN_camellia_256_cfb128 "camellia-256-cfb"
  3481. #define NID_camellia_256_cfb128 759
  3482. #define OBJ_camellia_256_cfb128 OBJ_camellia,44L
  3483. #define SN_camellia_256_gcm "CAMELLIA-256-GCM"
  3484. #define LN_camellia_256_gcm "camellia-256-gcm"
  3485. #define NID_camellia_256_gcm 969
  3486. #define OBJ_camellia_256_gcm OBJ_camellia,46L
  3487. #define SN_camellia_256_ccm "CAMELLIA-256-CCM"
  3488. #define LN_camellia_256_ccm "camellia-256-ccm"
  3489. #define NID_camellia_256_ccm 970
  3490. #define OBJ_camellia_256_ccm OBJ_camellia,47L
  3491. #define SN_camellia_256_ctr "CAMELLIA-256-CTR"
  3492. #define LN_camellia_256_ctr "camellia-256-ctr"
  3493. #define NID_camellia_256_ctr 971
  3494. #define OBJ_camellia_256_ctr OBJ_camellia,49L
  3495. #define SN_camellia_256_cmac "CAMELLIA-256-CMAC"
  3496. #define LN_camellia_256_cmac "camellia-256-cmac"
  3497. #define NID_camellia_256_cmac 972
  3498. #define OBJ_camellia_256_cmac OBJ_camellia,50L
  3499. #define SN_camellia_128_cfb1 "CAMELLIA-128-CFB1"
  3500. #define LN_camellia_128_cfb1 "camellia-128-cfb1"
  3501. #define NID_camellia_128_cfb1 760
  3502. #define SN_camellia_192_cfb1 "CAMELLIA-192-CFB1"
  3503. #define LN_camellia_192_cfb1 "camellia-192-cfb1"
  3504. #define NID_camellia_192_cfb1 761
  3505. #define SN_camellia_256_cfb1 "CAMELLIA-256-CFB1"
  3506. #define LN_camellia_256_cfb1 "camellia-256-cfb1"
  3507. #define NID_camellia_256_cfb1 762
  3508. #define SN_camellia_128_cfb8 "CAMELLIA-128-CFB8"
  3509. #define LN_camellia_128_cfb8 "camellia-128-cfb8"
  3510. #define NID_camellia_128_cfb8 763
  3511. #define SN_camellia_192_cfb8 "CAMELLIA-192-CFB8"
  3512. #define LN_camellia_192_cfb8 "camellia-192-cfb8"
  3513. #define NID_camellia_192_cfb8 764
  3514. #define SN_camellia_256_cfb8 "CAMELLIA-256-CFB8"
  3515. #define LN_camellia_256_cfb8 "camellia-256-cfb8"
  3516. #define NID_camellia_256_cfb8 765
  3517. #define OBJ_aria 1L,2L,410L,200046L,1L,1L
  3518. #define SN_aria_128_ecb "ARIA-128-ECB"
  3519. #define LN_aria_128_ecb "aria-128-ecb"
  3520. #define NID_aria_128_ecb 1065
  3521. #define OBJ_aria_128_ecb OBJ_aria,1L
  3522. #define SN_aria_128_cbc "ARIA-128-CBC"
  3523. #define LN_aria_128_cbc "aria-128-cbc"
  3524. #define NID_aria_128_cbc 1066
  3525. #define OBJ_aria_128_cbc OBJ_aria,2L
  3526. #define SN_aria_128_cfb128 "ARIA-128-CFB"
  3527. #define LN_aria_128_cfb128 "aria-128-cfb"
  3528. #define NID_aria_128_cfb128 1067
  3529. #define OBJ_aria_128_cfb128 OBJ_aria,3L
  3530. #define SN_aria_128_ofb128 "ARIA-128-OFB"
  3531. #define LN_aria_128_ofb128 "aria-128-ofb"
  3532. #define NID_aria_128_ofb128 1068
  3533. #define OBJ_aria_128_ofb128 OBJ_aria,4L
  3534. #define SN_aria_128_ctr "ARIA-128-CTR"
  3535. #define LN_aria_128_ctr "aria-128-ctr"
  3536. #define NID_aria_128_ctr 1069
  3537. #define OBJ_aria_128_ctr OBJ_aria,5L
  3538. #define SN_aria_192_ecb "ARIA-192-ECB"
  3539. #define LN_aria_192_ecb "aria-192-ecb"
  3540. #define NID_aria_192_ecb 1070
  3541. #define OBJ_aria_192_ecb OBJ_aria,6L
  3542. #define SN_aria_192_cbc "ARIA-192-CBC"
  3543. #define LN_aria_192_cbc "aria-192-cbc"
  3544. #define NID_aria_192_cbc 1071
  3545. #define OBJ_aria_192_cbc OBJ_aria,7L
  3546. #define SN_aria_192_cfb128 "ARIA-192-CFB"
  3547. #define LN_aria_192_cfb128 "aria-192-cfb"
  3548. #define NID_aria_192_cfb128 1072
  3549. #define OBJ_aria_192_cfb128 OBJ_aria,8L
  3550. #define SN_aria_192_ofb128 "ARIA-192-OFB"
  3551. #define LN_aria_192_ofb128 "aria-192-ofb"
  3552. #define NID_aria_192_ofb128 1073
  3553. #define OBJ_aria_192_ofb128 OBJ_aria,9L
  3554. #define SN_aria_192_ctr "ARIA-192-CTR"
  3555. #define LN_aria_192_ctr "aria-192-ctr"
  3556. #define NID_aria_192_ctr 1074
  3557. #define OBJ_aria_192_ctr OBJ_aria,10L
  3558. #define SN_aria_256_ecb "ARIA-256-ECB"
  3559. #define LN_aria_256_ecb "aria-256-ecb"
  3560. #define NID_aria_256_ecb 1075
  3561. #define OBJ_aria_256_ecb OBJ_aria,11L
  3562. #define SN_aria_256_cbc "ARIA-256-CBC"
  3563. #define LN_aria_256_cbc "aria-256-cbc"
  3564. #define NID_aria_256_cbc 1076
  3565. #define OBJ_aria_256_cbc OBJ_aria,12L
  3566. #define SN_aria_256_cfb128 "ARIA-256-CFB"
  3567. #define LN_aria_256_cfb128 "aria-256-cfb"
  3568. #define NID_aria_256_cfb128 1077
  3569. #define OBJ_aria_256_cfb128 OBJ_aria,13L
  3570. #define SN_aria_256_ofb128 "ARIA-256-OFB"
  3571. #define LN_aria_256_ofb128 "aria-256-ofb"
  3572. #define NID_aria_256_ofb128 1078
  3573. #define OBJ_aria_256_ofb128 OBJ_aria,14L
  3574. #define SN_aria_256_ctr "ARIA-256-CTR"
  3575. #define LN_aria_256_ctr "aria-256-ctr"
  3576. #define NID_aria_256_ctr 1079
  3577. #define OBJ_aria_256_ctr OBJ_aria,15L
  3578. #define SN_aria_128_cfb1 "ARIA-128-CFB1"
  3579. #define LN_aria_128_cfb1 "aria-128-cfb1"
  3580. #define NID_aria_128_cfb1 1080
  3581. #define SN_aria_192_cfb1 "ARIA-192-CFB1"
  3582. #define LN_aria_192_cfb1 "aria-192-cfb1"
  3583. #define NID_aria_192_cfb1 1081
  3584. #define SN_aria_256_cfb1 "ARIA-256-CFB1"
  3585. #define LN_aria_256_cfb1 "aria-256-cfb1"
  3586. #define NID_aria_256_cfb1 1082
  3587. #define SN_aria_128_cfb8 "ARIA-128-CFB8"
  3588. #define LN_aria_128_cfb8 "aria-128-cfb8"
  3589. #define NID_aria_128_cfb8 1083
  3590. #define SN_aria_192_cfb8 "ARIA-192-CFB8"
  3591. #define LN_aria_192_cfb8 "aria-192-cfb8"
  3592. #define NID_aria_192_cfb8 1084
  3593. #define SN_aria_256_cfb8 "ARIA-256-CFB8"
  3594. #define LN_aria_256_cfb8 "aria-256-cfb8"
  3595. #define NID_aria_256_cfb8 1085
  3596. #define SN_aria_128_ccm "ARIA-128-CCM"
  3597. #define LN_aria_128_ccm "aria-128-ccm"
  3598. #define NID_aria_128_ccm 1120
  3599. #define OBJ_aria_128_ccm OBJ_aria,37L
  3600. #define SN_aria_192_ccm "ARIA-192-CCM"
  3601. #define LN_aria_192_ccm "aria-192-ccm"
  3602. #define NID_aria_192_ccm 1121
  3603. #define OBJ_aria_192_ccm OBJ_aria,38L
  3604. #define SN_aria_256_ccm "ARIA-256-CCM"
  3605. #define LN_aria_256_ccm "aria-256-ccm"
  3606. #define NID_aria_256_ccm 1122
  3607. #define OBJ_aria_256_ccm OBJ_aria,39L
  3608. #define SN_aria_128_gcm "ARIA-128-GCM"
  3609. #define LN_aria_128_gcm "aria-128-gcm"
  3610. #define NID_aria_128_gcm 1123
  3611. #define OBJ_aria_128_gcm OBJ_aria,34L
  3612. #define SN_aria_192_gcm "ARIA-192-GCM"
  3613. #define LN_aria_192_gcm "aria-192-gcm"
  3614. #define NID_aria_192_gcm 1124
  3615. #define OBJ_aria_192_gcm OBJ_aria,35L
  3616. #define SN_aria_256_gcm "ARIA-256-GCM"
  3617. #define LN_aria_256_gcm "aria-256-gcm"
  3618. #define NID_aria_256_gcm 1125
  3619. #define OBJ_aria_256_gcm OBJ_aria,36L
  3620. #define SN_kisa "KISA"
  3621. #define LN_kisa "kisa"
  3622. #define NID_kisa 773
  3623. #define OBJ_kisa OBJ_member_body,410L,200004L
  3624. #define SN_seed_ecb "SEED-ECB"
  3625. #define LN_seed_ecb "seed-ecb"
  3626. #define NID_seed_ecb 776
  3627. #define OBJ_seed_ecb OBJ_kisa,1L,3L
  3628. #define SN_seed_cbc "SEED-CBC"
  3629. #define LN_seed_cbc "seed-cbc"
  3630. #define NID_seed_cbc 777
  3631. #define OBJ_seed_cbc OBJ_kisa,1L,4L
  3632. #define SN_seed_cfb128 "SEED-CFB"
  3633. #define LN_seed_cfb128 "seed-cfb"
  3634. #define NID_seed_cfb128 779
  3635. #define OBJ_seed_cfb128 OBJ_kisa,1L,5L
  3636. #define SN_seed_ofb128 "SEED-OFB"
  3637. #define LN_seed_ofb128 "seed-ofb"
  3638. #define NID_seed_ofb128 778
  3639. #define OBJ_seed_ofb128 OBJ_kisa,1L,6L
  3640. #define SN_sm4_ecb "SM4-ECB"
  3641. #define LN_sm4_ecb "sm4-ecb"
  3642. #define NID_sm4_ecb 1133
  3643. #define OBJ_sm4_ecb OBJ_sm_scheme,104L,1L
  3644. #define SN_sm4_cbc "SM4-CBC"
  3645. #define LN_sm4_cbc "sm4-cbc"
  3646. #define NID_sm4_cbc 1134
  3647. #define OBJ_sm4_cbc OBJ_sm_scheme,104L,2L
  3648. #define SN_sm4_ofb128 "SM4-OFB"
  3649. #define LN_sm4_ofb128 "sm4-ofb"
  3650. #define NID_sm4_ofb128 1135
  3651. #define OBJ_sm4_ofb128 OBJ_sm_scheme,104L,3L
  3652. #define SN_sm4_cfb128 "SM4-CFB"
  3653. #define LN_sm4_cfb128 "sm4-cfb"
  3654. #define NID_sm4_cfb128 1137
  3655. #define OBJ_sm4_cfb128 OBJ_sm_scheme,104L,4L
  3656. #define SN_sm4_cfb1 "SM4-CFB1"
  3657. #define LN_sm4_cfb1 "sm4-cfb1"
  3658. #define NID_sm4_cfb1 1136
  3659. #define OBJ_sm4_cfb1 OBJ_sm_scheme,104L,5L
  3660. #define SN_sm4_cfb8 "SM4-CFB8"
  3661. #define LN_sm4_cfb8 "sm4-cfb8"
  3662. #define NID_sm4_cfb8 1138
  3663. #define OBJ_sm4_cfb8 OBJ_sm_scheme,104L,6L
  3664. #define SN_sm4_ctr "SM4-CTR"
  3665. #define LN_sm4_ctr "sm4-ctr"
  3666. #define NID_sm4_ctr 1139
  3667. #define OBJ_sm4_ctr OBJ_sm_scheme,104L,7L
  3668. #define SN_hmac "HMAC"
  3669. #define LN_hmac "hmac"
  3670. #define NID_hmac 855
  3671. #define SN_cmac "CMAC"
  3672. #define LN_cmac "cmac"
  3673. #define NID_cmac 894
  3674. #define SN_rc4_hmac_md5 "RC4-HMAC-MD5"
  3675. #define LN_rc4_hmac_md5 "rc4-hmac-md5"
  3676. #define NID_rc4_hmac_md5 915
  3677. #define SN_aes_128_cbc_hmac_sha1 "AES-128-CBC-HMAC-SHA1"
  3678. #define LN_aes_128_cbc_hmac_sha1 "aes-128-cbc-hmac-sha1"
  3679. #define NID_aes_128_cbc_hmac_sha1 916
  3680. #define SN_aes_192_cbc_hmac_sha1 "AES-192-CBC-HMAC-SHA1"
  3681. #define LN_aes_192_cbc_hmac_sha1 "aes-192-cbc-hmac-sha1"
  3682. #define NID_aes_192_cbc_hmac_sha1 917
  3683. #define SN_aes_256_cbc_hmac_sha1 "AES-256-CBC-HMAC-SHA1"
  3684. #define LN_aes_256_cbc_hmac_sha1 "aes-256-cbc-hmac-sha1"
  3685. #define NID_aes_256_cbc_hmac_sha1 918
  3686. #define SN_aes_128_cbc_hmac_sha256 "AES-128-CBC-HMAC-SHA256"
  3687. #define LN_aes_128_cbc_hmac_sha256 "aes-128-cbc-hmac-sha256"
  3688. #define NID_aes_128_cbc_hmac_sha256 948
  3689. #define SN_aes_192_cbc_hmac_sha256 "AES-192-CBC-HMAC-SHA256"
  3690. #define LN_aes_192_cbc_hmac_sha256 "aes-192-cbc-hmac-sha256"
  3691. #define NID_aes_192_cbc_hmac_sha256 949
  3692. #define SN_aes_256_cbc_hmac_sha256 "AES-256-CBC-HMAC-SHA256"
  3693. #define LN_aes_256_cbc_hmac_sha256 "aes-256-cbc-hmac-sha256"
  3694. #define NID_aes_256_cbc_hmac_sha256 950
  3695. #define SN_chacha20_poly1305 "ChaCha20-Poly1305"
  3696. #define LN_chacha20_poly1305 "chacha20-poly1305"
  3697. #define NID_chacha20_poly1305 1018
  3698. #define SN_chacha20 "ChaCha20"
  3699. #define LN_chacha20 "chacha20"
  3700. #define NID_chacha20 1019
  3701. #define SN_dhpublicnumber "dhpublicnumber"
  3702. #define LN_dhpublicnumber "X9.42 DH"
  3703. #define NID_dhpublicnumber 920
  3704. #define OBJ_dhpublicnumber OBJ_ISO_US,10046L,2L,1L
  3705. #define SN_brainpoolP160r1 "brainpoolP160r1"
  3706. #define NID_brainpoolP160r1 921
  3707. #define OBJ_brainpoolP160r1 1L,3L,36L,3L,3L,2L,8L,1L,1L,1L
  3708. #define SN_brainpoolP160t1 "brainpoolP160t1"
  3709. #define NID_brainpoolP160t1 922
  3710. #define OBJ_brainpoolP160t1 1L,3L,36L,3L,3L,2L,8L,1L,1L,2L
  3711. #define SN_brainpoolP192r1 "brainpoolP192r1"
  3712. #define NID_brainpoolP192r1 923
  3713. #define OBJ_brainpoolP192r1 1L,3L,36L,3L,3L,2L,8L,1L,1L,3L
  3714. #define SN_brainpoolP192t1 "brainpoolP192t1"
  3715. #define NID_brainpoolP192t1 924
  3716. #define OBJ_brainpoolP192t1 1L,3L,36L,3L,3L,2L,8L,1L,1L,4L
  3717. #define SN_brainpoolP224r1 "brainpoolP224r1"
  3718. #define NID_brainpoolP224r1 925
  3719. #define OBJ_brainpoolP224r1 1L,3L,36L,3L,3L,2L,8L,1L,1L,5L
  3720. #define SN_brainpoolP224t1 "brainpoolP224t1"
  3721. #define NID_brainpoolP224t1 926
  3722. #define OBJ_brainpoolP224t1 1L,3L,36L,3L,3L,2L,8L,1L,1L,6L
  3723. #define SN_brainpoolP256r1 "brainpoolP256r1"
  3724. #define NID_brainpoolP256r1 927
  3725. #define OBJ_brainpoolP256r1 1L,3L,36L,3L,3L,2L,8L,1L,1L,7L
  3726. #define SN_brainpoolP256t1 "brainpoolP256t1"
  3727. #define NID_brainpoolP256t1 928
  3728. #define OBJ_brainpoolP256t1 1L,3L,36L,3L,3L,2L,8L,1L,1L,8L
  3729. #define SN_brainpoolP320r1 "brainpoolP320r1"
  3730. #define NID_brainpoolP320r1 929
  3731. #define OBJ_brainpoolP320r1 1L,3L,36L,3L,3L,2L,8L,1L,1L,9L
  3732. #define SN_brainpoolP320t1 "brainpoolP320t1"
  3733. #define NID_brainpoolP320t1 930
  3734. #define OBJ_brainpoolP320t1 1L,3L,36L,3L,3L,2L,8L,1L,1L,10L
  3735. #define SN_brainpoolP384r1 "brainpoolP384r1"
  3736. #define NID_brainpoolP384r1 931
  3737. #define OBJ_brainpoolP384r1 1L,3L,36L,3L,3L,2L,8L,1L,1L,11L
  3738. #define SN_brainpoolP384t1 "brainpoolP384t1"
  3739. #define NID_brainpoolP384t1 932
  3740. #define OBJ_brainpoolP384t1 1L,3L,36L,3L,3L,2L,8L,1L,1L,12L
  3741. #define SN_brainpoolP512r1 "brainpoolP512r1"
  3742. #define NID_brainpoolP512r1 933
  3743. #define OBJ_brainpoolP512r1 1L,3L,36L,3L,3L,2L,8L,1L,1L,13L
  3744. #define SN_brainpoolP512t1 "brainpoolP512t1"
  3745. #define NID_brainpoolP512t1 934
  3746. #define OBJ_brainpoolP512t1 1L,3L,36L,3L,3L,2L,8L,1L,1L,14L
  3747. #define OBJ_x9_63_scheme 1L,3L,133L,16L,840L,63L,0L
  3748. #define OBJ_secg_scheme OBJ_certicom_arc,1L
  3749. #define SN_dhSinglePass_stdDH_sha1kdf_scheme "dhSinglePass-stdDH-sha1kdf-scheme"
  3750. #define NID_dhSinglePass_stdDH_sha1kdf_scheme 936
  3751. #define OBJ_dhSinglePass_stdDH_sha1kdf_scheme OBJ_x9_63_scheme,2L
  3752. #define SN_dhSinglePass_stdDH_sha224kdf_scheme "dhSinglePass-stdDH-sha224kdf-scheme"
  3753. #define NID_dhSinglePass_stdDH_sha224kdf_scheme 937
  3754. #define OBJ_dhSinglePass_stdDH_sha224kdf_scheme OBJ_secg_scheme,11L,0L
  3755. #define SN_dhSinglePass_stdDH_sha256kdf_scheme "dhSinglePass-stdDH-sha256kdf-scheme"
  3756. #define NID_dhSinglePass_stdDH_sha256kdf_scheme 938
  3757. #define OBJ_dhSinglePass_stdDH_sha256kdf_scheme OBJ_secg_scheme,11L,1L
  3758. #define SN_dhSinglePass_stdDH_sha384kdf_scheme "dhSinglePass-stdDH-sha384kdf-scheme"
  3759. #define NID_dhSinglePass_stdDH_sha384kdf_scheme 939
  3760. #define OBJ_dhSinglePass_stdDH_sha384kdf_scheme OBJ_secg_scheme,11L,2L
  3761. #define SN_dhSinglePass_stdDH_sha512kdf_scheme "dhSinglePass-stdDH-sha512kdf-scheme"
  3762. #define NID_dhSinglePass_stdDH_sha512kdf_scheme 940
  3763. #define OBJ_dhSinglePass_stdDH_sha512kdf_scheme OBJ_secg_scheme,11L,3L
  3764. #define SN_dhSinglePass_cofactorDH_sha1kdf_scheme "dhSinglePass-cofactorDH-sha1kdf-scheme"
  3765. #define NID_dhSinglePass_cofactorDH_sha1kdf_scheme 941
  3766. #define OBJ_dhSinglePass_cofactorDH_sha1kdf_scheme OBJ_x9_63_scheme,3L
  3767. #define SN_dhSinglePass_cofactorDH_sha224kdf_scheme "dhSinglePass-cofactorDH-sha224kdf-scheme"
  3768. #define NID_dhSinglePass_cofactorDH_sha224kdf_scheme 942
  3769. #define OBJ_dhSinglePass_cofactorDH_sha224kdf_scheme OBJ_secg_scheme,14L,0L
  3770. #define SN_dhSinglePass_cofactorDH_sha256kdf_scheme "dhSinglePass-cofactorDH-sha256kdf-scheme"
  3771. #define NID_dhSinglePass_cofactorDH_sha256kdf_scheme 943
  3772. #define OBJ_dhSinglePass_cofactorDH_sha256kdf_scheme OBJ_secg_scheme,14L,1L
  3773. #define SN_dhSinglePass_cofactorDH_sha384kdf_scheme "dhSinglePass-cofactorDH-sha384kdf-scheme"
  3774. #define NID_dhSinglePass_cofactorDH_sha384kdf_scheme 944
  3775. #define OBJ_dhSinglePass_cofactorDH_sha384kdf_scheme OBJ_secg_scheme,14L,2L
  3776. #define SN_dhSinglePass_cofactorDH_sha512kdf_scheme "dhSinglePass-cofactorDH-sha512kdf-scheme"
  3777. #define NID_dhSinglePass_cofactorDH_sha512kdf_scheme 945
  3778. #define OBJ_dhSinglePass_cofactorDH_sha512kdf_scheme OBJ_secg_scheme,14L,3L
  3779. #define SN_dh_std_kdf "dh-std-kdf"
  3780. #define NID_dh_std_kdf 946
  3781. #define SN_dh_cofactor_kdf "dh-cofactor-kdf"
  3782. #define NID_dh_cofactor_kdf 947
  3783. #define SN_ct_precert_scts "ct_precert_scts"
  3784. #define LN_ct_precert_scts "CT Precertificate SCTs"
  3785. #define NID_ct_precert_scts 951
  3786. #define OBJ_ct_precert_scts 1L,3L,6L,1L,4L,1L,11129L,2L,4L,2L
  3787. #define SN_ct_precert_poison "ct_precert_poison"
  3788. #define LN_ct_precert_poison "CT Precertificate Poison"
  3789. #define NID_ct_precert_poison 952
  3790. #define OBJ_ct_precert_poison 1L,3L,6L,1L,4L,1L,11129L,2L,4L,3L
  3791. #define SN_ct_precert_signer "ct_precert_signer"
  3792. #define LN_ct_precert_signer "CT Precertificate Signer"
  3793. #define NID_ct_precert_signer 953
  3794. #define OBJ_ct_precert_signer 1L,3L,6L,1L,4L,1L,11129L,2L,4L,4L
  3795. #define SN_ct_cert_scts "ct_cert_scts"
  3796. #define LN_ct_cert_scts "CT Certificate SCTs"
  3797. #define NID_ct_cert_scts 954
  3798. #define OBJ_ct_cert_scts 1L,3L,6L,1L,4L,1L,11129L,2L,4L,5L
  3799. #define SN_jurisdictionLocalityName "jurisdictionL"
  3800. #define LN_jurisdictionLocalityName "jurisdictionLocalityName"
  3801. #define NID_jurisdictionLocalityName 955
  3802. #define OBJ_jurisdictionLocalityName 1L,3L,6L,1L,4L,1L,311L,60L,2L,1L,1L
  3803. #define SN_jurisdictionStateOrProvinceName "jurisdictionST"
  3804. #define LN_jurisdictionStateOrProvinceName "jurisdictionStateOrProvinceName"
  3805. #define NID_jurisdictionStateOrProvinceName 956
  3806. #define OBJ_jurisdictionStateOrProvinceName 1L,3L,6L,1L,4L,1L,311L,60L,2L,1L,2L
  3807. #define SN_jurisdictionCountryName "jurisdictionC"
  3808. #define LN_jurisdictionCountryName "jurisdictionCountryName"
  3809. #define NID_jurisdictionCountryName 957
  3810. #define OBJ_jurisdictionCountryName 1L,3L,6L,1L,4L,1L,311L,60L,2L,1L,3L
  3811. #define SN_id_scrypt "id-scrypt"
  3812. #define LN_id_scrypt "scrypt"
  3813. #define NID_id_scrypt 973
  3814. #define OBJ_id_scrypt 1L,3L,6L,1L,4L,1L,11591L,4L,11L
  3815. #define SN_tls1_prf "TLS1-PRF"
  3816. #define LN_tls1_prf "tls1-prf"
  3817. #define NID_tls1_prf 1021
  3818. #define SN_hkdf "HKDF"
  3819. #define LN_hkdf "hkdf"
  3820. #define NID_hkdf 1036
  3821. #define SN_id_pkinit "id-pkinit"
  3822. #define NID_id_pkinit 1031
  3823. #define OBJ_id_pkinit 1L,3L,6L,1L,5L,2L,3L
  3824. #define SN_pkInitClientAuth "pkInitClientAuth"
  3825. #define LN_pkInitClientAuth "PKINIT Client Auth"
  3826. #define NID_pkInitClientAuth 1032
  3827. #define OBJ_pkInitClientAuth OBJ_id_pkinit,4L
  3828. #define SN_pkInitKDC "pkInitKDC"
  3829. #define LN_pkInitKDC "Signing KDC Response"
  3830. #define NID_pkInitKDC 1033
  3831. #define OBJ_pkInitKDC OBJ_id_pkinit,5L
  3832. #define SN_X25519 "X25519"
  3833. #define NID_X25519 1034
  3834. #define OBJ_X25519 1L,3L,101L,110L
  3835. #define SN_X448 "X448"
  3836. #define NID_X448 1035
  3837. #define OBJ_X448 1L,3L,101L,111L
  3838. #define SN_ED25519 "ED25519"
  3839. #define NID_ED25519 1087
  3840. #define OBJ_ED25519 1L,3L,101L,112L
  3841. #define SN_ED448 "ED448"
  3842. #define NID_ED448 1088
  3843. #define OBJ_ED448 1L,3L,101L,113L
  3844. #define SN_kx_rsa "KxRSA"
  3845. #define LN_kx_rsa "kx-rsa"
  3846. #define NID_kx_rsa 1037
  3847. #define SN_kx_ecdhe "KxECDHE"
  3848. #define LN_kx_ecdhe "kx-ecdhe"
  3849. #define NID_kx_ecdhe 1038
  3850. #define SN_kx_dhe "KxDHE"
  3851. #define LN_kx_dhe "kx-dhe"
  3852. #define NID_kx_dhe 1039
  3853. #define SN_kx_ecdhe_psk "KxECDHE-PSK"
  3854. #define LN_kx_ecdhe_psk "kx-ecdhe-psk"
  3855. #define NID_kx_ecdhe_psk 1040
  3856. #define SN_kx_dhe_psk "KxDHE-PSK"
  3857. #define LN_kx_dhe_psk "kx-dhe-psk"
  3858. #define NID_kx_dhe_psk 1041
  3859. #define SN_kx_rsa_psk "KxRSA_PSK"
  3860. #define LN_kx_rsa_psk "kx-rsa-psk"
  3861. #define NID_kx_rsa_psk 1042
  3862. #define SN_kx_psk "KxPSK"
  3863. #define LN_kx_psk "kx-psk"
  3864. #define NID_kx_psk 1043
  3865. #define SN_kx_srp "KxSRP"
  3866. #define LN_kx_srp "kx-srp"
  3867. #define NID_kx_srp 1044
  3868. #define SN_kx_gost "KxGOST"
  3869. #define LN_kx_gost "kx-gost"
  3870. #define NID_kx_gost 1045
  3871. #define SN_kx_any "KxANY"
  3872. #define LN_kx_any "kx-any"
  3873. #define NID_kx_any 1063
  3874. #define SN_auth_rsa "AuthRSA"
  3875. #define LN_auth_rsa "auth-rsa"
  3876. #define NID_auth_rsa 1046
  3877. #define SN_auth_ecdsa "AuthECDSA"
  3878. #define LN_auth_ecdsa "auth-ecdsa"
  3879. #define NID_auth_ecdsa 1047
  3880. #define SN_auth_psk "AuthPSK"
  3881. #define LN_auth_psk "auth-psk"
  3882. #define NID_auth_psk 1048
  3883. #define SN_auth_dss "AuthDSS"
  3884. #define LN_auth_dss "auth-dss"
  3885. #define NID_auth_dss 1049
  3886. #define SN_auth_gost01 "AuthGOST01"
  3887. #define LN_auth_gost01 "auth-gost01"
  3888. #define NID_auth_gost01 1050
  3889. #define SN_auth_gost12 "AuthGOST12"
  3890. #define LN_auth_gost12 "auth-gost12"
  3891. #define NID_auth_gost12 1051
  3892. #define SN_auth_srp "AuthSRP"
  3893. #define LN_auth_srp "auth-srp"
  3894. #define NID_auth_srp 1052
  3895. #define SN_auth_null "AuthNULL"
  3896. #define LN_auth_null "auth-null"
  3897. #define NID_auth_null 1053
  3898. #define SN_auth_any "AuthANY"
  3899. #define LN_auth_any "auth-any"
  3900. #define NID_auth_any 1064
  3901. #define SN_poly1305 "Poly1305"
  3902. #define LN_poly1305 "poly1305"
  3903. #define NID_poly1305 1061
  3904. #define SN_siphash "SipHash"
  3905. #define LN_siphash "siphash"
  3906. #define NID_siphash 1062
  3907. #define SN_ffdhe2048 "ffdhe2048"
  3908. #define NID_ffdhe2048 1126
  3909. #define SN_ffdhe3072 "ffdhe3072"
  3910. #define NID_ffdhe3072 1127
  3911. #define SN_ffdhe4096 "ffdhe4096"
  3912. #define NID_ffdhe4096 1128
  3913. #define SN_ffdhe6144 "ffdhe6144"
  3914. #define NID_ffdhe6144 1129
  3915. #define SN_ffdhe8192 "ffdhe8192"
  3916. #define NID_ffdhe8192 1130
  3917. #define SN_ISO_UA "ISO-UA"
  3918. #define NID_ISO_UA 1150
  3919. #define OBJ_ISO_UA OBJ_member_body,804L
  3920. #define SN_ua_pki "ua-pki"
  3921. #define NID_ua_pki 1151
  3922. #define OBJ_ua_pki OBJ_ISO_UA,2L,1L,1L,1L
  3923. #define SN_dstu28147 "dstu28147"
  3924. #define LN_dstu28147 "DSTU Gost 28147-2009"
  3925. #define NID_dstu28147 1152
  3926. #define OBJ_dstu28147 OBJ_ua_pki,1L,1L,1L
  3927. #define SN_dstu28147_ofb "dstu28147-ofb"
  3928. #define LN_dstu28147_ofb "DSTU Gost 28147-2009 OFB mode"
  3929. #define NID_dstu28147_ofb 1153
  3930. #define OBJ_dstu28147_ofb OBJ_dstu28147,2L
  3931. #define SN_dstu28147_cfb "dstu28147-cfb"
  3932. #define LN_dstu28147_cfb "DSTU Gost 28147-2009 CFB mode"
  3933. #define NID_dstu28147_cfb 1154
  3934. #define OBJ_dstu28147_cfb OBJ_dstu28147,3L
  3935. #define SN_dstu28147_wrap "dstu28147-wrap"
  3936. #define LN_dstu28147_wrap "DSTU Gost 28147-2009 key wrap"
  3937. #define NID_dstu28147_wrap 1155
  3938. #define OBJ_dstu28147_wrap OBJ_dstu28147,5L
  3939. #define SN_hmacWithDstu34311 "hmacWithDstu34311"
  3940. #define LN_hmacWithDstu34311 "HMAC DSTU Gost 34311-95"
  3941. #define NID_hmacWithDstu34311 1156
  3942. #define OBJ_hmacWithDstu34311 OBJ_ua_pki,1L,1L,2L
  3943. #define SN_dstu34311 "dstu34311"
  3944. #define LN_dstu34311 "DSTU Gost 34311-95"
  3945. #define NID_dstu34311 1157
  3946. #define OBJ_dstu34311 OBJ_ua_pki,1L,2L,1L
  3947. #define SN_dstu4145le "dstu4145le"
  3948. #define LN_dstu4145le "DSTU 4145-2002 little endian"
  3949. #define NID_dstu4145le 1158
  3950. #define OBJ_dstu4145le OBJ_ua_pki,1L,3L,1L,1L
  3951. #define SN_dstu4145be "dstu4145be"
  3952. #define LN_dstu4145be "DSTU 4145-2002 big endian"
  3953. #define NID_dstu4145be 1159
  3954. #define OBJ_dstu4145be OBJ_dstu4145le,1L,1L
  3955. #define SN_uacurve0 "uacurve0"
  3956. #define LN_uacurve0 "DSTU curve 0"
  3957. #define NID_uacurve0 1160
  3958. #define OBJ_uacurve0 OBJ_dstu4145le,2L,0L
  3959. #define SN_uacurve1 "uacurve1"
  3960. #define LN_uacurve1 "DSTU curve 1"
  3961. #define NID_uacurve1 1161
  3962. #define OBJ_uacurve1 OBJ_dstu4145le,2L,1L
  3963. #define SN_uacurve2 "uacurve2"
  3964. #define LN_uacurve2 "DSTU curve 2"
  3965. #define NID_uacurve2 1162
  3966. #define OBJ_uacurve2 OBJ_dstu4145le,2L,2L
  3967. #define SN_uacurve3 "uacurve3"
  3968. #define LN_uacurve3 "DSTU curve 3"
  3969. #define NID_uacurve3 1163
  3970. #define OBJ_uacurve3 OBJ_dstu4145le,2L,3L
  3971. #define SN_uacurve4 "uacurve4"
  3972. #define LN_uacurve4 "DSTU curve 4"
  3973. #define NID_uacurve4 1164
  3974. #define OBJ_uacurve4 OBJ_dstu4145le,2L,4L
  3975. #define SN_uacurve5 "uacurve5"
  3976. #define LN_uacurve5 "DSTU curve 5"
  3977. #define NID_uacurve5 1165
  3978. #define OBJ_uacurve5 OBJ_dstu4145le,2L,5L
  3979. #define SN_uacurve6 "uacurve6"
  3980. #define LN_uacurve6 "DSTU curve 6"
  3981. #define NID_uacurve6 1166
  3982. #define OBJ_uacurve6 OBJ_dstu4145le,2L,6L
  3983. #define SN_uacurve7 "uacurve7"
  3984. #define LN_uacurve7 "DSTU curve 7"
  3985. #define NID_uacurve7 1167
  3986. #define OBJ_uacurve7 OBJ_dstu4145le,2L,7L
  3987. #define SN_uacurve8 "uacurve8"
  3988. #define LN_uacurve8 "DSTU curve 8"
  3989. #define NID_uacurve8 1168
  3990. #define OBJ_uacurve8 OBJ_dstu4145le,2L,8L
  3991. #define SN_uacurve9 "uacurve9"
  3992. #define LN_uacurve9 "DSTU curve 9"
  3993. #define NID_uacurve9 1169
  3994. #define OBJ_uacurve9 OBJ_dstu4145le,2L,9L
  3995. #define SN_aes_128_siv "AES-128-SIV"
  3996. #define LN_aes_128_siv "aes-128-siv"
  3997. #define NID_aes_128_siv 1198
  3998. #define SN_aes_192_siv "AES-192-SIV"
  3999. #define LN_aes_192_siv "aes-192-siv"
  4000. #define NID_aes_192_siv 1199
  4001. #define SN_aes_256_siv "AES-256-SIV"
  4002. #define LN_aes_256_siv "aes-256-siv"
  4003. #define NID_aes_256_siv 1200