obj_dat.h 250 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097
  1. /* crypto/objects/obj_dat.h */
  2. /* THIS FILE IS GENERATED FROM objects.h by obj_dat.pl via the
  3. * following command:
  4. * perl obj_dat.pl obj_mac.h obj_dat.h
  5. */
  6. /* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com)
  7. * All rights reserved.
  8. *
  9. * This package is an SSL implementation written
  10. * by Eric Young (eay@cryptsoft.com).
  11. * The implementation was written so as to conform with Netscapes SSL.
  12. *
  13. * This library is free for commercial and non-commercial use as long as
  14. * the following conditions are aheared to. The following conditions
  15. * apply to all code found in this distribution, be it the RC4, RSA,
  16. * lhash, DES, etc., code; not just the SSL code. The SSL documentation
  17. * included with this distribution is covered by the same copyright terms
  18. * except that the holder is Tim Hudson (tjh@cryptsoft.com).
  19. *
  20. * Copyright remains Eric Young's, and as such any Copyright notices in
  21. * the code are not to be removed.
  22. * If this package is used in a product, Eric Young should be given attribution
  23. * as the author of the parts of the library used.
  24. * This can be in the form of a textual message at program startup or
  25. * in documentation (online or textual) provided with the package.
  26. *
  27. * Redistribution and use in source and binary forms, with or without
  28. * modification, are permitted provided that the following conditions
  29. * are met:
  30. * 1. Redistributions of source code must retain the copyright
  31. * notice, this list of conditions and the following disclaimer.
  32. * 2. Redistributions in binary form must reproduce the above copyright
  33. * notice, this list of conditions and the following disclaimer in the
  34. * documentation and/or other materials provided with the distribution.
  35. * 3. All advertising materials mentioning features or use of this software
  36. * must display the following acknowledgement:
  37. * "This product includes cryptographic software written by
  38. * Eric Young (eay@cryptsoft.com)"
  39. * The word 'cryptographic' can be left out if the rouines from the library
  40. * being used are not cryptographic related :-).
  41. * 4. If you include any Windows specific code (or a derivative thereof) from
  42. * the apps directory (application code) you must include an acknowledgement:
  43. * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
  44. *
  45. * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
  46. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  47. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  48. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  49. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  50. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  51. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  52. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  53. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  54. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  55. * SUCH DAMAGE.
  56. *
  57. * The licence and distribution terms for any publically available version or
  58. * derivative of this code cannot be changed. i.e. this code cannot simply be
  59. * copied and put under another distribution licence
  60. * [including the GNU Public Licence.]
  61. */
  62. #define NUM_NID 919
  63. #define NUM_SN 912
  64. #define NUM_LN 912
  65. #define NUM_OBJ 856
  66. static const unsigned char lvalues[5971]={
  67. 0x00, /* [ 0] OBJ_undef */
  68. 0x2A,0x86,0x48,0x86,0xF7,0x0D, /* [ 1] OBJ_rsadsi */
  69. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01, /* [ 7] OBJ_pkcs */
  70. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x02,0x02, /* [ 14] OBJ_md2 */
  71. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x02,0x05, /* [ 22] OBJ_md5 */
  72. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x03,0x04, /* [ 30] OBJ_rc4 */
  73. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x01,/* [ 38] OBJ_rsaEncryption */
  74. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x02,/* [ 47] OBJ_md2WithRSAEncryption */
  75. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x04,/* [ 56] OBJ_md5WithRSAEncryption */
  76. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x05,0x01,/* [ 65] OBJ_pbeWithMD2AndDES_CBC */
  77. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x05,0x03,/* [ 74] OBJ_pbeWithMD5AndDES_CBC */
  78. 0x55, /* [ 83] OBJ_X500 */
  79. 0x55,0x04, /* [ 84] OBJ_X509 */
  80. 0x55,0x04,0x03, /* [ 86] OBJ_commonName */
  81. 0x55,0x04,0x06, /* [ 89] OBJ_countryName */
  82. 0x55,0x04,0x07, /* [ 92] OBJ_localityName */
  83. 0x55,0x04,0x08, /* [ 95] OBJ_stateOrProvinceName */
  84. 0x55,0x04,0x0A, /* [ 98] OBJ_organizationName */
  85. 0x55,0x04,0x0B, /* [101] OBJ_organizationalUnitName */
  86. 0x55,0x08,0x01,0x01, /* [104] OBJ_rsa */
  87. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x07, /* [108] OBJ_pkcs7 */
  88. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x07,0x01,/* [116] OBJ_pkcs7_data */
  89. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x07,0x02,/* [125] OBJ_pkcs7_signed */
  90. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x07,0x03,/* [134] OBJ_pkcs7_enveloped */
  91. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x07,0x04,/* [143] OBJ_pkcs7_signedAndEnveloped */
  92. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x07,0x05,/* [152] OBJ_pkcs7_digest */
  93. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x07,0x06,/* [161] OBJ_pkcs7_encrypted */
  94. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x03, /* [170] OBJ_pkcs3 */
  95. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x03,0x01,/* [178] OBJ_dhKeyAgreement */
  96. 0x2B,0x0E,0x03,0x02,0x06, /* [187] OBJ_des_ecb */
  97. 0x2B,0x0E,0x03,0x02,0x09, /* [192] OBJ_des_cfb64 */
  98. 0x2B,0x0E,0x03,0x02,0x07, /* [197] OBJ_des_cbc */
  99. 0x2B,0x0E,0x03,0x02,0x11, /* [202] OBJ_des_ede_ecb */
  100. 0x2B,0x06,0x01,0x04,0x01,0x81,0x3C,0x07,0x01,0x01,0x02,/* [207] OBJ_idea_cbc */
  101. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x03,0x02, /* [218] OBJ_rc2_cbc */
  102. 0x2B,0x0E,0x03,0x02,0x12, /* [226] OBJ_sha */
  103. 0x2B,0x0E,0x03,0x02,0x0F, /* [231] OBJ_shaWithRSAEncryption */
  104. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x03,0x07, /* [236] OBJ_des_ede3_cbc */
  105. 0x2B,0x0E,0x03,0x02,0x08, /* [244] OBJ_des_ofb64 */
  106. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09, /* [249] OBJ_pkcs9 */
  107. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x01,/* [257] OBJ_pkcs9_emailAddress */
  108. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x02,/* [266] OBJ_pkcs9_unstructuredName */
  109. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x03,/* [275] OBJ_pkcs9_contentType */
  110. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x04,/* [284] OBJ_pkcs9_messageDigest */
  111. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x05,/* [293] OBJ_pkcs9_signingTime */
  112. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x06,/* [302] OBJ_pkcs9_countersignature */
  113. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x07,/* [311] OBJ_pkcs9_challengePassword */
  114. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x08,/* [320] OBJ_pkcs9_unstructuredAddress */
  115. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x09,/* [329] OBJ_pkcs9_extCertAttributes */
  116. 0x60,0x86,0x48,0x01,0x86,0xF8,0x42, /* [338] OBJ_netscape */
  117. 0x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x01, /* [345] OBJ_netscape_cert_extension */
  118. 0x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x02, /* [353] OBJ_netscape_data_type */
  119. 0x2B,0x0E,0x03,0x02,0x1A, /* [361] OBJ_sha1 */
  120. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x05,/* [366] OBJ_sha1WithRSAEncryption */
  121. 0x2B,0x0E,0x03,0x02,0x0D, /* [375] OBJ_dsaWithSHA */
  122. 0x2B,0x0E,0x03,0x02,0x0C, /* [380] OBJ_dsa_2 */
  123. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x05,0x0B,/* [385] OBJ_pbeWithSHA1AndRC2_CBC */
  124. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x05,0x0C,/* [394] OBJ_id_pbkdf2 */
  125. 0x2B,0x0E,0x03,0x02,0x1B, /* [403] OBJ_dsaWithSHA1_2 */
  126. 0x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x01,0x01,/* [408] OBJ_netscape_cert_type */
  127. 0x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x01,0x02,/* [417] OBJ_netscape_base_url */
  128. 0x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x01,0x03,/* [426] OBJ_netscape_revocation_url */
  129. 0x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x01,0x04,/* [435] OBJ_netscape_ca_revocation_url */
  130. 0x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x01,0x07,/* [444] OBJ_netscape_renewal_url */
  131. 0x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x01,0x08,/* [453] OBJ_netscape_ca_policy_url */
  132. 0x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x01,0x0C,/* [462] OBJ_netscape_ssl_server_name */
  133. 0x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x01,0x0D,/* [471] OBJ_netscape_comment */
  134. 0x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x02,0x05,/* [480] OBJ_netscape_cert_sequence */
  135. 0x55,0x1D, /* [489] OBJ_id_ce */
  136. 0x55,0x1D,0x0E, /* [491] OBJ_subject_key_identifier */
  137. 0x55,0x1D,0x0F, /* [494] OBJ_key_usage */
  138. 0x55,0x1D,0x10, /* [497] OBJ_private_key_usage_period */
  139. 0x55,0x1D,0x11, /* [500] OBJ_subject_alt_name */
  140. 0x55,0x1D,0x12, /* [503] OBJ_issuer_alt_name */
  141. 0x55,0x1D,0x13, /* [506] OBJ_basic_constraints */
  142. 0x55,0x1D,0x14, /* [509] OBJ_crl_number */
  143. 0x55,0x1D,0x20, /* [512] OBJ_certificate_policies */
  144. 0x55,0x1D,0x23, /* [515] OBJ_authority_key_identifier */
  145. 0x2B,0x06,0x01,0x04,0x01,0x97,0x55,0x01,0x02,/* [518] OBJ_bf_cbc */
  146. 0x55,0x08,0x03,0x65, /* [527] OBJ_mdc2 */
  147. 0x55,0x08,0x03,0x64, /* [531] OBJ_mdc2WithRSA */
  148. 0x55,0x04,0x2A, /* [535] OBJ_givenName */
  149. 0x55,0x04,0x04, /* [538] OBJ_surname */
  150. 0x55,0x04,0x2B, /* [541] OBJ_initials */
  151. 0x55,0x1D,0x1F, /* [544] OBJ_crl_distribution_points */
  152. 0x2B,0x0E,0x03,0x02,0x03, /* [547] OBJ_md5WithRSA */
  153. 0x55,0x04,0x05, /* [552] OBJ_serialNumber */
  154. 0x55,0x04,0x0C, /* [555] OBJ_title */
  155. 0x55,0x04,0x0D, /* [558] OBJ_description */
  156. 0x2A,0x86,0x48,0x86,0xF6,0x7D,0x07,0x42,0x0A,/* [561] OBJ_cast5_cbc */
  157. 0x2A,0x86,0x48,0x86,0xF6,0x7D,0x07,0x42,0x0C,/* [570] OBJ_pbeWithMD5AndCast5_CBC */
  158. 0x2A,0x86,0x48,0xCE,0x38,0x04,0x03, /* [579] OBJ_dsaWithSHA1 */
  159. 0x2B,0x0E,0x03,0x02,0x1D, /* [586] OBJ_sha1WithRSA */
  160. 0x2A,0x86,0x48,0xCE,0x38,0x04,0x01, /* [591] OBJ_dsa */
  161. 0x2B,0x24,0x03,0x02,0x01, /* [598] OBJ_ripemd160 */
  162. 0x2B,0x24,0x03,0x03,0x01,0x02, /* [603] OBJ_ripemd160WithRSA */
  163. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x03,0x08, /* [609] OBJ_rc5_cbc */
  164. 0x29,0x01,0x01,0x85,0x1A,0x01, /* [617] OBJ_rle_compression */
  165. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x03,0x08,/* [623] OBJ_zlib_compression */
  166. 0x55,0x1D,0x25, /* [634] OBJ_ext_key_usage */
  167. 0x2B,0x06,0x01,0x05,0x05,0x07, /* [637] OBJ_id_pkix */
  168. 0x2B,0x06,0x01,0x05,0x05,0x07,0x03, /* [643] OBJ_id_kp */
  169. 0x2B,0x06,0x01,0x05,0x05,0x07,0x03,0x01, /* [650] OBJ_server_auth */
  170. 0x2B,0x06,0x01,0x05,0x05,0x07,0x03,0x02, /* [658] OBJ_client_auth */
  171. 0x2B,0x06,0x01,0x05,0x05,0x07,0x03,0x03, /* [666] OBJ_code_sign */
  172. 0x2B,0x06,0x01,0x05,0x05,0x07,0x03,0x04, /* [674] OBJ_email_protect */
  173. 0x2B,0x06,0x01,0x05,0x05,0x07,0x03,0x08, /* [682] OBJ_time_stamp */
  174. 0x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x02,0x01,0x15,/* [690] OBJ_ms_code_ind */
  175. 0x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x02,0x01,0x16,/* [700] OBJ_ms_code_com */
  176. 0x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x0A,0x03,0x01,/* [710] OBJ_ms_ctl_sign */
  177. 0x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x0A,0x03,0x03,/* [720] OBJ_ms_sgc */
  178. 0x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x0A,0x03,0x04,/* [730] OBJ_ms_efs */
  179. 0x60,0x86,0x48,0x01,0x86,0xF8,0x42,0x04,0x01,/* [740] OBJ_ns_sgc */
  180. 0x55,0x1D,0x1B, /* [749] OBJ_delta_crl */
  181. 0x55,0x1D,0x15, /* [752] OBJ_crl_reason */
  182. 0x55,0x1D,0x18, /* [755] OBJ_invalidity_date */
  183. 0x2B,0x65,0x01,0x04,0x01, /* [758] OBJ_sxnet */
  184. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x01,0x01,/* [763] OBJ_pbe_WithSHA1And128BitRC4 */
  185. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x01,0x02,/* [773] OBJ_pbe_WithSHA1And40BitRC4 */
  186. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x01,0x03,/* [783] OBJ_pbe_WithSHA1And3_Key_TripleDES_CBC */
  187. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x01,0x04,/* [793] OBJ_pbe_WithSHA1And2_Key_TripleDES_CBC */
  188. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x01,0x05,/* [803] OBJ_pbe_WithSHA1And128BitRC2_CBC */
  189. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x01,0x06,/* [813] OBJ_pbe_WithSHA1And40BitRC2_CBC */
  190. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x0A,0x01,0x01,/* [823] OBJ_keyBag */
  191. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x0A,0x01,0x02,/* [834] OBJ_pkcs8ShroudedKeyBag */
  192. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x0A,0x01,0x03,/* [845] OBJ_certBag */
  193. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x0A,0x01,0x04,/* [856] OBJ_crlBag */
  194. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x0A,0x01,0x05,/* [867] OBJ_secretBag */
  195. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x0C,0x0A,0x01,0x06,/* [878] OBJ_safeContentsBag */
  196. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x14,/* [889] OBJ_friendlyName */
  197. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x15,/* [898] OBJ_localKeyID */
  198. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x16,0x01,/* [907] OBJ_x509Certificate */
  199. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x16,0x02,/* [917] OBJ_sdsiCertificate */
  200. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x17,0x01,/* [927] OBJ_x509Crl */
  201. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x05,0x0D,/* [937] OBJ_pbes2 */
  202. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x05,0x0E,/* [946] OBJ_pbmac1 */
  203. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x02,0x07, /* [955] OBJ_hmacWithSHA1 */
  204. 0x2B,0x06,0x01,0x05,0x05,0x07,0x02,0x01, /* [963] OBJ_id_qt_cps */
  205. 0x2B,0x06,0x01,0x05,0x05,0x07,0x02,0x02, /* [971] OBJ_id_qt_unotice */
  206. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x0F,/* [979] OBJ_SMIMECapabilities */
  207. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x05,0x04,/* [988] OBJ_pbeWithMD2AndRC2_CBC */
  208. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x05,0x06,/* [997] OBJ_pbeWithMD5AndRC2_CBC */
  209. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x05,0x0A,/* [1006] OBJ_pbeWithSHA1AndDES_CBC */
  210. 0x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x02,0x01,0x0E,/* [1015] OBJ_ms_ext_req */
  211. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x0E,/* [1025] OBJ_ext_req */
  212. 0x55,0x04,0x29, /* [1034] OBJ_name */
  213. 0x55,0x04,0x2E, /* [1037] OBJ_dnQualifier */
  214. 0x2B,0x06,0x01,0x05,0x05,0x07,0x01, /* [1040] OBJ_id_pe */
  215. 0x2B,0x06,0x01,0x05,0x05,0x07,0x30, /* [1047] OBJ_id_ad */
  216. 0x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x01, /* [1054] OBJ_info_access */
  217. 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01, /* [1062] OBJ_ad_OCSP */
  218. 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x02, /* [1070] OBJ_ad_ca_issuers */
  219. 0x2B,0x06,0x01,0x05,0x05,0x07,0x03,0x09, /* [1078] OBJ_OCSP_sign */
  220. 0x28, /* [1086] OBJ_iso */
  221. 0x2A, /* [1087] OBJ_member_body */
  222. 0x2A,0x86,0x48, /* [1088] OBJ_ISO_US */
  223. 0x2A,0x86,0x48,0xCE,0x38, /* [1091] OBJ_X9_57 */
  224. 0x2A,0x86,0x48,0xCE,0x38,0x04, /* [1096] OBJ_X9cm */
  225. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01, /* [1102] OBJ_pkcs1 */
  226. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x05, /* [1110] OBJ_pkcs5 */
  227. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,/* [1118] OBJ_SMIME */
  228. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x00,/* [1127] OBJ_id_smime_mod */
  229. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,/* [1137] OBJ_id_smime_ct */
  230. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,/* [1147] OBJ_id_smime_aa */
  231. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x03,/* [1157] OBJ_id_smime_alg */
  232. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x04,/* [1167] OBJ_id_smime_cd */
  233. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x05,/* [1177] OBJ_id_smime_spq */
  234. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x06,/* [1187] OBJ_id_smime_cti */
  235. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x00,0x01,/* [1197] OBJ_id_smime_mod_cms */
  236. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x00,0x02,/* [1208] OBJ_id_smime_mod_ess */
  237. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x00,0x03,/* [1219] OBJ_id_smime_mod_oid */
  238. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x00,0x04,/* [1230] OBJ_id_smime_mod_msg_v3 */
  239. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x00,0x05,/* [1241] OBJ_id_smime_mod_ets_eSignature_88 */
  240. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x00,0x06,/* [1252] OBJ_id_smime_mod_ets_eSignature_97 */
  241. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x00,0x07,/* [1263] OBJ_id_smime_mod_ets_eSigPolicy_88 */
  242. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x00,0x08,/* [1274] OBJ_id_smime_mod_ets_eSigPolicy_97 */
  243. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,0x01,/* [1285] OBJ_id_smime_ct_receipt */
  244. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,0x02,/* [1296] OBJ_id_smime_ct_authData */
  245. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,0x03,/* [1307] OBJ_id_smime_ct_publishCert */
  246. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,0x04,/* [1318] OBJ_id_smime_ct_TSTInfo */
  247. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,0x05,/* [1329] OBJ_id_smime_ct_TDTInfo */
  248. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,0x06,/* [1340] OBJ_id_smime_ct_contentInfo */
  249. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,0x07,/* [1351] OBJ_id_smime_ct_DVCSRequestData */
  250. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,0x08,/* [1362] OBJ_id_smime_ct_DVCSResponseData */
  251. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x01,/* [1373] OBJ_id_smime_aa_receiptRequest */
  252. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x02,/* [1384] OBJ_id_smime_aa_securityLabel */
  253. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x03,/* [1395] OBJ_id_smime_aa_mlExpandHistory */
  254. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x04,/* [1406] OBJ_id_smime_aa_contentHint */
  255. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x05,/* [1417] OBJ_id_smime_aa_msgSigDigest */
  256. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x06,/* [1428] OBJ_id_smime_aa_encapContentType */
  257. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x07,/* [1439] OBJ_id_smime_aa_contentIdentifier */
  258. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x08,/* [1450] OBJ_id_smime_aa_macValue */
  259. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x09,/* [1461] OBJ_id_smime_aa_equivalentLabels */
  260. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x0A,/* [1472] OBJ_id_smime_aa_contentReference */
  261. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x0B,/* [1483] OBJ_id_smime_aa_encrypKeyPref */
  262. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x0C,/* [1494] OBJ_id_smime_aa_signingCertificate */
  263. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x0D,/* [1505] OBJ_id_smime_aa_smimeEncryptCerts */
  264. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x0E,/* [1516] OBJ_id_smime_aa_timeStampToken */
  265. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x0F,/* [1527] OBJ_id_smime_aa_ets_sigPolicyId */
  266. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x10,/* [1538] OBJ_id_smime_aa_ets_commitmentType */
  267. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x11,/* [1549] OBJ_id_smime_aa_ets_signerLocation */
  268. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x12,/* [1560] OBJ_id_smime_aa_ets_signerAttr */
  269. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x13,/* [1571] OBJ_id_smime_aa_ets_otherSigCert */
  270. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x14,/* [1582] OBJ_id_smime_aa_ets_contentTimestamp */
  271. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x15,/* [1593] OBJ_id_smime_aa_ets_CertificateRefs */
  272. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x16,/* [1604] OBJ_id_smime_aa_ets_RevocationRefs */
  273. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x17,/* [1615] OBJ_id_smime_aa_ets_certValues */
  274. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x18,/* [1626] OBJ_id_smime_aa_ets_revocationValues */
  275. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x19,/* [1637] OBJ_id_smime_aa_ets_escTimeStamp */
  276. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x1A,/* [1648] OBJ_id_smime_aa_ets_certCRLTimestamp */
  277. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x1B,/* [1659] OBJ_id_smime_aa_ets_archiveTimeStamp */
  278. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x1C,/* [1670] OBJ_id_smime_aa_signatureType */
  279. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x02,0x1D,/* [1681] OBJ_id_smime_aa_dvcs_dvc */
  280. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x03,0x01,/* [1692] OBJ_id_smime_alg_ESDHwith3DES */
  281. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x03,0x02,/* [1703] OBJ_id_smime_alg_ESDHwithRC2 */
  282. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x03,0x03,/* [1714] OBJ_id_smime_alg_3DESwrap */
  283. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x03,0x04,/* [1725] OBJ_id_smime_alg_RC2wrap */
  284. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x03,0x05,/* [1736] OBJ_id_smime_alg_ESDH */
  285. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x03,0x06,/* [1747] OBJ_id_smime_alg_CMS3DESwrap */
  286. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x03,0x07,/* [1758] OBJ_id_smime_alg_CMSRC2wrap */
  287. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x04,0x01,/* [1769] OBJ_id_smime_cd_ldap */
  288. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x05,0x01,/* [1780] OBJ_id_smime_spq_ets_sqt_uri */
  289. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x05,0x02,/* [1791] OBJ_id_smime_spq_ets_sqt_unotice */
  290. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x06,0x01,/* [1802] OBJ_id_smime_cti_ets_proofOfOrigin */
  291. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x06,0x02,/* [1813] OBJ_id_smime_cti_ets_proofOfReceipt */
  292. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x06,0x03,/* [1824] OBJ_id_smime_cti_ets_proofOfDelivery */
  293. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x06,0x04,/* [1835] OBJ_id_smime_cti_ets_proofOfSender */
  294. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x06,0x05,/* [1846] OBJ_id_smime_cti_ets_proofOfApproval */
  295. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x06,0x06,/* [1857] OBJ_id_smime_cti_ets_proofOfCreation */
  296. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x02,0x04, /* [1868] OBJ_md4 */
  297. 0x2B,0x06,0x01,0x05,0x05,0x07,0x00, /* [1876] OBJ_id_pkix_mod */
  298. 0x2B,0x06,0x01,0x05,0x05,0x07,0x02, /* [1883] OBJ_id_qt */
  299. 0x2B,0x06,0x01,0x05,0x05,0x07,0x04, /* [1890] OBJ_id_it */
  300. 0x2B,0x06,0x01,0x05,0x05,0x07,0x05, /* [1897] OBJ_id_pkip */
  301. 0x2B,0x06,0x01,0x05,0x05,0x07,0x06, /* [1904] OBJ_id_alg */
  302. 0x2B,0x06,0x01,0x05,0x05,0x07,0x07, /* [1911] OBJ_id_cmc */
  303. 0x2B,0x06,0x01,0x05,0x05,0x07,0x08, /* [1918] OBJ_id_on */
  304. 0x2B,0x06,0x01,0x05,0x05,0x07,0x09, /* [1925] OBJ_id_pda */
  305. 0x2B,0x06,0x01,0x05,0x05,0x07,0x0A, /* [1932] OBJ_id_aca */
  306. 0x2B,0x06,0x01,0x05,0x05,0x07,0x0B, /* [1939] OBJ_id_qcs */
  307. 0x2B,0x06,0x01,0x05,0x05,0x07,0x0C, /* [1946] OBJ_id_cct */
  308. 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x01, /* [1953] OBJ_id_pkix1_explicit_88 */
  309. 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x02, /* [1961] OBJ_id_pkix1_implicit_88 */
  310. 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x03, /* [1969] OBJ_id_pkix1_explicit_93 */
  311. 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x04, /* [1977] OBJ_id_pkix1_implicit_93 */
  312. 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x05, /* [1985] OBJ_id_mod_crmf */
  313. 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x06, /* [1993] OBJ_id_mod_cmc */
  314. 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x07, /* [2001] OBJ_id_mod_kea_profile_88 */
  315. 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x08, /* [2009] OBJ_id_mod_kea_profile_93 */
  316. 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x09, /* [2017] OBJ_id_mod_cmp */
  317. 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x0A, /* [2025] OBJ_id_mod_qualified_cert_88 */
  318. 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x0B, /* [2033] OBJ_id_mod_qualified_cert_93 */
  319. 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x0C, /* [2041] OBJ_id_mod_attribute_cert */
  320. 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x0D, /* [2049] OBJ_id_mod_timestamp_protocol */
  321. 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x0E, /* [2057] OBJ_id_mod_ocsp */
  322. 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x0F, /* [2065] OBJ_id_mod_dvcs */
  323. 0x2B,0x06,0x01,0x05,0x05,0x07,0x00,0x10, /* [2073] OBJ_id_mod_cmp2000 */
  324. 0x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x02, /* [2081] OBJ_biometricInfo */
  325. 0x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x03, /* [2089] OBJ_qcStatements */
  326. 0x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x04, /* [2097] OBJ_ac_auditEntity */
  327. 0x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x05, /* [2105] OBJ_ac_targeting */
  328. 0x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x06, /* [2113] OBJ_aaControls */
  329. 0x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x07, /* [2121] OBJ_sbgp_ipAddrBlock */
  330. 0x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x08, /* [2129] OBJ_sbgp_autonomousSysNum */
  331. 0x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x09, /* [2137] OBJ_sbgp_routerIdentifier */
  332. 0x2B,0x06,0x01,0x05,0x05,0x07,0x02,0x03, /* [2145] OBJ_textNotice */
  333. 0x2B,0x06,0x01,0x05,0x05,0x07,0x03,0x05, /* [2153] OBJ_ipsecEndSystem */
  334. 0x2B,0x06,0x01,0x05,0x05,0x07,0x03,0x06, /* [2161] OBJ_ipsecTunnel */
  335. 0x2B,0x06,0x01,0x05,0x05,0x07,0x03,0x07, /* [2169] OBJ_ipsecUser */
  336. 0x2B,0x06,0x01,0x05,0x05,0x07,0x03,0x0A, /* [2177] OBJ_dvcs */
  337. 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x01, /* [2185] OBJ_id_it_caProtEncCert */
  338. 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x02, /* [2193] OBJ_id_it_signKeyPairTypes */
  339. 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x03, /* [2201] OBJ_id_it_encKeyPairTypes */
  340. 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x04, /* [2209] OBJ_id_it_preferredSymmAlg */
  341. 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x05, /* [2217] OBJ_id_it_caKeyUpdateInfo */
  342. 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x06, /* [2225] OBJ_id_it_currentCRL */
  343. 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x07, /* [2233] OBJ_id_it_unsupportedOIDs */
  344. 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x08, /* [2241] OBJ_id_it_subscriptionRequest */
  345. 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x09, /* [2249] OBJ_id_it_subscriptionResponse */
  346. 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x0A, /* [2257] OBJ_id_it_keyPairParamReq */
  347. 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x0B, /* [2265] OBJ_id_it_keyPairParamRep */
  348. 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x0C, /* [2273] OBJ_id_it_revPassphrase */
  349. 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x0D, /* [2281] OBJ_id_it_implicitConfirm */
  350. 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x0E, /* [2289] OBJ_id_it_confirmWaitTime */
  351. 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x0F, /* [2297] OBJ_id_it_origPKIMessage */
  352. 0x2B,0x06,0x01,0x05,0x05,0x07,0x05,0x01, /* [2305] OBJ_id_regCtrl */
  353. 0x2B,0x06,0x01,0x05,0x05,0x07,0x05,0x02, /* [2313] OBJ_id_regInfo */
  354. 0x2B,0x06,0x01,0x05,0x05,0x07,0x05,0x01,0x01,/* [2321] OBJ_id_regCtrl_regToken */
  355. 0x2B,0x06,0x01,0x05,0x05,0x07,0x05,0x01,0x02,/* [2330] OBJ_id_regCtrl_authenticator */
  356. 0x2B,0x06,0x01,0x05,0x05,0x07,0x05,0x01,0x03,/* [2339] OBJ_id_regCtrl_pkiPublicationInfo */
  357. 0x2B,0x06,0x01,0x05,0x05,0x07,0x05,0x01,0x04,/* [2348] OBJ_id_regCtrl_pkiArchiveOptions */
  358. 0x2B,0x06,0x01,0x05,0x05,0x07,0x05,0x01,0x05,/* [2357] OBJ_id_regCtrl_oldCertID */
  359. 0x2B,0x06,0x01,0x05,0x05,0x07,0x05,0x01,0x06,/* [2366] OBJ_id_regCtrl_protocolEncrKey */
  360. 0x2B,0x06,0x01,0x05,0x05,0x07,0x05,0x02,0x01,/* [2375] OBJ_id_regInfo_utf8Pairs */
  361. 0x2B,0x06,0x01,0x05,0x05,0x07,0x05,0x02,0x02,/* [2384] OBJ_id_regInfo_certReq */
  362. 0x2B,0x06,0x01,0x05,0x05,0x07,0x06,0x01, /* [2393] OBJ_id_alg_des40 */
  363. 0x2B,0x06,0x01,0x05,0x05,0x07,0x06,0x02, /* [2401] OBJ_id_alg_noSignature */
  364. 0x2B,0x06,0x01,0x05,0x05,0x07,0x06,0x03, /* [2409] OBJ_id_alg_dh_sig_hmac_sha1 */
  365. 0x2B,0x06,0x01,0x05,0x05,0x07,0x06,0x04, /* [2417] OBJ_id_alg_dh_pop */
  366. 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x01, /* [2425] OBJ_id_cmc_statusInfo */
  367. 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x02, /* [2433] OBJ_id_cmc_identification */
  368. 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x03, /* [2441] OBJ_id_cmc_identityProof */
  369. 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x04, /* [2449] OBJ_id_cmc_dataReturn */
  370. 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x05, /* [2457] OBJ_id_cmc_transactionId */
  371. 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x06, /* [2465] OBJ_id_cmc_senderNonce */
  372. 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x07, /* [2473] OBJ_id_cmc_recipientNonce */
  373. 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x08, /* [2481] OBJ_id_cmc_addExtensions */
  374. 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x09, /* [2489] OBJ_id_cmc_encryptedPOP */
  375. 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x0A, /* [2497] OBJ_id_cmc_decryptedPOP */
  376. 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x0B, /* [2505] OBJ_id_cmc_lraPOPWitness */
  377. 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x0F, /* [2513] OBJ_id_cmc_getCert */
  378. 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x10, /* [2521] OBJ_id_cmc_getCRL */
  379. 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x11, /* [2529] OBJ_id_cmc_revokeRequest */
  380. 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x12, /* [2537] OBJ_id_cmc_regInfo */
  381. 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x13, /* [2545] OBJ_id_cmc_responseInfo */
  382. 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x15, /* [2553] OBJ_id_cmc_queryPending */
  383. 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x16, /* [2561] OBJ_id_cmc_popLinkRandom */
  384. 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x17, /* [2569] OBJ_id_cmc_popLinkWitness */
  385. 0x2B,0x06,0x01,0x05,0x05,0x07,0x07,0x18, /* [2577] OBJ_id_cmc_confirmCertAcceptance */
  386. 0x2B,0x06,0x01,0x05,0x05,0x07,0x08,0x01, /* [2585] OBJ_id_on_personalData */
  387. 0x2B,0x06,0x01,0x05,0x05,0x07,0x09,0x01, /* [2593] OBJ_id_pda_dateOfBirth */
  388. 0x2B,0x06,0x01,0x05,0x05,0x07,0x09,0x02, /* [2601] OBJ_id_pda_placeOfBirth */
  389. 0x2B,0x06,0x01,0x05,0x05,0x07,0x09,0x03, /* [2609] OBJ_id_pda_gender */
  390. 0x2B,0x06,0x01,0x05,0x05,0x07,0x09,0x04, /* [2617] OBJ_id_pda_countryOfCitizenship */
  391. 0x2B,0x06,0x01,0x05,0x05,0x07,0x09,0x05, /* [2625] OBJ_id_pda_countryOfResidence */
  392. 0x2B,0x06,0x01,0x05,0x05,0x07,0x0A,0x01, /* [2633] OBJ_id_aca_authenticationInfo */
  393. 0x2B,0x06,0x01,0x05,0x05,0x07,0x0A,0x02, /* [2641] OBJ_id_aca_accessIdentity */
  394. 0x2B,0x06,0x01,0x05,0x05,0x07,0x0A,0x03, /* [2649] OBJ_id_aca_chargingIdentity */
  395. 0x2B,0x06,0x01,0x05,0x05,0x07,0x0A,0x04, /* [2657] OBJ_id_aca_group */
  396. 0x2B,0x06,0x01,0x05,0x05,0x07,0x0A,0x05, /* [2665] OBJ_id_aca_role */
  397. 0x2B,0x06,0x01,0x05,0x05,0x07,0x0B,0x01, /* [2673] OBJ_id_qcs_pkixQCSyntax_v1 */
  398. 0x2B,0x06,0x01,0x05,0x05,0x07,0x0C,0x01, /* [2681] OBJ_id_cct_crs */
  399. 0x2B,0x06,0x01,0x05,0x05,0x07,0x0C,0x02, /* [2689] OBJ_id_cct_PKIData */
  400. 0x2B,0x06,0x01,0x05,0x05,0x07,0x0C,0x03, /* [2697] OBJ_id_cct_PKIResponse */
  401. 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x03, /* [2705] OBJ_ad_timeStamping */
  402. 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x04, /* [2713] OBJ_ad_dvcs */
  403. 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x01,/* [2721] OBJ_id_pkix_OCSP_basic */
  404. 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x02,/* [2730] OBJ_id_pkix_OCSP_Nonce */
  405. 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x03,/* [2739] OBJ_id_pkix_OCSP_CrlID */
  406. 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x04,/* [2748] OBJ_id_pkix_OCSP_acceptableResponses */
  407. 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x05,/* [2757] OBJ_id_pkix_OCSP_noCheck */
  408. 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x06,/* [2766] OBJ_id_pkix_OCSP_archiveCutoff */
  409. 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x07,/* [2775] OBJ_id_pkix_OCSP_serviceLocator */
  410. 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x08,/* [2784] OBJ_id_pkix_OCSP_extendedStatus */
  411. 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x09,/* [2793] OBJ_id_pkix_OCSP_valid */
  412. 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x0A,/* [2802] OBJ_id_pkix_OCSP_path */
  413. 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x01,0x0B,/* [2811] OBJ_id_pkix_OCSP_trustRoot */
  414. 0x2B,0x0E,0x03,0x02, /* [2820] OBJ_algorithm */
  415. 0x2B,0x0E,0x03,0x02,0x0B, /* [2824] OBJ_rsaSignature */
  416. 0x55,0x08, /* [2829] OBJ_X500algorithms */
  417. 0x2B, /* [2831] OBJ_org */
  418. 0x2B,0x06, /* [2832] OBJ_dod */
  419. 0x2B,0x06,0x01, /* [2834] OBJ_iana */
  420. 0x2B,0x06,0x01,0x01, /* [2837] OBJ_Directory */
  421. 0x2B,0x06,0x01,0x02, /* [2841] OBJ_Management */
  422. 0x2B,0x06,0x01,0x03, /* [2845] OBJ_Experimental */
  423. 0x2B,0x06,0x01,0x04, /* [2849] OBJ_Private */
  424. 0x2B,0x06,0x01,0x05, /* [2853] OBJ_Security */
  425. 0x2B,0x06,0x01,0x06, /* [2857] OBJ_SNMPv2 */
  426. 0x2B,0x06,0x01,0x07, /* [2861] OBJ_Mail */
  427. 0x2B,0x06,0x01,0x04,0x01, /* [2865] OBJ_Enterprises */
  428. 0x2B,0x06,0x01,0x04,0x01,0x8B,0x3A,0x82,0x58,/* [2870] OBJ_dcObject */
  429. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x19,/* [2879] OBJ_domainComponent */
  430. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x0D,/* [2889] OBJ_Domain */
  431. 0x00, /* [2899] OBJ_joint_iso_ccitt */
  432. 0x55,0x01,0x05, /* [2900] OBJ_selected_attribute_types */
  433. 0x55,0x01,0x05,0x37, /* [2903] OBJ_clearance */
  434. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x03,/* [2907] OBJ_md4WithRSAEncryption */
  435. 0x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x0A, /* [2916] OBJ_ac_proxying */
  436. 0x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x0B, /* [2924] OBJ_sinfo_access */
  437. 0x2B,0x06,0x01,0x05,0x05,0x07,0x0A,0x06, /* [2932] OBJ_id_aca_encAttrs */
  438. 0x55,0x04,0x48, /* [2940] OBJ_role */
  439. 0x55,0x1D,0x24, /* [2943] OBJ_policy_constraints */
  440. 0x55,0x1D,0x37, /* [2946] OBJ_target_information */
  441. 0x55,0x1D,0x38, /* [2949] OBJ_no_rev_avail */
  442. 0x00, /* [2952] OBJ_ccitt */
  443. 0x2A,0x86,0x48,0xCE,0x3D, /* [2953] OBJ_ansi_X9_62 */
  444. 0x2A,0x86,0x48,0xCE,0x3D,0x01,0x01, /* [2958] OBJ_X9_62_prime_field */
  445. 0x2A,0x86,0x48,0xCE,0x3D,0x01,0x02, /* [2965] OBJ_X9_62_characteristic_two_field */
  446. 0x2A,0x86,0x48,0xCE,0x3D,0x02,0x01, /* [2972] OBJ_X9_62_id_ecPublicKey */
  447. 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x01,0x01, /* [2979] OBJ_X9_62_prime192v1 */
  448. 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x01,0x02, /* [2987] OBJ_X9_62_prime192v2 */
  449. 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x01,0x03, /* [2995] OBJ_X9_62_prime192v3 */
  450. 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x01,0x04, /* [3003] OBJ_X9_62_prime239v1 */
  451. 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x01,0x05, /* [3011] OBJ_X9_62_prime239v2 */
  452. 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x01,0x06, /* [3019] OBJ_X9_62_prime239v3 */
  453. 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x01,0x07, /* [3027] OBJ_X9_62_prime256v1 */
  454. 0x2A,0x86,0x48,0xCE,0x3D,0x04,0x01, /* [3035] OBJ_ecdsa_with_SHA1 */
  455. 0x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x11,0x01,/* [3042] OBJ_ms_csp_name */
  456. 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x01,/* [3051] OBJ_aes_128_ecb */
  457. 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x02,/* [3060] OBJ_aes_128_cbc */
  458. 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x03,/* [3069] OBJ_aes_128_ofb128 */
  459. 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x04,/* [3078] OBJ_aes_128_cfb128 */
  460. 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x15,/* [3087] OBJ_aes_192_ecb */
  461. 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x16,/* [3096] OBJ_aes_192_cbc */
  462. 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x17,/* [3105] OBJ_aes_192_ofb128 */
  463. 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x18,/* [3114] OBJ_aes_192_cfb128 */
  464. 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x29,/* [3123] OBJ_aes_256_ecb */
  465. 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x2A,/* [3132] OBJ_aes_256_cbc */
  466. 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x2B,/* [3141] OBJ_aes_256_ofb128 */
  467. 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x2C,/* [3150] OBJ_aes_256_cfb128 */
  468. 0x55,0x1D,0x17, /* [3159] OBJ_hold_instruction_code */
  469. 0x2A,0x86,0x48,0xCE,0x38,0x02,0x01, /* [3162] OBJ_hold_instruction_none */
  470. 0x2A,0x86,0x48,0xCE,0x38,0x02,0x02, /* [3169] OBJ_hold_instruction_call_issuer */
  471. 0x2A,0x86,0x48,0xCE,0x38,0x02,0x03, /* [3176] OBJ_hold_instruction_reject */
  472. 0x09, /* [3183] OBJ_data */
  473. 0x09,0x92,0x26, /* [3184] OBJ_pss */
  474. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C, /* [3187] OBJ_ucl */
  475. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64, /* [3194] OBJ_pilot */
  476. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,/* [3202] OBJ_pilotAttributeType */
  477. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x03,/* [3211] OBJ_pilotAttributeSyntax */
  478. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,/* [3220] OBJ_pilotObjectClass */
  479. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x0A,/* [3229] OBJ_pilotGroups */
  480. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x03,0x04,/* [3238] OBJ_iA5StringSyntax */
  481. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x03,0x05,/* [3248] OBJ_caseIgnoreIA5StringSyntax */
  482. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x03,/* [3258] OBJ_pilotObject */
  483. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x04,/* [3268] OBJ_pilotPerson */
  484. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x05,/* [3278] OBJ_account */
  485. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x06,/* [3288] OBJ_document */
  486. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x07,/* [3298] OBJ_room */
  487. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x09,/* [3308] OBJ_documentSeries */
  488. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x0E,/* [3318] OBJ_rFC822localPart */
  489. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x0F,/* [3328] OBJ_dNSDomain */
  490. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x11,/* [3338] OBJ_domainRelatedObject */
  491. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x12,/* [3348] OBJ_friendlyCountry */
  492. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x13,/* [3358] OBJ_simpleSecurityObject */
  493. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x14,/* [3368] OBJ_pilotOrganization */
  494. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x15,/* [3378] OBJ_pilotDSA */
  495. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x04,0x16,/* [3388] OBJ_qualityLabelledData */
  496. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x01,/* [3398] OBJ_userId */
  497. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x02,/* [3408] OBJ_textEncodedORAddress */
  498. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x03,/* [3418] OBJ_rfc822Mailbox */
  499. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x04,/* [3428] OBJ_info */
  500. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x05,/* [3438] OBJ_favouriteDrink */
  501. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x06,/* [3448] OBJ_roomNumber */
  502. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x07,/* [3458] OBJ_photo */
  503. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x08,/* [3468] OBJ_userClass */
  504. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x09,/* [3478] OBJ_host */
  505. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x0A,/* [3488] OBJ_manager */
  506. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x0B,/* [3498] OBJ_documentIdentifier */
  507. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x0C,/* [3508] OBJ_documentTitle */
  508. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x0D,/* [3518] OBJ_documentVersion */
  509. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x0E,/* [3528] OBJ_documentAuthor */
  510. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x0F,/* [3538] OBJ_documentLocation */
  511. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x14,/* [3548] OBJ_homeTelephoneNumber */
  512. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x15,/* [3558] OBJ_secretary */
  513. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x16,/* [3568] OBJ_otherMailbox */
  514. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x17,/* [3578] OBJ_lastModifiedTime */
  515. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x18,/* [3588] OBJ_lastModifiedBy */
  516. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x1A,/* [3598] OBJ_aRecord */
  517. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x1B,/* [3608] OBJ_pilotAttributeType27 */
  518. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x1C,/* [3618] OBJ_mXRecord */
  519. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x1D,/* [3628] OBJ_nSRecord */
  520. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x1E,/* [3638] OBJ_sOARecord */
  521. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x1F,/* [3648] OBJ_cNAMERecord */
  522. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x25,/* [3658] OBJ_associatedDomain */
  523. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x26,/* [3668] OBJ_associatedName */
  524. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x27,/* [3678] OBJ_homePostalAddress */
  525. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x28,/* [3688] OBJ_personalTitle */
  526. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x29,/* [3698] OBJ_mobileTelephoneNumber */
  527. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x2A,/* [3708] OBJ_pagerTelephoneNumber */
  528. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x2B,/* [3718] OBJ_friendlyCountryName */
  529. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x2D,/* [3728] OBJ_organizationalStatus */
  530. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x2E,/* [3738] OBJ_janetMailbox */
  531. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x2F,/* [3748] OBJ_mailPreferenceOption */
  532. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x30,/* [3758] OBJ_buildingName */
  533. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x31,/* [3768] OBJ_dSAQuality */
  534. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x32,/* [3778] OBJ_singleLevelQuality */
  535. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x33,/* [3788] OBJ_subtreeMinimumQuality */
  536. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x34,/* [3798] OBJ_subtreeMaximumQuality */
  537. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x35,/* [3808] OBJ_personalSignature */
  538. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x36,/* [3818] OBJ_dITRedirect */
  539. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x37,/* [3828] OBJ_audio */
  540. 0x09,0x92,0x26,0x89,0x93,0xF2,0x2C,0x64,0x01,0x38,/* [3838] OBJ_documentPublisher */
  541. 0x55,0x04,0x2D, /* [3848] OBJ_x500UniqueIdentifier */
  542. 0x2B,0x06,0x01,0x07,0x01, /* [3851] OBJ_mime_mhs */
  543. 0x2B,0x06,0x01,0x07,0x01,0x01, /* [3856] OBJ_mime_mhs_headings */
  544. 0x2B,0x06,0x01,0x07,0x01,0x02, /* [3862] OBJ_mime_mhs_bodies */
  545. 0x2B,0x06,0x01,0x07,0x01,0x01,0x01, /* [3868] OBJ_id_hex_partial_message */
  546. 0x2B,0x06,0x01,0x07,0x01,0x01,0x02, /* [3875] OBJ_id_hex_multipart_message */
  547. 0x55,0x04,0x2C, /* [3882] OBJ_generationQualifier */
  548. 0x55,0x04,0x41, /* [3885] OBJ_pseudonym */
  549. 0x67,0x2A, /* [3888] OBJ_id_set */
  550. 0x67,0x2A,0x00, /* [3890] OBJ_set_ctype */
  551. 0x67,0x2A,0x01, /* [3893] OBJ_set_msgExt */
  552. 0x67,0x2A,0x03, /* [3896] OBJ_set_attr */
  553. 0x67,0x2A,0x05, /* [3899] OBJ_set_policy */
  554. 0x67,0x2A,0x07, /* [3902] OBJ_set_certExt */
  555. 0x67,0x2A,0x08, /* [3905] OBJ_set_brand */
  556. 0x67,0x2A,0x00,0x00, /* [3908] OBJ_setct_PANData */
  557. 0x67,0x2A,0x00,0x01, /* [3912] OBJ_setct_PANToken */
  558. 0x67,0x2A,0x00,0x02, /* [3916] OBJ_setct_PANOnly */
  559. 0x67,0x2A,0x00,0x03, /* [3920] OBJ_setct_OIData */
  560. 0x67,0x2A,0x00,0x04, /* [3924] OBJ_setct_PI */
  561. 0x67,0x2A,0x00,0x05, /* [3928] OBJ_setct_PIData */
  562. 0x67,0x2A,0x00,0x06, /* [3932] OBJ_setct_PIDataUnsigned */
  563. 0x67,0x2A,0x00,0x07, /* [3936] OBJ_setct_HODInput */
  564. 0x67,0x2A,0x00,0x08, /* [3940] OBJ_setct_AuthResBaggage */
  565. 0x67,0x2A,0x00,0x09, /* [3944] OBJ_setct_AuthRevReqBaggage */
  566. 0x67,0x2A,0x00,0x0A, /* [3948] OBJ_setct_AuthRevResBaggage */
  567. 0x67,0x2A,0x00,0x0B, /* [3952] OBJ_setct_CapTokenSeq */
  568. 0x67,0x2A,0x00,0x0C, /* [3956] OBJ_setct_PInitResData */
  569. 0x67,0x2A,0x00,0x0D, /* [3960] OBJ_setct_PI_TBS */
  570. 0x67,0x2A,0x00,0x0E, /* [3964] OBJ_setct_PResData */
  571. 0x67,0x2A,0x00,0x10, /* [3968] OBJ_setct_AuthReqTBS */
  572. 0x67,0x2A,0x00,0x11, /* [3972] OBJ_setct_AuthResTBS */
  573. 0x67,0x2A,0x00,0x12, /* [3976] OBJ_setct_AuthResTBSX */
  574. 0x67,0x2A,0x00,0x13, /* [3980] OBJ_setct_AuthTokenTBS */
  575. 0x67,0x2A,0x00,0x14, /* [3984] OBJ_setct_CapTokenData */
  576. 0x67,0x2A,0x00,0x15, /* [3988] OBJ_setct_CapTokenTBS */
  577. 0x67,0x2A,0x00,0x16, /* [3992] OBJ_setct_AcqCardCodeMsg */
  578. 0x67,0x2A,0x00,0x17, /* [3996] OBJ_setct_AuthRevReqTBS */
  579. 0x67,0x2A,0x00,0x18, /* [4000] OBJ_setct_AuthRevResData */
  580. 0x67,0x2A,0x00,0x19, /* [4004] OBJ_setct_AuthRevResTBS */
  581. 0x67,0x2A,0x00,0x1A, /* [4008] OBJ_setct_CapReqTBS */
  582. 0x67,0x2A,0x00,0x1B, /* [4012] OBJ_setct_CapReqTBSX */
  583. 0x67,0x2A,0x00,0x1C, /* [4016] OBJ_setct_CapResData */
  584. 0x67,0x2A,0x00,0x1D, /* [4020] OBJ_setct_CapRevReqTBS */
  585. 0x67,0x2A,0x00,0x1E, /* [4024] OBJ_setct_CapRevReqTBSX */
  586. 0x67,0x2A,0x00,0x1F, /* [4028] OBJ_setct_CapRevResData */
  587. 0x67,0x2A,0x00,0x20, /* [4032] OBJ_setct_CredReqTBS */
  588. 0x67,0x2A,0x00,0x21, /* [4036] OBJ_setct_CredReqTBSX */
  589. 0x67,0x2A,0x00,0x22, /* [4040] OBJ_setct_CredResData */
  590. 0x67,0x2A,0x00,0x23, /* [4044] OBJ_setct_CredRevReqTBS */
  591. 0x67,0x2A,0x00,0x24, /* [4048] OBJ_setct_CredRevReqTBSX */
  592. 0x67,0x2A,0x00,0x25, /* [4052] OBJ_setct_CredRevResData */
  593. 0x67,0x2A,0x00,0x26, /* [4056] OBJ_setct_PCertReqData */
  594. 0x67,0x2A,0x00,0x27, /* [4060] OBJ_setct_PCertResTBS */
  595. 0x67,0x2A,0x00,0x28, /* [4064] OBJ_setct_BatchAdminReqData */
  596. 0x67,0x2A,0x00,0x29, /* [4068] OBJ_setct_BatchAdminResData */
  597. 0x67,0x2A,0x00,0x2A, /* [4072] OBJ_setct_CardCInitResTBS */
  598. 0x67,0x2A,0x00,0x2B, /* [4076] OBJ_setct_MeAqCInitResTBS */
  599. 0x67,0x2A,0x00,0x2C, /* [4080] OBJ_setct_RegFormResTBS */
  600. 0x67,0x2A,0x00,0x2D, /* [4084] OBJ_setct_CertReqData */
  601. 0x67,0x2A,0x00,0x2E, /* [4088] OBJ_setct_CertReqTBS */
  602. 0x67,0x2A,0x00,0x2F, /* [4092] OBJ_setct_CertResData */
  603. 0x67,0x2A,0x00,0x30, /* [4096] OBJ_setct_CertInqReqTBS */
  604. 0x67,0x2A,0x00,0x31, /* [4100] OBJ_setct_ErrorTBS */
  605. 0x67,0x2A,0x00,0x32, /* [4104] OBJ_setct_PIDualSignedTBE */
  606. 0x67,0x2A,0x00,0x33, /* [4108] OBJ_setct_PIUnsignedTBE */
  607. 0x67,0x2A,0x00,0x34, /* [4112] OBJ_setct_AuthReqTBE */
  608. 0x67,0x2A,0x00,0x35, /* [4116] OBJ_setct_AuthResTBE */
  609. 0x67,0x2A,0x00,0x36, /* [4120] OBJ_setct_AuthResTBEX */
  610. 0x67,0x2A,0x00,0x37, /* [4124] OBJ_setct_AuthTokenTBE */
  611. 0x67,0x2A,0x00,0x38, /* [4128] OBJ_setct_CapTokenTBE */
  612. 0x67,0x2A,0x00,0x39, /* [4132] OBJ_setct_CapTokenTBEX */
  613. 0x67,0x2A,0x00,0x3A, /* [4136] OBJ_setct_AcqCardCodeMsgTBE */
  614. 0x67,0x2A,0x00,0x3B, /* [4140] OBJ_setct_AuthRevReqTBE */
  615. 0x67,0x2A,0x00,0x3C, /* [4144] OBJ_setct_AuthRevResTBE */
  616. 0x67,0x2A,0x00,0x3D, /* [4148] OBJ_setct_AuthRevResTBEB */
  617. 0x67,0x2A,0x00,0x3E, /* [4152] OBJ_setct_CapReqTBE */
  618. 0x67,0x2A,0x00,0x3F, /* [4156] OBJ_setct_CapReqTBEX */
  619. 0x67,0x2A,0x00,0x40, /* [4160] OBJ_setct_CapResTBE */
  620. 0x67,0x2A,0x00,0x41, /* [4164] OBJ_setct_CapRevReqTBE */
  621. 0x67,0x2A,0x00,0x42, /* [4168] OBJ_setct_CapRevReqTBEX */
  622. 0x67,0x2A,0x00,0x43, /* [4172] OBJ_setct_CapRevResTBE */
  623. 0x67,0x2A,0x00,0x44, /* [4176] OBJ_setct_CredReqTBE */
  624. 0x67,0x2A,0x00,0x45, /* [4180] OBJ_setct_CredReqTBEX */
  625. 0x67,0x2A,0x00,0x46, /* [4184] OBJ_setct_CredResTBE */
  626. 0x67,0x2A,0x00,0x47, /* [4188] OBJ_setct_CredRevReqTBE */
  627. 0x67,0x2A,0x00,0x48, /* [4192] OBJ_setct_CredRevReqTBEX */
  628. 0x67,0x2A,0x00,0x49, /* [4196] OBJ_setct_CredRevResTBE */
  629. 0x67,0x2A,0x00,0x4A, /* [4200] OBJ_setct_BatchAdminReqTBE */
  630. 0x67,0x2A,0x00,0x4B, /* [4204] OBJ_setct_BatchAdminResTBE */
  631. 0x67,0x2A,0x00,0x4C, /* [4208] OBJ_setct_RegFormReqTBE */
  632. 0x67,0x2A,0x00,0x4D, /* [4212] OBJ_setct_CertReqTBE */
  633. 0x67,0x2A,0x00,0x4E, /* [4216] OBJ_setct_CertReqTBEX */
  634. 0x67,0x2A,0x00,0x4F, /* [4220] OBJ_setct_CertResTBE */
  635. 0x67,0x2A,0x00,0x50, /* [4224] OBJ_setct_CRLNotificationTBS */
  636. 0x67,0x2A,0x00,0x51, /* [4228] OBJ_setct_CRLNotificationResTBS */
  637. 0x67,0x2A,0x00,0x52, /* [4232] OBJ_setct_BCIDistributionTBS */
  638. 0x67,0x2A,0x01,0x01, /* [4236] OBJ_setext_genCrypt */
  639. 0x67,0x2A,0x01,0x03, /* [4240] OBJ_setext_miAuth */
  640. 0x67,0x2A,0x01,0x04, /* [4244] OBJ_setext_pinSecure */
  641. 0x67,0x2A,0x01,0x05, /* [4248] OBJ_setext_pinAny */
  642. 0x67,0x2A,0x01,0x07, /* [4252] OBJ_setext_track2 */
  643. 0x67,0x2A,0x01,0x08, /* [4256] OBJ_setext_cv */
  644. 0x67,0x2A,0x05,0x00, /* [4260] OBJ_set_policy_root */
  645. 0x67,0x2A,0x07,0x00, /* [4264] OBJ_setCext_hashedRoot */
  646. 0x67,0x2A,0x07,0x01, /* [4268] OBJ_setCext_certType */
  647. 0x67,0x2A,0x07,0x02, /* [4272] OBJ_setCext_merchData */
  648. 0x67,0x2A,0x07,0x03, /* [4276] OBJ_setCext_cCertRequired */
  649. 0x67,0x2A,0x07,0x04, /* [4280] OBJ_setCext_tunneling */
  650. 0x67,0x2A,0x07,0x05, /* [4284] OBJ_setCext_setExt */
  651. 0x67,0x2A,0x07,0x06, /* [4288] OBJ_setCext_setQualf */
  652. 0x67,0x2A,0x07,0x07, /* [4292] OBJ_setCext_PGWYcapabilities */
  653. 0x67,0x2A,0x07,0x08, /* [4296] OBJ_setCext_TokenIdentifier */
  654. 0x67,0x2A,0x07,0x09, /* [4300] OBJ_setCext_Track2Data */
  655. 0x67,0x2A,0x07,0x0A, /* [4304] OBJ_setCext_TokenType */
  656. 0x67,0x2A,0x07,0x0B, /* [4308] OBJ_setCext_IssuerCapabilities */
  657. 0x67,0x2A,0x03,0x00, /* [4312] OBJ_setAttr_Cert */
  658. 0x67,0x2A,0x03,0x01, /* [4316] OBJ_setAttr_PGWYcap */
  659. 0x67,0x2A,0x03,0x02, /* [4320] OBJ_setAttr_TokenType */
  660. 0x67,0x2A,0x03,0x03, /* [4324] OBJ_setAttr_IssCap */
  661. 0x67,0x2A,0x03,0x00,0x00, /* [4328] OBJ_set_rootKeyThumb */
  662. 0x67,0x2A,0x03,0x00,0x01, /* [4333] OBJ_set_addPolicy */
  663. 0x67,0x2A,0x03,0x02,0x01, /* [4338] OBJ_setAttr_Token_EMV */
  664. 0x67,0x2A,0x03,0x02,0x02, /* [4343] OBJ_setAttr_Token_B0Prime */
  665. 0x67,0x2A,0x03,0x03,0x03, /* [4348] OBJ_setAttr_IssCap_CVM */
  666. 0x67,0x2A,0x03,0x03,0x04, /* [4353] OBJ_setAttr_IssCap_T2 */
  667. 0x67,0x2A,0x03,0x03,0x05, /* [4358] OBJ_setAttr_IssCap_Sig */
  668. 0x67,0x2A,0x03,0x03,0x03,0x01, /* [4363] OBJ_setAttr_GenCryptgrm */
  669. 0x67,0x2A,0x03,0x03,0x04,0x01, /* [4369] OBJ_setAttr_T2Enc */
  670. 0x67,0x2A,0x03,0x03,0x04,0x02, /* [4375] OBJ_setAttr_T2cleartxt */
  671. 0x67,0x2A,0x03,0x03,0x05,0x01, /* [4381] OBJ_setAttr_TokICCsig */
  672. 0x67,0x2A,0x03,0x03,0x05,0x02, /* [4387] OBJ_setAttr_SecDevSig */
  673. 0x67,0x2A,0x08,0x01, /* [4393] OBJ_set_brand_IATA_ATA */
  674. 0x67,0x2A,0x08,0x1E, /* [4397] OBJ_set_brand_Diners */
  675. 0x67,0x2A,0x08,0x22, /* [4401] OBJ_set_brand_AmericanExpress */
  676. 0x67,0x2A,0x08,0x23, /* [4405] OBJ_set_brand_JCB */
  677. 0x67,0x2A,0x08,0x04, /* [4409] OBJ_set_brand_Visa */
  678. 0x67,0x2A,0x08,0x05, /* [4413] OBJ_set_brand_MasterCard */
  679. 0x67,0x2A,0x08,0xAE,0x7B, /* [4417] OBJ_set_brand_Novus */
  680. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x03,0x0A, /* [4422] OBJ_des_cdmf */
  681. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x06,/* [4430] OBJ_rsaOAEPEncryptionSET */
  682. 0x00, /* [4439] OBJ_itu_t */
  683. 0x50, /* [4440] OBJ_joint_iso_itu_t */
  684. 0x67, /* [4441] OBJ_international_organizations */
  685. 0x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x14,0x02,0x02,/* [4442] OBJ_ms_smartcard_login */
  686. 0x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x14,0x02,0x03,/* [4452] OBJ_ms_upn */
  687. 0x55,0x04,0x09, /* [4462] OBJ_streetAddress */
  688. 0x55,0x04,0x11, /* [4465] OBJ_postalCode */
  689. 0x2B,0x06,0x01,0x05,0x05,0x07,0x15, /* [4468] OBJ_id_ppl */
  690. 0x2B,0x06,0x01,0x05,0x05,0x07,0x01,0x0E, /* [4475] OBJ_proxyCertInfo */
  691. 0x2B,0x06,0x01,0x05,0x05,0x07,0x15,0x00, /* [4483] OBJ_id_ppl_anyLanguage */
  692. 0x2B,0x06,0x01,0x05,0x05,0x07,0x15,0x01, /* [4491] OBJ_id_ppl_inheritAll */
  693. 0x55,0x1D,0x1E, /* [4499] OBJ_name_constraints */
  694. 0x2B,0x06,0x01,0x05,0x05,0x07,0x15,0x02, /* [4502] OBJ_Independent */
  695. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x0B,/* [4510] OBJ_sha256WithRSAEncryption */
  696. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x0C,/* [4519] OBJ_sha384WithRSAEncryption */
  697. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x0D,/* [4528] OBJ_sha512WithRSAEncryption */
  698. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x0E,/* [4537] OBJ_sha224WithRSAEncryption */
  699. 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x02,0x01,/* [4546] OBJ_sha256 */
  700. 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x02,0x02,/* [4555] OBJ_sha384 */
  701. 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x02,0x03,/* [4564] OBJ_sha512 */
  702. 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x02,0x04,/* [4573] OBJ_sha224 */
  703. 0x2B, /* [4582] OBJ_identified_organization */
  704. 0x2B,0x81,0x04, /* [4583] OBJ_certicom_arc */
  705. 0x67,0x2B, /* [4586] OBJ_wap */
  706. 0x67,0x2B,0x01, /* [4588] OBJ_wap_wsg */
  707. 0x2A,0x86,0x48,0xCE,0x3D,0x01,0x02,0x03, /* [4591] OBJ_X9_62_id_characteristic_two_basis */
  708. 0x2A,0x86,0x48,0xCE,0x3D,0x01,0x02,0x03,0x01,/* [4599] OBJ_X9_62_onBasis */
  709. 0x2A,0x86,0x48,0xCE,0x3D,0x01,0x02,0x03,0x02,/* [4608] OBJ_X9_62_tpBasis */
  710. 0x2A,0x86,0x48,0xCE,0x3D,0x01,0x02,0x03,0x03,/* [4617] OBJ_X9_62_ppBasis */
  711. 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x01, /* [4626] OBJ_X9_62_c2pnb163v1 */
  712. 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x02, /* [4634] OBJ_X9_62_c2pnb163v2 */
  713. 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x03, /* [4642] OBJ_X9_62_c2pnb163v3 */
  714. 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x04, /* [4650] OBJ_X9_62_c2pnb176v1 */
  715. 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x05, /* [4658] OBJ_X9_62_c2tnb191v1 */
  716. 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x06, /* [4666] OBJ_X9_62_c2tnb191v2 */
  717. 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x07, /* [4674] OBJ_X9_62_c2tnb191v3 */
  718. 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x08, /* [4682] OBJ_X9_62_c2onb191v4 */
  719. 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x09, /* [4690] OBJ_X9_62_c2onb191v5 */
  720. 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x0A, /* [4698] OBJ_X9_62_c2pnb208w1 */
  721. 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x0B, /* [4706] OBJ_X9_62_c2tnb239v1 */
  722. 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x0C, /* [4714] OBJ_X9_62_c2tnb239v2 */
  723. 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x0D, /* [4722] OBJ_X9_62_c2tnb239v3 */
  724. 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x0E, /* [4730] OBJ_X9_62_c2onb239v4 */
  725. 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x0F, /* [4738] OBJ_X9_62_c2onb239v5 */
  726. 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x10, /* [4746] OBJ_X9_62_c2pnb272w1 */
  727. 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x11, /* [4754] OBJ_X9_62_c2pnb304w1 */
  728. 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x12, /* [4762] OBJ_X9_62_c2tnb359v1 */
  729. 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x13, /* [4770] OBJ_X9_62_c2pnb368w1 */
  730. 0x2A,0x86,0x48,0xCE,0x3D,0x03,0x00,0x14, /* [4778] OBJ_X9_62_c2tnb431r1 */
  731. 0x2B,0x81,0x04,0x00,0x06, /* [4786] OBJ_secp112r1 */
  732. 0x2B,0x81,0x04,0x00,0x07, /* [4791] OBJ_secp112r2 */
  733. 0x2B,0x81,0x04,0x00,0x1C, /* [4796] OBJ_secp128r1 */
  734. 0x2B,0x81,0x04,0x00,0x1D, /* [4801] OBJ_secp128r2 */
  735. 0x2B,0x81,0x04,0x00,0x09, /* [4806] OBJ_secp160k1 */
  736. 0x2B,0x81,0x04,0x00,0x08, /* [4811] OBJ_secp160r1 */
  737. 0x2B,0x81,0x04,0x00,0x1E, /* [4816] OBJ_secp160r2 */
  738. 0x2B,0x81,0x04,0x00,0x1F, /* [4821] OBJ_secp192k1 */
  739. 0x2B,0x81,0x04,0x00,0x20, /* [4826] OBJ_secp224k1 */
  740. 0x2B,0x81,0x04,0x00,0x21, /* [4831] OBJ_secp224r1 */
  741. 0x2B,0x81,0x04,0x00,0x0A, /* [4836] OBJ_secp256k1 */
  742. 0x2B,0x81,0x04,0x00,0x22, /* [4841] OBJ_secp384r1 */
  743. 0x2B,0x81,0x04,0x00,0x23, /* [4846] OBJ_secp521r1 */
  744. 0x2B,0x81,0x04,0x00,0x04, /* [4851] OBJ_sect113r1 */
  745. 0x2B,0x81,0x04,0x00,0x05, /* [4856] OBJ_sect113r2 */
  746. 0x2B,0x81,0x04,0x00,0x16, /* [4861] OBJ_sect131r1 */
  747. 0x2B,0x81,0x04,0x00,0x17, /* [4866] OBJ_sect131r2 */
  748. 0x2B,0x81,0x04,0x00,0x01, /* [4871] OBJ_sect163k1 */
  749. 0x2B,0x81,0x04,0x00,0x02, /* [4876] OBJ_sect163r1 */
  750. 0x2B,0x81,0x04,0x00,0x0F, /* [4881] OBJ_sect163r2 */
  751. 0x2B,0x81,0x04,0x00,0x18, /* [4886] OBJ_sect193r1 */
  752. 0x2B,0x81,0x04,0x00,0x19, /* [4891] OBJ_sect193r2 */
  753. 0x2B,0x81,0x04,0x00,0x1A, /* [4896] OBJ_sect233k1 */
  754. 0x2B,0x81,0x04,0x00,0x1B, /* [4901] OBJ_sect233r1 */
  755. 0x2B,0x81,0x04,0x00,0x03, /* [4906] OBJ_sect239k1 */
  756. 0x2B,0x81,0x04,0x00,0x10, /* [4911] OBJ_sect283k1 */
  757. 0x2B,0x81,0x04,0x00,0x11, /* [4916] OBJ_sect283r1 */
  758. 0x2B,0x81,0x04,0x00,0x24, /* [4921] OBJ_sect409k1 */
  759. 0x2B,0x81,0x04,0x00,0x25, /* [4926] OBJ_sect409r1 */
  760. 0x2B,0x81,0x04,0x00,0x26, /* [4931] OBJ_sect571k1 */
  761. 0x2B,0x81,0x04,0x00,0x27, /* [4936] OBJ_sect571r1 */
  762. 0x67,0x2B,0x01,0x04,0x01, /* [4941] OBJ_wap_wsg_idm_ecid_wtls1 */
  763. 0x67,0x2B,0x01,0x04,0x03, /* [4946] OBJ_wap_wsg_idm_ecid_wtls3 */
  764. 0x67,0x2B,0x01,0x04,0x04, /* [4951] OBJ_wap_wsg_idm_ecid_wtls4 */
  765. 0x67,0x2B,0x01,0x04,0x05, /* [4956] OBJ_wap_wsg_idm_ecid_wtls5 */
  766. 0x67,0x2B,0x01,0x04,0x06, /* [4961] OBJ_wap_wsg_idm_ecid_wtls6 */
  767. 0x67,0x2B,0x01,0x04,0x07, /* [4966] OBJ_wap_wsg_idm_ecid_wtls7 */
  768. 0x67,0x2B,0x01,0x04,0x08, /* [4971] OBJ_wap_wsg_idm_ecid_wtls8 */
  769. 0x67,0x2B,0x01,0x04,0x09, /* [4976] OBJ_wap_wsg_idm_ecid_wtls9 */
  770. 0x67,0x2B,0x01,0x04,0x0A, /* [4981] OBJ_wap_wsg_idm_ecid_wtls10 */
  771. 0x67,0x2B,0x01,0x04,0x0B, /* [4986] OBJ_wap_wsg_idm_ecid_wtls11 */
  772. 0x67,0x2B,0x01,0x04,0x0C, /* [4991] OBJ_wap_wsg_idm_ecid_wtls12 */
  773. 0x55,0x1D,0x20,0x00, /* [4996] OBJ_any_policy */
  774. 0x55,0x1D,0x21, /* [5000] OBJ_policy_mappings */
  775. 0x55,0x1D,0x36, /* [5003] OBJ_inhibit_any_policy */
  776. 0x2A,0x83,0x08,0x8C,0x9A,0x4B,0x3D,0x01,0x01,0x01,0x02,/* [5006] OBJ_camellia_128_cbc */
  777. 0x2A,0x83,0x08,0x8C,0x9A,0x4B,0x3D,0x01,0x01,0x01,0x03,/* [5017] OBJ_camellia_192_cbc */
  778. 0x2A,0x83,0x08,0x8C,0x9A,0x4B,0x3D,0x01,0x01,0x01,0x04,/* [5028] OBJ_camellia_256_cbc */
  779. 0x03,0xA2,0x31,0x05,0x03,0x01,0x09,0x01, /* [5039] OBJ_camellia_128_ecb */
  780. 0x03,0xA2,0x31,0x05,0x03,0x01,0x09,0x15, /* [5047] OBJ_camellia_192_ecb */
  781. 0x03,0xA2,0x31,0x05,0x03,0x01,0x09,0x29, /* [5055] OBJ_camellia_256_ecb */
  782. 0x03,0xA2,0x31,0x05,0x03,0x01,0x09,0x04, /* [5063] OBJ_camellia_128_cfb128 */
  783. 0x03,0xA2,0x31,0x05,0x03,0x01,0x09,0x18, /* [5071] OBJ_camellia_192_cfb128 */
  784. 0x03,0xA2,0x31,0x05,0x03,0x01,0x09,0x2C, /* [5079] OBJ_camellia_256_cfb128 */
  785. 0x03,0xA2,0x31,0x05,0x03,0x01,0x09,0x03, /* [5087] OBJ_camellia_128_ofb128 */
  786. 0x03,0xA2,0x31,0x05,0x03,0x01,0x09,0x17, /* [5095] OBJ_camellia_192_ofb128 */
  787. 0x03,0xA2,0x31,0x05,0x03,0x01,0x09,0x2B, /* [5103] OBJ_camellia_256_ofb128 */
  788. 0x55,0x1D,0x09, /* [5111] OBJ_subject_directory_attributes */
  789. 0x55,0x1D,0x1C, /* [5114] OBJ_issuing_distribution_point */
  790. 0x55,0x1D,0x1D, /* [5117] OBJ_certificate_issuer */
  791. 0x2A,0x83,0x1A,0x8C,0x9A,0x44, /* [5120] OBJ_kisa */
  792. 0x2A,0x83,0x1A,0x8C,0x9A,0x44,0x01,0x03, /* [5126] OBJ_seed_ecb */
  793. 0x2A,0x83,0x1A,0x8C,0x9A,0x44,0x01,0x04, /* [5134] OBJ_seed_cbc */
  794. 0x2A,0x83,0x1A,0x8C,0x9A,0x44,0x01,0x06, /* [5142] OBJ_seed_ofb128 */
  795. 0x2A,0x83,0x1A,0x8C,0x9A,0x44,0x01,0x05, /* [5150] OBJ_seed_cfb128 */
  796. 0x2B,0x06,0x01,0x05,0x05,0x08,0x01,0x01, /* [5158] OBJ_hmac_md5 */
  797. 0x2B,0x06,0x01,0x05,0x05,0x08,0x01,0x02, /* [5166] OBJ_hmac_sha1 */
  798. 0x2A,0x86,0x48,0x86,0xF6,0x7D,0x07,0x42,0x0D,/* [5174] OBJ_id_PasswordBasedMAC */
  799. 0x2A,0x86,0x48,0x86,0xF6,0x7D,0x07,0x42,0x1E,/* [5183] OBJ_id_DHBasedMac */
  800. 0x2B,0x06,0x01,0x05,0x05,0x07,0x04,0x10, /* [5192] OBJ_id_it_suppLangTags */
  801. 0x2B,0x06,0x01,0x05,0x05,0x07,0x30,0x05, /* [5200] OBJ_caRepository */
  802. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,0x09,/* [5208] OBJ_id_smime_ct_compressedData */
  803. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x01,0x1B,/* [5219] OBJ_id_ct_asciiTextWithCRLF */
  804. 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x05,/* [5230] OBJ_id_aes128_wrap */
  805. 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x19,/* [5239] OBJ_id_aes192_wrap */
  806. 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x2D,/* [5248] OBJ_id_aes256_wrap */
  807. 0x2A,0x86,0x48,0xCE,0x3D,0x04,0x02, /* [5257] OBJ_ecdsa_with_Recommended */
  808. 0x2A,0x86,0x48,0xCE,0x3D,0x04,0x03, /* [5264] OBJ_ecdsa_with_Specified */
  809. 0x2A,0x86,0x48,0xCE,0x3D,0x04,0x03,0x01, /* [5271] OBJ_ecdsa_with_SHA224 */
  810. 0x2A,0x86,0x48,0xCE,0x3D,0x04,0x03,0x02, /* [5279] OBJ_ecdsa_with_SHA256 */
  811. 0x2A,0x86,0x48,0xCE,0x3D,0x04,0x03,0x03, /* [5287] OBJ_ecdsa_with_SHA384 */
  812. 0x2A,0x86,0x48,0xCE,0x3D,0x04,0x03,0x04, /* [5295] OBJ_ecdsa_with_SHA512 */
  813. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x02,0x06, /* [5303] OBJ_hmacWithMD5 */
  814. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x02,0x08, /* [5311] OBJ_hmacWithSHA224 */
  815. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x02,0x09, /* [5319] OBJ_hmacWithSHA256 */
  816. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x02,0x0A, /* [5327] OBJ_hmacWithSHA384 */
  817. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x02,0x0B, /* [5335] OBJ_hmacWithSHA512 */
  818. 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x03,0x01,/* [5343] OBJ_dsa_with_SHA224 */
  819. 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x03,0x02,/* [5352] OBJ_dsa_with_SHA256 */
  820. 0x28,0xCF,0x06,0x03,0x00,0x37, /* [5361] OBJ_whirlpool */
  821. 0x2A,0x85,0x03,0x02,0x02, /* [5367] OBJ_cryptopro */
  822. 0x2A,0x85,0x03,0x02,0x09, /* [5372] OBJ_cryptocom */
  823. 0x2A,0x85,0x03,0x02,0x02,0x03, /* [5377] OBJ_id_GostR3411_94_with_GostR3410_2001 */
  824. 0x2A,0x85,0x03,0x02,0x02,0x04, /* [5383] OBJ_id_GostR3411_94_with_GostR3410_94 */
  825. 0x2A,0x85,0x03,0x02,0x02,0x09, /* [5389] OBJ_id_GostR3411_94 */
  826. 0x2A,0x85,0x03,0x02,0x02,0x0A, /* [5395] OBJ_id_HMACGostR3411_94 */
  827. 0x2A,0x85,0x03,0x02,0x02,0x13, /* [5401] OBJ_id_GostR3410_2001 */
  828. 0x2A,0x85,0x03,0x02,0x02,0x14, /* [5407] OBJ_id_GostR3410_94 */
  829. 0x2A,0x85,0x03,0x02,0x02,0x15, /* [5413] OBJ_id_Gost28147_89 */
  830. 0x2A,0x85,0x03,0x02,0x02,0x16, /* [5419] OBJ_id_Gost28147_89_MAC */
  831. 0x2A,0x85,0x03,0x02,0x02,0x17, /* [5425] OBJ_id_GostR3411_94_prf */
  832. 0x2A,0x85,0x03,0x02,0x02,0x62, /* [5431] OBJ_id_GostR3410_2001DH */
  833. 0x2A,0x85,0x03,0x02,0x02,0x63, /* [5437] OBJ_id_GostR3410_94DH */
  834. 0x2A,0x85,0x03,0x02,0x02,0x0E,0x01, /* [5443] OBJ_id_Gost28147_89_CryptoPro_KeyMeshing */
  835. 0x2A,0x85,0x03,0x02,0x02,0x0E,0x00, /* [5450] OBJ_id_Gost28147_89_None_KeyMeshing */
  836. 0x2A,0x85,0x03,0x02,0x02,0x1E,0x00, /* [5457] OBJ_id_GostR3411_94_TestParamSet */
  837. 0x2A,0x85,0x03,0x02,0x02,0x1E,0x01, /* [5464] OBJ_id_GostR3411_94_CryptoProParamSet */
  838. 0x2A,0x85,0x03,0x02,0x02,0x1F,0x00, /* [5471] OBJ_id_Gost28147_89_TestParamSet */
  839. 0x2A,0x85,0x03,0x02,0x02,0x1F,0x01, /* [5478] OBJ_id_Gost28147_89_CryptoPro_A_ParamSet */
  840. 0x2A,0x85,0x03,0x02,0x02,0x1F,0x02, /* [5485] OBJ_id_Gost28147_89_CryptoPro_B_ParamSet */
  841. 0x2A,0x85,0x03,0x02,0x02,0x1F,0x03, /* [5492] OBJ_id_Gost28147_89_CryptoPro_C_ParamSet */
  842. 0x2A,0x85,0x03,0x02,0x02,0x1F,0x04, /* [5499] OBJ_id_Gost28147_89_CryptoPro_D_ParamSet */
  843. 0x2A,0x85,0x03,0x02,0x02,0x1F,0x05, /* [5506] OBJ_id_Gost28147_89_CryptoPro_Oscar_1_1_ParamSet */
  844. 0x2A,0x85,0x03,0x02,0x02,0x1F,0x06, /* [5513] OBJ_id_Gost28147_89_CryptoPro_Oscar_1_0_ParamSet */
  845. 0x2A,0x85,0x03,0x02,0x02,0x1F,0x07, /* [5520] OBJ_id_Gost28147_89_CryptoPro_RIC_1_ParamSet */
  846. 0x2A,0x85,0x03,0x02,0x02,0x20,0x00, /* [5527] OBJ_id_GostR3410_94_TestParamSet */
  847. 0x2A,0x85,0x03,0x02,0x02,0x20,0x02, /* [5534] OBJ_id_GostR3410_94_CryptoPro_A_ParamSet */
  848. 0x2A,0x85,0x03,0x02,0x02,0x20,0x03, /* [5541] OBJ_id_GostR3410_94_CryptoPro_B_ParamSet */
  849. 0x2A,0x85,0x03,0x02,0x02,0x20,0x04, /* [5548] OBJ_id_GostR3410_94_CryptoPro_C_ParamSet */
  850. 0x2A,0x85,0x03,0x02,0x02,0x20,0x05, /* [5555] OBJ_id_GostR3410_94_CryptoPro_D_ParamSet */
  851. 0x2A,0x85,0x03,0x02,0x02,0x21,0x01, /* [5562] OBJ_id_GostR3410_94_CryptoPro_XchA_ParamSet */
  852. 0x2A,0x85,0x03,0x02,0x02,0x21,0x02, /* [5569] OBJ_id_GostR3410_94_CryptoPro_XchB_ParamSet */
  853. 0x2A,0x85,0x03,0x02,0x02,0x21,0x03, /* [5576] OBJ_id_GostR3410_94_CryptoPro_XchC_ParamSet */
  854. 0x2A,0x85,0x03,0x02,0x02,0x23,0x00, /* [5583] OBJ_id_GostR3410_2001_TestParamSet */
  855. 0x2A,0x85,0x03,0x02,0x02,0x23,0x01, /* [5590] OBJ_id_GostR3410_2001_CryptoPro_A_ParamSet */
  856. 0x2A,0x85,0x03,0x02,0x02,0x23,0x02, /* [5597] OBJ_id_GostR3410_2001_CryptoPro_B_ParamSet */
  857. 0x2A,0x85,0x03,0x02,0x02,0x23,0x03, /* [5604] OBJ_id_GostR3410_2001_CryptoPro_C_ParamSet */
  858. 0x2A,0x85,0x03,0x02,0x02,0x24,0x00, /* [5611] OBJ_id_GostR3410_2001_CryptoPro_XchA_ParamSet */
  859. 0x2A,0x85,0x03,0x02,0x02,0x24,0x01, /* [5618] OBJ_id_GostR3410_2001_CryptoPro_XchB_ParamSet */
  860. 0x2A,0x85,0x03,0x02,0x02,0x14,0x01, /* [5625] OBJ_id_GostR3410_94_a */
  861. 0x2A,0x85,0x03,0x02,0x02,0x14,0x02, /* [5632] OBJ_id_GostR3410_94_aBis */
  862. 0x2A,0x85,0x03,0x02,0x02,0x14,0x03, /* [5639] OBJ_id_GostR3410_94_b */
  863. 0x2A,0x85,0x03,0x02,0x02,0x14,0x04, /* [5646] OBJ_id_GostR3410_94_bBis */
  864. 0x2A,0x85,0x03,0x02,0x09,0x01,0x06,0x01, /* [5653] OBJ_id_Gost28147_89_cc */
  865. 0x2A,0x85,0x03,0x02,0x09,0x01,0x05,0x03, /* [5661] OBJ_id_GostR3410_94_cc */
  866. 0x2A,0x85,0x03,0x02,0x09,0x01,0x05,0x04, /* [5669] OBJ_id_GostR3410_2001_cc */
  867. 0x2A,0x85,0x03,0x02,0x09,0x01,0x03,0x03, /* [5677] OBJ_id_GostR3411_94_with_GostR3410_94_cc */
  868. 0x2A,0x85,0x03,0x02,0x09,0x01,0x03,0x04, /* [5685] OBJ_id_GostR3411_94_with_GostR3410_2001_cc */
  869. 0x2A,0x85,0x03,0x02,0x09,0x01,0x08,0x01, /* [5693] OBJ_id_GostR3410_2001_ParamSet_cc */
  870. 0x2B,0x06,0x01,0x04,0x01,0x82,0x37,0x11,0x02,/* [5701] OBJ_LocalKeySet */
  871. 0x55,0x1D,0x2E, /* [5710] OBJ_freshest_crl */
  872. 0x2B,0x06,0x01,0x05,0x05,0x07,0x08,0x03, /* [5713] OBJ_id_on_permanentIdentifier */
  873. 0x55,0x04,0x0E, /* [5721] OBJ_searchGuide */
  874. 0x55,0x04,0x0F, /* [5724] OBJ_businessCategory */
  875. 0x55,0x04,0x10, /* [5727] OBJ_postalAddress */
  876. 0x55,0x04,0x12, /* [5730] OBJ_postOfficeBox */
  877. 0x55,0x04,0x13, /* [5733] OBJ_physicalDeliveryOfficeName */
  878. 0x55,0x04,0x14, /* [5736] OBJ_telephoneNumber */
  879. 0x55,0x04,0x15, /* [5739] OBJ_telexNumber */
  880. 0x55,0x04,0x16, /* [5742] OBJ_teletexTerminalIdentifier */
  881. 0x55,0x04,0x17, /* [5745] OBJ_facsimileTelephoneNumber */
  882. 0x55,0x04,0x18, /* [5748] OBJ_x121Address */
  883. 0x55,0x04,0x19, /* [5751] OBJ_internationaliSDNNumber */
  884. 0x55,0x04,0x1A, /* [5754] OBJ_registeredAddress */
  885. 0x55,0x04,0x1B, /* [5757] OBJ_destinationIndicator */
  886. 0x55,0x04,0x1C, /* [5760] OBJ_preferredDeliveryMethod */
  887. 0x55,0x04,0x1D, /* [5763] OBJ_presentationAddress */
  888. 0x55,0x04,0x1E, /* [5766] OBJ_supportedApplicationContext */
  889. 0x55,0x04,0x1F, /* [5769] OBJ_member */
  890. 0x55,0x04,0x20, /* [5772] OBJ_owner */
  891. 0x55,0x04,0x21, /* [5775] OBJ_roleOccupant */
  892. 0x55,0x04,0x22, /* [5778] OBJ_seeAlso */
  893. 0x55,0x04,0x23, /* [5781] OBJ_userPassword */
  894. 0x55,0x04,0x24, /* [5784] OBJ_userCertificate */
  895. 0x55,0x04,0x25, /* [5787] OBJ_cACertificate */
  896. 0x55,0x04,0x26, /* [5790] OBJ_authorityRevocationList */
  897. 0x55,0x04,0x27, /* [5793] OBJ_certificateRevocationList */
  898. 0x55,0x04,0x28, /* [5796] OBJ_crossCertificatePair */
  899. 0x55,0x04,0x2F, /* [5799] OBJ_enhancedSearchGuide */
  900. 0x55,0x04,0x30, /* [5802] OBJ_protocolInformation */
  901. 0x55,0x04,0x31, /* [5805] OBJ_distinguishedName */
  902. 0x55,0x04,0x32, /* [5808] OBJ_uniqueMember */
  903. 0x55,0x04,0x33, /* [5811] OBJ_houseIdentifier */
  904. 0x55,0x04,0x34, /* [5814] OBJ_supportedAlgorithms */
  905. 0x55,0x04,0x35, /* [5817] OBJ_deltaRevocationList */
  906. 0x55,0x04,0x36, /* [5820] OBJ_dmdName */
  907. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x09,0x10,0x03,0x09,/* [5823] OBJ_id_alg_PWRI_KEK */
  908. 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x06,/* [5834] OBJ_aes_128_gcm */
  909. 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x07,/* [5843] OBJ_aes_128_ccm */
  910. 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x08,/* [5852] OBJ_id_aes128_wrap_pad */
  911. 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x1A,/* [5861] OBJ_aes_192_gcm */
  912. 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x1B,/* [5870] OBJ_aes_192_ccm */
  913. 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x1C,/* [5879] OBJ_id_aes192_wrap_pad */
  914. 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x2E,/* [5888] OBJ_aes_256_gcm */
  915. 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x2F,/* [5897] OBJ_aes_256_ccm */
  916. 0x60,0x86,0x48,0x01,0x65,0x03,0x04,0x01,0x30,/* [5906] OBJ_id_aes256_wrap_pad */
  917. 0x2A,0x83,0x08,0x8C,0x9A,0x4B,0x3D,0x01,0x01,0x03,0x02,/* [5915] OBJ_id_camellia128_wrap */
  918. 0x2A,0x83,0x08,0x8C,0x9A,0x4B,0x3D,0x01,0x01,0x03,0x03,/* [5926] OBJ_id_camellia192_wrap */
  919. 0x2A,0x83,0x08,0x8C,0x9A,0x4B,0x3D,0x01,0x01,0x03,0x04,/* [5937] OBJ_id_camellia256_wrap */
  920. 0x55,0x1D,0x25,0x00, /* [5948] OBJ_anyExtendedKeyUsage */
  921. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x08,/* [5952] OBJ_mgf1 */
  922. 0x2A,0x86,0x48,0x86,0xF7,0x0D,0x01,0x01,0x0A,/* [5961] OBJ_rsassaPss */
  923. };
  924. static const ASN1_OBJECT nid_objs[NUM_NID]={
  925. {"UNDEF","undefined",NID_undef,1,&(lvalues[0]),0},
  926. {"rsadsi","RSA Data Security, Inc.",NID_rsadsi,6,&(lvalues[1]),0},
  927. {"pkcs","RSA Data Security, Inc. PKCS",NID_pkcs,7,&(lvalues[7]),0},
  928. {"MD2","md2",NID_md2,8,&(lvalues[14]),0},
  929. {"MD5","md5",NID_md5,8,&(lvalues[22]),0},
  930. {"RC4","rc4",NID_rc4,8,&(lvalues[30]),0},
  931. {"rsaEncryption","rsaEncryption",NID_rsaEncryption,9,&(lvalues[38]),0},
  932. {"RSA-MD2","md2WithRSAEncryption",NID_md2WithRSAEncryption,9,
  933. &(lvalues[47]),0},
  934. {"RSA-MD5","md5WithRSAEncryption",NID_md5WithRSAEncryption,9,
  935. &(lvalues[56]),0},
  936. {"PBE-MD2-DES","pbeWithMD2AndDES-CBC",NID_pbeWithMD2AndDES_CBC,9,
  937. &(lvalues[65]),0},
  938. {"PBE-MD5-DES","pbeWithMD5AndDES-CBC",NID_pbeWithMD5AndDES_CBC,9,
  939. &(lvalues[74]),0},
  940. {"X500","directory services (X.500)",NID_X500,1,&(lvalues[83]),0},
  941. {"X509","X509",NID_X509,2,&(lvalues[84]),0},
  942. {"CN","commonName",NID_commonName,3,&(lvalues[86]),0},
  943. {"C","countryName",NID_countryName,3,&(lvalues[89]),0},
  944. {"L","localityName",NID_localityName,3,&(lvalues[92]),0},
  945. {"ST","stateOrProvinceName",NID_stateOrProvinceName,3,&(lvalues[95]),0},
  946. {"O","organizationName",NID_organizationName,3,&(lvalues[98]),0},
  947. {"OU","organizationalUnitName",NID_organizationalUnitName,3,
  948. &(lvalues[101]),0},
  949. {"RSA","rsa",NID_rsa,4,&(lvalues[104]),0},
  950. {"pkcs7","pkcs7",NID_pkcs7,8,&(lvalues[108]),0},
  951. {"pkcs7-data","pkcs7-data",NID_pkcs7_data,9,&(lvalues[116]),0},
  952. {"pkcs7-signedData","pkcs7-signedData",NID_pkcs7_signed,9,
  953. &(lvalues[125]),0},
  954. {"pkcs7-envelopedData","pkcs7-envelopedData",NID_pkcs7_enveloped,9,
  955. &(lvalues[134]),0},
  956. {"pkcs7-signedAndEnvelopedData","pkcs7-signedAndEnvelopedData",
  957. NID_pkcs7_signedAndEnveloped,9,&(lvalues[143]),0},
  958. {"pkcs7-digestData","pkcs7-digestData",NID_pkcs7_digest,9,
  959. &(lvalues[152]),0},
  960. {"pkcs7-encryptedData","pkcs7-encryptedData",NID_pkcs7_encrypted,9,
  961. &(lvalues[161]),0},
  962. {"pkcs3","pkcs3",NID_pkcs3,8,&(lvalues[170]),0},
  963. {"dhKeyAgreement","dhKeyAgreement",NID_dhKeyAgreement,9,
  964. &(lvalues[178]),0},
  965. {"DES-ECB","des-ecb",NID_des_ecb,5,&(lvalues[187]),0},
  966. {"DES-CFB","des-cfb",NID_des_cfb64,5,&(lvalues[192]),0},
  967. {"DES-CBC","des-cbc",NID_des_cbc,5,&(lvalues[197]),0},
  968. {"DES-EDE","des-ede",NID_des_ede_ecb,5,&(lvalues[202]),0},
  969. {"DES-EDE3","des-ede3",NID_des_ede3_ecb,0,NULL,0},
  970. {"IDEA-CBC","idea-cbc",NID_idea_cbc,11,&(lvalues[207]),0},
  971. {"IDEA-CFB","idea-cfb",NID_idea_cfb64,0,NULL,0},
  972. {"IDEA-ECB","idea-ecb",NID_idea_ecb,0,NULL,0},
  973. {"RC2-CBC","rc2-cbc",NID_rc2_cbc,8,&(lvalues[218]),0},
  974. {"RC2-ECB","rc2-ecb",NID_rc2_ecb,0,NULL,0},
  975. {"RC2-CFB","rc2-cfb",NID_rc2_cfb64,0,NULL,0},
  976. {"RC2-OFB","rc2-ofb",NID_rc2_ofb64,0,NULL,0},
  977. {"SHA","sha",NID_sha,5,&(lvalues[226]),0},
  978. {"RSA-SHA","shaWithRSAEncryption",NID_shaWithRSAEncryption,5,
  979. &(lvalues[231]),0},
  980. {"DES-EDE-CBC","des-ede-cbc",NID_des_ede_cbc,0,NULL,0},
  981. {"DES-EDE3-CBC","des-ede3-cbc",NID_des_ede3_cbc,8,&(lvalues[236]),0},
  982. {"DES-OFB","des-ofb",NID_des_ofb64,5,&(lvalues[244]),0},
  983. {"IDEA-OFB","idea-ofb",NID_idea_ofb64,0,NULL,0},
  984. {"pkcs9","pkcs9",NID_pkcs9,8,&(lvalues[249]),0},
  985. {"emailAddress","emailAddress",NID_pkcs9_emailAddress,9,
  986. &(lvalues[257]),0},
  987. {"unstructuredName","unstructuredName",NID_pkcs9_unstructuredName,9,
  988. &(lvalues[266]),0},
  989. {"contentType","contentType",NID_pkcs9_contentType,9,&(lvalues[275]),0},
  990. {"messageDigest","messageDigest",NID_pkcs9_messageDigest,9,
  991. &(lvalues[284]),0},
  992. {"signingTime","signingTime",NID_pkcs9_signingTime,9,&(lvalues[293]),0},
  993. {"countersignature","countersignature",NID_pkcs9_countersignature,9,
  994. &(lvalues[302]),0},
  995. {"challengePassword","challengePassword",NID_pkcs9_challengePassword,
  996. 9,&(lvalues[311]),0},
  997. {"unstructuredAddress","unstructuredAddress",
  998. NID_pkcs9_unstructuredAddress,9,&(lvalues[320]),0},
  999. {"extendedCertificateAttributes","extendedCertificateAttributes",
  1000. NID_pkcs9_extCertAttributes,9,&(lvalues[329]),0},
  1001. {"Netscape","Netscape Communications Corp.",NID_netscape,7,
  1002. &(lvalues[338]),0},
  1003. {"nsCertExt","Netscape Certificate Extension",
  1004. NID_netscape_cert_extension,8,&(lvalues[345]),0},
  1005. {"nsDataType","Netscape Data Type",NID_netscape_data_type,8,
  1006. &(lvalues[353]),0},
  1007. {"DES-EDE-CFB","des-ede-cfb",NID_des_ede_cfb64,0,NULL,0},
  1008. {"DES-EDE3-CFB","des-ede3-cfb",NID_des_ede3_cfb64,0,NULL,0},
  1009. {"DES-EDE-OFB","des-ede-ofb",NID_des_ede_ofb64,0,NULL,0},
  1010. {"DES-EDE3-OFB","des-ede3-ofb",NID_des_ede3_ofb64,0,NULL,0},
  1011. {"SHA1","sha1",NID_sha1,5,&(lvalues[361]),0},
  1012. {"RSA-SHA1","sha1WithRSAEncryption",NID_sha1WithRSAEncryption,9,
  1013. &(lvalues[366]),0},
  1014. {"DSA-SHA","dsaWithSHA",NID_dsaWithSHA,5,&(lvalues[375]),0},
  1015. {"DSA-old","dsaEncryption-old",NID_dsa_2,5,&(lvalues[380]),0},
  1016. {"PBE-SHA1-RC2-64","pbeWithSHA1AndRC2-CBC",NID_pbeWithSHA1AndRC2_CBC,
  1017. 9,&(lvalues[385]),0},
  1018. {"PBKDF2","PBKDF2",NID_id_pbkdf2,9,&(lvalues[394]),0},
  1019. {"DSA-SHA1-old","dsaWithSHA1-old",NID_dsaWithSHA1_2,5,&(lvalues[403]),0},
  1020. {"nsCertType","Netscape Cert Type",NID_netscape_cert_type,9,
  1021. &(lvalues[408]),0},
  1022. {"nsBaseUrl","Netscape Base Url",NID_netscape_base_url,9,
  1023. &(lvalues[417]),0},
  1024. {"nsRevocationUrl","Netscape Revocation Url",
  1025. NID_netscape_revocation_url,9,&(lvalues[426]),0},
  1026. {"nsCaRevocationUrl","Netscape CA Revocation Url",
  1027. NID_netscape_ca_revocation_url,9,&(lvalues[435]),0},
  1028. {"nsRenewalUrl","Netscape Renewal Url",NID_netscape_renewal_url,9,
  1029. &(lvalues[444]),0},
  1030. {"nsCaPolicyUrl","Netscape CA Policy Url",NID_netscape_ca_policy_url,
  1031. 9,&(lvalues[453]),0},
  1032. {"nsSslServerName","Netscape SSL Server Name",
  1033. NID_netscape_ssl_server_name,9,&(lvalues[462]),0},
  1034. {"nsComment","Netscape Comment",NID_netscape_comment,9,&(lvalues[471]),0},
  1035. {"nsCertSequence","Netscape Certificate Sequence",
  1036. NID_netscape_cert_sequence,9,&(lvalues[480]),0},
  1037. {"DESX-CBC","desx-cbc",NID_desx_cbc,0,NULL,0},
  1038. {"id-ce","id-ce",NID_id_ce,2,&(lvalues[489]),0},
  1039. {"subjectKeyIdentifier","X509v3 Subject Key Identifier",
  1040. NID_subject_key_identifier,3,&(lvalues[491]),0},
  1041. {"keyUsage","X509v3 Key Usage",NID_key_usage,3,&(lvalues[494]),0},
  1042. {"privateKeyUsagePeriod","X509v3 Private Key Usage Period",
  1043. NID_private_key_usage_period,3,&(lvalues[497]),0},
  1044. {"subjectAltName","X509v3 Subject Alternative Name",
  1045. NID_subject_alt_name,3,&(lvalues[500]),0},
  1046. {"issuerAltName","X509v3 Issuer Alternative Name",NID_issuer_alt_name,
  1047. 3,&(lvalues[503]),0},
  1048. {"basicConstraints","X509v3 Basic Constraints",NID_basic_constraints,
  1049. 3,&(lvalues[506]),0},
  1050. {"crlNumber","X509v3 CRL Number",NID_crl_number,3,&(lvalues[509]),0},
  1051. {"certificatePolicies","X509v3 Certificate Policies",
  1052. NID_certificate_policies,3,&(lvalues[512]),0},
  1053. {"authorityKeyIdentifier","X509v3 Authority Key Identifier",
  1054. NID_authority_key_identifier,3,&(lvalues[515]),0},
  1055. {"BF-CBC","bf-cbc",NID_bf_cbc,9,&(lvalues[518]),0},
  1056. {"BF-ECB","bf-ecb",NID_bf_ecb,0,NULL,0},
  1057. {"BF-CFB","bf-cfb",NID_bf_cfb64,0,NULL,0},
  1058. {"BF-OFB","bf-ofb",NID_bf_ofb64,0,NULL,0},
  1059. {"MDC2","mdc2",NID_mdc2,4,&(lvalues[527]),0},
  1060. {"RSA-MDC2","mdc2WithRSA",NID_mdc2WithRSA,4,&(lvalues[531]),0},
  1061. {"RC4-40","rc4-40",NID_rc4_40,0,NULL,0},
  1062. {"RC2-40-CBC","rc2-40-cbc",NID_rc2_40_cbc,0,NULL,0},
  1063. {"GN","givenName",NID_givenName,3,&(lvalues[535]),0},
  1064. {"SN","surname",NID_surname,3,&(lvalues[538]),0},
  1065. {"initials","initials",NID_initials,3,&(lvalues[541]),0},
  1066. {NULL,NULL,NID_undef,0,NULL,0},
  1067. {"crlDistributionPoints","X509v3 CRL Distribution Points",
  1068. NID_crl_distribution_points,3,&(lvalues[544]),0},
  1069. {"RSA-NP-MD5","md5WithRSA",NID_md5WithRSA,5,&(lvalues[547]),0},
  1070. {"serialNumber","serialNumber",NID_serialNumber,3,&(lvalues[552]),0},
  1071. {"title","title",NID_title,3,&(lvalues[555]),0},
  1072. {"description","description",NID_description,3,&(lvalues[558]),0},
  1073. {"CAST5-CBC","cast5-cbc",NID_cast5_cbc,9,&(lvalues[561]),0},
  1074. {"CAST5-ECB","cast5-ecb",NID_cast5_ecb,0,NULL,0},
  1075. {"CAST5-CFB","cast5-cfb",NID_cast5_cfb64,0,NULL,0},
  1076. {"CAST5-OFB","cast5-ofb",NID_cast5_ofb64,0,NULL,0},
  1077. {"pbeWithMD5AndCast5CBC","pbeWithMD5AndCast5CBC",
  1078. NID_pbeWithMD5AndCast5_CBC,9,&(lvalues[570]),0},
  1079. {"DSA-SHA1","dsaWithSHA1",NID_dsaWithSHA1,7,&(lvalues[579]),0},
  1080. {"MD5-SHA1","md5-sha1",NID_md5_sha1,0,NULL,0},
  1081. {"RSA-SHA1-2","sha1WithRSA",NID_sha1WithRSA,5,&(lvalues[586]),0},
  1082. {"DSA","dsaEncryption",NID_dsa,7,&(lvalues[591]),0},
  1083. {"RIPEMD160","ripemd160",NID_ripemd160,5,&(lvalues[598]),0},
  1084. {NULL,NULL,NID_undef,0,NULL,0},
  1085. {"RSA-RIPEMD160","ripemd160WithRSA",NID_ripemd160WithRSA,6,
  1086. &(lvalues[603]),0},
  1087. {"RC5-CBC","rc5-cbc",NID_rc5_cbc,8,&(lvalues[609]),0},
  1088. {"RC5-ECB","rc5-ecb",NID_rc5_ecb,0,NULL,0},
  1089. {"RC5-CFB","rc5-cfb",NID_rc5_cfb64,0,NULL,0},
  1090. {"RC5-OFB","rc5-ofb",NID_rc5_ofb64,0,NULL,0},
  1091. {"RLE","run length compression",NID_rle_compression,6,&(lvalues[617]),0},
  1092. {"ZLIB","zlib compression",NID_zlib_compression,11,&(lvalues[623]),0},
  1093. {"extendedKeyUsage","X509v3 Extended Key Usage",NID_ext_key_usage,3,
  1094. &(lvalues[634]),0},
  1095. {"PKIX","PKIX",NID_id_pkix,6,&(lvalues[637]),0},
  1096. {"id-kp","id-kp",NID_id_kp,7,&(lvalues[643]),0},
  1097. {"serverAuth","TLS Web Server Authentication",NID_server_auth,8,
  1098. &(lvalues[650]),0},
  1099. {"clientAuth","TLS Web Client Authentication",NID_client_auth,8,
  1100. &(lvalues[658]),0},
  1101. {"codeSigning","Code Signing",NID_code_sign,8,&(lvalues[666]),0},
  1102. {"emailProtection","E-mail Protection",NID_email_protect,8,
  1103. &(lvalues[674]),0},
  1104. {"timeStamping","Time Stamping",NID_time_stamp,8,&(lvalues[682]),0},
  1105. {"msCodeInd","Microsoft Individual Code Signing",NID_ms_code_ind,10,
  1106. &(lvalues[690]),0},
  1107. {"msCodeCom","Microsoft Commercial Code Signing",NID_ms_code_com,10,
  1108. &(lvalues[700]),0},
  1109. {"msCTLSign","Microsoft Trust List Signing",NID_ms_ctl_sign,10,
  1110. &(lvalues[710]),0},
  1111. {"msSGC","Microsoft Server Gated Crypto",NID_ms_sgc,10,&(lvalues[720]),0},
  1112. {"msEFS","Microsoft Encrypted File System",NID_ms_efs,10,
  1113. &(lvalues[730]),0},
  1114. {"nsSGC","Netscape Server Gated Crypto",NID_ns_sgc,9,&(lvalues[740]),0},
  1115. {"deltaCRL","X509v3 Delta CRL Indicator",NID_delta_crl,3,
  1116. &(lvalues[749]),0},
  1117. {"CRLReason","X509v3 CRL Reason Code",NID_crl_reason,3,&(lvalues[752]),0},
  1118. {"invalidityDate","Invalidity Date",NID_invalidity_date,3,
  1119. &(lvalues[755]),0},
  1120. {"SXNetID","Strong Extranet ID",NID_sxnet,5,&(lvalues[758]),0},
  1121. {"PBE-SHA1-RC4-128","pbeWithSHA1And128BitRC4",
  1122. NID_pbe_WithSHA1And128BitRC4,10,&(lvalues[763]),0},
  1123. {"PBE-SHA1-RC4-40","pbeWithSHA1And40BitRC4",
  1124. NID_pbe_WithSHA1And40BitRC4,10,&(lvalues[773]),0},
  1125. {"PBE-SHA1-3DES","pbeWithSHA1And3-KeyTripleDES-CBC",
  1126. NID_pbe_WithSHA1And3_Key_TripleDES_CBC,10,&(lvalues[783]),0},
  1127. {"PBE-SHA1-2DES","pbeWithSHA1And2-KeyTripleDES-CBC",
  1128. NID_pbe_WithSHA1And2_Key_TripleDES_CBC,10,&(lvalues[793]),0},
  1129. {"PBE-SHA1-RC2-128","pbeWithSHA1And128BitRC2-CBC",
  1130. NID_pbe_WithSHA1And128BitRC2_CBC,10,&(lvalues[803]),0},
  1131. {"PBE-SHA1-RC2-40","pbeWithSHA1And40BitRC2-CBC",
  1132. NID_pbe_WithSHA1And40BitRC2_CBC,10,&(lvalues[813]),0},
  1133. {"keyBag","keyBag",NID_keyBag,11,&(lvalues[823]),0},
  1134. {"pkcs8ShroudedKeyBag","pkcs8ShroudedKeyBag",NID_pkcs8ShroudedKeyBag,
  1135. 11,&(lvalues[834]),0},
  1136. {"certBag","certBag",NID_certBag,11,&(lvalues[845]),0},
  1137. {"crlBag","crlBag",NID_crlBag,11,&(lvalues[856]),0},
  1138. {"secretBag","secretBag",NID_secretBag,11,&(lvalues[867]),0},
  1139. {"safeContentsBag","safeContentsBag",NID_safeContentsBag,11,
  1140. &(lvalues[878]),0},
  1141. {"friendlyName","friendlyName",NID_friendlyName,9,&(lvalues[889]),0},
  1142. {"localKeyID","localKeyID",NID_localKeyID,9,&(lvalues[898]),0},
  1143. {"x509Certificate","x509Certificate",NID_x509Certificate,10,
  1144. &(lvalues[907]),0},
  1145. {"sdsiCertificate","sdsiCertificate",NID_sdsiCertificate,10,
  1146. &(lvalues[917]),0},
  1147. {"x509Crl","x509Crl",NID_x509Crl,10,&(lvalues[927]),0},
  1148. {"PBES2","PBES2",NID_pbes2,9,&(lvalues[937]),0},
  1149. {"PBMAC1","PBMAC1",NID_pbmac1,9,&(lvalues[946]),0},
  1150. {"hmacWithSHA1","hmacWithSHA1",NID_hmacWithSHA1,8,&(lvalues[955]),0},
  1151. {"id-qt-cps","Policy Qualifier CPS",NID_id_qt_cps,8,&(lvalues[963]),0},
  1152. {"id-qt-unotice","Policy Qualifier User Notice",NID_id_qt_unotice,8,
  1153. &(lvalues[971]),0},
  1154. {"RC2-64-CBC","rc2-64-cbc",NID_rc2_64_cbc,0,NULL,0},
  1155. {"SMIME-CAPS","S/MIME Capabilities",NID_SMIMECapabilities,9,
  1156. &(lvalues[979]),0},
  1157. {"PBE-MD2-RC2-64","pbeWithMD2AndRC2-CBC",NID_pbeWithMD2AndRC2_CBC,9,
  1158. &(lvalues[988]),0},
  1159. {"PBE-MD5-RC2-64","pbeWithMD5AndRC2-CBC",NID_pbeWithMD5AndRC2_CBC,9,
  1160. &(lvalues[997]),0},
  1161. {"PBE-SHA1-DES","pbeWithSHA1AndDES-CBC",NID_pbeWithSHA1AndDES_CBC,9,
  1162. &(lvalues[1006]),0},
  1163. {"msExtReq","Microsoft Extension Request",NID_ms_ext_req,10,
  1164. &(lvalues[1015]),0},
  1165. {"extReq","Extension Request",NID_ext_req,9,&(lvalues[1025]),0},
  1166. {"name","name",NID_name,3,&(lvalues[1034]),0},
  1167. {"dnQualifier","dnQualifier",NID_dnQualifier,3,&(lvalues[1037]),0},
  1168. {"id-pe","id-pe",NID_id_pe,7,&(lvalues[1040]),0},
  1169. {"id-ad","id-ad",NID_id_ad,7,&(lvalues[1047]),0},
  1170. {"authorityInfoAccess","Authority Information Access",NID_info_access,
  1171. 8,&(lvalues[1054]),0},
  1172. {"OCSP","OCSP",NID_ad_OCSP,8,&(lvalues[1062]),0},
  1173. {"caIssuers","CA Issuers",NID_ad_ca_issuers,8,&(lvalues[1070]),0},
  1174. {"OCSPSigning","OCSP Signing",NID_OCSP_sign,8,&(lvalues[1078]),0},
  1175. {"ISO","iso",NID_iso,1,&(lvalues[1086]),0},
  1176. {"member-body","ISO Member Body",NID_member_body,1,&(lvalues[1087]),0},
  1177. {"ISO-US","ISO US Member Body",NID_ISO_US,3,&(lvalues[1088]),0},
  1178. {"X9-57","X9.57",NID_X9_57,5,&(lvalues[1091]),0},
  1179. {"X9cm","X9.57 CM ?",NID_X9cm,6,&(lvalues[1096]),0},
  1180. {"pkcs1","pkcs1",NID_pkcs1,8,&(lvalues[1102]),0},
  1181. {"pkcs5","pkcs5",NID_pkcs5,8,&(lvalues[1110]),0},
  1182. {"SMIME","S/MIME",NID_SMIME,9,&(lvalues[1118]),0},
  1183. {"id-smime-mod","id-smime-mod",NID_id_smime_mod,10,&(lvalues[1127]),0},
  1184. {"id-smime-ct","id-smime-ct",NID_id_smime_ct,10,&(lvalues[1137]),0},
  1185. {"id-smime-aa","id-smime-aa",NID_id_smime_aa,10,&(lvalues[1147]),0},
  1186. {"id-smime-alg","id-smime-alg",NID_id_smime_alg,10,&(lvalues[1157]),0},
  1187. {"id-smime-cd","id-smime-cd",NID_id_smime_cd,10,&(lvalues[1167]),0},
  1188. {"id-smime-spq","id-smime-spq",NID_id_smime_spq,10,&(lvalues[1177]),0},
  1189. {"id-smime-cti","id-smime-cti",NID_id_smime_cti,10,&(lvalues[1187]),0},
  1190. {"id-smime-mod-cms","id-smime-mod-cms",NID_id_smime_mod_cms,11,
  1191. &(lvalues[1197]),0},
  1192. {"id-smime-mod-ess","id-smime-mod-ess",NID_id_smime_mod_ess,11,
  1193. &(lvalues[1208]),0},
  1194. {"id-smime-mod-oid","id-smime-mod-oid",NID_id_smime_mod_oid,11,
  1195. &(lvalues[1219]),0},
  1196. {"id-smime-mod-msg-v3","id-smime-mod-msg-v3",NID_id_smime_mod_msg_v3,
  1197. 11,&(lvalues[1230]),0},
  1198. {"id-smime-mod-ets-eSignature-88","id-smime-mod-ets-eSignature-88",
  1199. NID_id_smime_mod_ets_eSignature_88,11,&(lvalues[1241]),0},
  1200. {"id-smime-mod-ets-eSignature-97","id-smime-mod-ets-eSignature-97",
  1201. NID_id_smime_mod_ets_eSignature_97,11,&(lvalues[1252]),0},
  1202. {"id-smime-mod-ets-eSigPolicy-88","id-smime-mod-ets-eSigPolicy-88",
  1203. NID_id_smime_mod_ets_eSigPolicy_88,11,&(lvalues[1263]),0},
  1204. {"id-smime-mod-ets-eSigPolicy-97","id-smime-mod-ets-eSigPolicy-97",
  1205. NID_id_smime_mod_ets_eSigPolicy_97,11,&(lvalues[1274]),0},
  1206. {"id-smime-ct-receipt","id-smime-ct-receipt",NID_id_smime_ct_receipt,
  1207. 11,&(lvalues[1285]),0},
  1208. {"id-smime-ct-authData","id-smime-ct-authData",
  1209. NID_id_smime_ct_authData,11,&(lvalues[1296]),0},
  1210. {"id-smime-ct-publishCert","id-smime-ct-publishCert",
  1211. NID_id_smime_ct_publishCert,11,&(lvalues[1307]),0},
  1212. {"id-smime-ct-TSTInfo","id-smime-ct-TSTInfo",NID_id_smime_ct_TSTInfo,
  1213. 11,&(lvalues[1318]),0},
  1214. {"id-smime-ct-TDTInfo","id-smime-ct-TDTInfo",NID_id_smime_ct_TDTInfo,
  1215. 11,&(lvalues[1329]),0},
  1216. {"id-smime-ct-contentInfo","id-smime-ct-contentInfo",
  1217. NID_id_smime_ct_contentInfo,11,&(lvalues[1340]),0},
  1218. {"id-smime-ct-DVCSRequestData","id-smime-ct-DVCSRequestData",
  1219. NID_id_smime_ct_DVCSRequestData,11,&(lvalues[1351]),0},
  1220. {"id-smime-ct-DVCSResponseData","id-smime-ct-DVCSResponseData",
  1221. NID_id_smime_ct_DVCSResponseData,11,&(lvalues[1362]),0},
  1222. {"id-smime-aa-receiptRequest","id-smime-aa-receiptRequest",
  1223. NID_id_smime_aa_receiptRequest,11,&(lvalues[1373]),0},
  1224. {"id-smime-aa-securityLabel","id-smime-aa-securityLabel",
  1225. NID_id_smime_aa_securityLabel,11,&(lvalues[1384]),0},
  1226. {"id-smime-aa-mlExpandHistory","id-smime-aa-mlExpandHistory",
  1227. NID_id_smime_aa_mlExpandHistory,11,&(lvalues[1395]),0},
  1228. {"id-smime-aa-contentHint","id-smime-aa-contentHint",
  1229. NID_id_smime_aa_contentHint,11,&(lvalues[1406]),0},
  1230. {"id-smime-aa-msgSigDigest","id-smime-aa-msgSigDigest",
  1231. NID_id_smime_aa_msgSigDigest,11,&(lvalues[1417]),0},
  1232. {"id-smime-aa-encapContentType","id-smime-aa-encapContentType",
  1233. NID_id_smime_aa_encapContentType,11,&(lvalues[1428]),0},
  1234. {"id-smime-aa-contentIdentifier","id-smime-aa-contentIdentifier",
  1235. NID_id_smime_aa_contentIdentifier,11,&(lvalues[1439]),0},
  1236. {"id-smime-aa-macValue","id-smime-aa-macValue",
  1237. NID_id_smime_aa_macValue,11,&(lvalues[1450]),0},
  1238. {"id-smime-aa-equivalentLabels","id-smime-aa-equivalentLabels",
  1239. NID_id_smime_aa_equivalentLabels,11,&(lvalues[1461]),0},
  1240. {"id-smime-aa-contentReference","id-smime-aa-contentReference",
  1241. NID_id_smime_aa_contentReference,11,&(lvalues[1472]),0},
  1242. {"id-smime-aa-encrypKeyPref","id-smime-aa-encrypKeyPref",
  1243. NID_id_smime_aa_encrypKeyPref,11,&(lvalues[1483]),0},
  1244. {"id-smime-aa-signingCertificate","id-smime-aa-signingCertificate",
  1245. NID_id_smime_aa_signingCertificate,11,&(lvalues[1494]),0},
  1246. {"id-smime-aa-smimeEncryptCerts","id-smime-aa-smimeEncryptCerts",
  1247. NID_id_smime_aa_smimeEncryptCerts,11,&(lvalues[1505]),0},
  1248. {"id-smime-aa-timeStampToken","id-smime-aa-timeStampToken",
  1249. NID_id_smime_aa_timeStampToken,11,&(lvalues[1516]),0},
  1250. {"id-smime-aa-ets-sigPolicyId","id-smime-aa-ets-sigPolicyId",
  1251. NID_id_smime_aa_ets_sigPolicyId,11,&(lvalues[1527]),0},
  1252. {"id-smime-aa-ets-commitmentType","id-smime-aa-ets-commitmentType",
  1253. NID_id_smime_aa_ets_commitmentType,11,&(lvalues[1538]),0},
  1254. {"id-smime-aa-ets-signerLocation","id-smime-aa-ets-signerLocation",
  1255. NID_id_smime_aa_ets_signerLocation,11,&(lvalues[1549]),0},
  1256. {"id-smime-aa-ets-signerAttr","id-smime-aa-ets-signerAttr",
  1257. NID_id_smime_aa_ets_signerAttr,11,&(lvalues[1560]),0},
  1258. {"id-smime-aa-ets-otherSigCert","id-smime-aa-ets-otherSigCert",
  1259. NID_id_smime_aa_ets_otherSigCert,11,&(lvalues[1571]),0},
  1260. {"id-smime-aa-ets-contentTimestamp",
  1261. "id-smime-aa-ets-contentTimestamp",
  1262. NID_id_smime_aa_ets_contentTimestamp,11,&(lvalues[1582]),0},
  1263. {"id-smime-aa-ets-CertificateRefs","id-smime-aa-ets-CertificateRefs",
  1264. NID_id_smime_aa_ets_CertificateRefs,11,&(lvalues[1593]),0},
  1265. {"id-smime-aa-ets-RevocationRefs","id-smime-aa-ets-RevocationRefs",
  1266. NID_id_smime_aa_ets_RevocationRefs,11,&(lvalues[1604]),0},
  1267. {"id-smime-aa-ets-certValues","id-smime-aa-ets-certValues",
  1268. NID_id_smime_aa_ets_certValues,11,&(lvalues[1615]),0},
  1269. {"id-smime-aa-ets-revocationValues",
  1270. "id-smime-aa-ets-revocationValues",
  1271. NID_id_smime_aa_ets_revocationValues,11,&(lvalues[1626]),0},
  1272. {"id-smime-aa-ets-escTimeStamp","id-smime-aa-ets-escTimeStamp",
  1273. NID_id_smime_aa_ets_escTimeStamp,11,&(lvalues[1637]),0},
  1274. {"id-smime-aa-ets-certCRLTimestamp",
  1275. "id-smime-aa-ets-certCRLTimestamp",
  1276. NID_id_smime_aa_ets_certCRLTimestamp,11,&(lvalues[1648]),0},
  1277. {"id-smime-aa-ets-archiveTimeStamp",
  1278. "id-smime-aa-ets-archiveTimeStamp",
  1279. NID_id_smime_aa_ets_archiveTimeStamp,11,&(lvalues[1659]),0},
  1280. {"id-smime-aa-signatureType","id-smime-aa-signatureType",
  1281. NID_id_smime_aa_signatureType,11,&(lvalues[1670]),0},
  1282. {"id-smime-aa-dvcs-dvc","id-smime-aa-dvcs-dvc",
  1283. NID_id_smime_aa_dvcs_dvc,11,&(lvalues[1681]),0},
  1284. {"id-smime-alg-ESDHwith3DES","id-smime-alg-ESDHwith3DES",
  1285. NID_id_smime_alg_ESDHwith3DES,11,&(lvalues[1692]),0},
  1286. {"id-smime-alg-ESDHwithRC2","id-smime-alg-ESDHwithRC2",
  1287. NID_id_smime_alg_ESDHwithRC2,11,&(lvalues[1703]),0},
  1288. {"id-smime-alg-3DESwrap","id-smime-alg-3DESwrap",
  1289. NID_id_smime_alg_3DESwrap,11,&(lvalues[1714]),0},
  1290. {"id-smime-alg-RC2wrap","id-smime-alg-RC2wrap",
  1291. NID_id_smime_alg_RC2wrap,11,&(lvalues[1725]),0},
  1292. {"id-smime-alg-ESDH","id-smime-alg-ESDH",NID_id_smime_alg_ESDH,11,
  1293. &(lvalues[1736]),0},
  1294. {"id-smime-alg-CMS3DESwrap","id-smime-alg-CMS3DESwrap",
  1295. NID_id_smime_alg_CMS3DESwrap,11,&(lvalues[1747]),0},
  1296. {"id-smime-alg-CMSRC2wrap","id-smime-alg-CMSRC2wrap",
  1297. NID_id_smime_alg_CMSRC2wrap,11,&(lvalues[1758]),0},
  1298. {"id-smime-cd-ldap","id-smime-cd-ldap",NID_id_smime_cd_ldap,11,
  1299. &(lvalues[1769]),0},
  1300. {"id-smime-spq-ets-sqt-uri","id-smime-spq-ets-sqt-uri",
  1301. NID_id_smime_spq_ets_sqt_uri,11,&(lvalues[1780]),0},
  1302. {"id-smime-spq-ets-sqt-unotice","id-smime-spq-ets-sqt-unotice",
  1303. NID_id_smime_spq_ets_sqt_unotice,11,&(lvalues[1791]),0},
  1304. {"id-smime-cti-ets-proofOfOrigin","id-smime-cti-ets-proofOfOrigin",
  1305. NID_id_smime_cti_ets_proofOfOrigin,11,&(lvalues[1802]),0},
  1306. {"id-smime-cti-ets-proofOfReceipt","id-smime-cti-ets-proofOfReceipt",
  1307. NID_id_smime_cti_ets_proofOfReceipt,11,&(lvalues[1813]),0},
  1308. {"id-smime-cti-ets-proofOfDelivery",
  1309. "id-smime-cti-ets-proofOfDelivery",
  1310. NID_id_smime_cti_ets_proofOfDelivery,11,&(lvalues[1824]),0},
  1311. {"id-smime-cti-ets-proofOfSender","id-smime-cti-ets-proofOfSender",
  1312. NID_id_smime_cti_ets_proofOfSender,11,&(lvalues[1835]),0},
  1313. {"id-smime-cti-ets-proofOfApproval",
  1314. "id-smime-cti-ets-proofOfApproval",
  1315. NID_id_smime_cti_ets_proofOfApproval,11,&(lvalues[1846]),0},
  1316. {"id-smime-cti-ets-proofOfCreation",
  1317. "id-smime-cti-ets-proofOfCreation",
  1318. NID_id_smime_cti_ets_proofOfCreation,11,&(lvalues[1857]),0},
  1319. {"MD4","md4",NID_md4,8,&(lvalues[1868]),0},
  1320. {"id-pkix-mod","id-pkix-mod",NID_id_pkix_mod,7,&(lvalues[1876]),0},
  1321. {"id-qt","id-qt",NID_id_qt,7,&(lvalues[1883]),0},
  1322. {"id-it","id-it",NID_id_it,7,&(lvalues[1890]),0},
  1323. {"id-pkip","id-pkip",NID_id_pkip,7,&(lvalues[1897]),0},
  1324. {"id-alg","id-alg",NID_id_alg,7,&(lvalues[1904]),0},
  1325. {"id-cmc","id-cmc",NID_id_cmc,7,&(lvalues[1911]),0},
  1326. {"id-on","id-on",NID_id_on,7,&(lvalues[1918]),0},
  1327. {"id-pda","id-pda",NID_id_pda,7,&(lvalues[1925]),0},
  1328. {"id-aca","id-aca",NID_id_aca,7,&(lvalues[1932]),0},
  1329. {"id-qcs","id-qcs",NID_id_qcs,7,&(lvalues[1939]),0},
  1330. {"id-cct","id-cct",NID_id_cct,7,&(lvalues[1946]),0},
  1331. {"id-pkix1-explicit-88","id-pkix1-explicit-88",
  1332. NID_id_pkix1_explicit_88,8,&(lvalues[1953]),0},
  1333. {"id-pkix1-implicit-88","id-pkix1-implicit-88",
  1334. NID_id_pkix1_implicit_88,8,&(lvalues[1961]),0},
  1335. {"id-pkix1-explicit-93","id-pkix1-explicit-93",
  1336. NID_id_pkix1_explicit_93,8,&(lvalues[1969]),0},
  1337. {"id-pkix1-implicit-93","id-pkix1-implicit-93",
  1338. NID_id_pkix1_implicit_93,8,&(lvalues[1977]),0},
  1339. {"id-mod-crmf","id-mod-crmf",NID_id_mod_crmf,8,&(lvalues[1985]),0},
  1340. {"id-mod-cmc","id-mod-cmc",NID_id_mod_cmc,8,&(lvalues[1993]),0},
  1341. {"id-mod-kea-profile-88","id-mod-kea-profile-88",
  1342. NID_id_mod_kea_profile_88,8,&(lvalues[2001]),0},
  1343. {"id-mod-kea-profile-93","id-mod-kea-profile-93",
  1344. NID_id_mod_kea_profile_93,8,&(lvalues[2009]),0},
  1345. {"id-mod-cmp","id-mod-cmp",NID_id_mod_cmp,8,&(lvalues[2017]),0},
  1346. {"id-mod-qualified-cert-88","id-mod-qualified-cert-88",
  1347. NID_id_mod_qualified_cert_88,8,&(lvalues[2025]),0},
  1348. {"id-mod-qualified-cert-93","id-mod-qualified-cert-93",
  1349. NID_id_mod_qualified_cert_93,8,&(lvalues[2033]),0},
  1350. {"id-mod-attribute-cert","id-mod-attribute-cert",
  1351. NID_id_mod_attribute_cert,8,&(lvalues[2041]),0},
  1352. {"id-mod-timestamp-protocol","id-mod-timestamp-protocol",
  1353. NID_id_mod_timestamp_protocol,8,&(lvalues[2049]),0},
  1354. {"id-mod-ocsp","id-mod-ocsp",NID_id_mod_ocsp,8,&(lvalues[2057]),0},
  1355. {"id-mod-dvcs","id-mod-dvcs",NID_id_mod_dvcs,8,&(lvalues[2065]),0},
  1356. {"id-mod-cmp2000","id-mod-cmp2000",NID_id_mod_cmp2000,8,
  1357. &(lvalues[2073]),0},
  1358. {"biometricInfo","Biometric Info",NID_biometricInfo,8,&(lvalues[2081]),0},
  1359. {"qcStatements","qcStatements",NID_qcStatements,8,&(lvalues[2089]),0},
  1360. {"ac-auditEntity","ac-auditEntity",NID_ac_auditEntity,8,
  1361. &(lvalues[2097]),0},
  1362. {"ac-targeting","ac-targeting",NID_ac_targeting,8,&(lvalues[2105]),0},
  1363. {"aaControls","aaControls",NID_aaControls,8,&(lvalues[2113]),0},
  1364. {"sbgp-ipAddrBlock","sbgp-ipAddrBlock",NID_sbgp_ipAddrBlock,8,
  1365. &(lvalues[2121]),0},
  1366. {"sbgp-autonomousSysNum","sbgp-autonomousSysNum",
  1367. NID_sbgp_autonomousSysNum,8,&(lvalues[2129]),0},
  1368. {"sbgp-routerIdentifier","sbgp-routerIdentifier",
  1369. NID_sbgp_routerIdentifier,8,&(lvalues[2137]),0},
  1370. {"textNotice","textNotice",NID_textNotice,8,&(lvalues[2145]),0},
  1371. {"ipsecEndSystem","IPSec End System",NID_ipsecEndSystem,8,
  1372. &(lvalues[2153]),0},
  1373. {"ipsecTunnel","IPSec Tunnel",NID_ipsecTunnel,8,&(lvalues[2161]),0},
  1374. {"ipsecUser","IPSec User",NID_ipsecUser,8,&(lvalues[2169]),0},
  1375. {"DVCS","dvcs",NID_dvcs,8,&(lvalues[2177]),0},
  1376. {"id-it-caProtEncCert","id-it-caProtEncCert",NID_id_it_caProtEncCert,
  1377. 8,&(lvalues[2185]),0},
  1378. {"id-it-signKeyPairTypes","id-it-signKeyPairTypes",
  1379. NID_id_it_signKeyPairTypes,8,&(lvalues[2193]),0},
  1380. {"id-it-encKeyPairTypes","id-it-encKeyPairTypes",
  1381. NID_id_it_encKeyPairTypes,8,&(lvalues[2201]),0},
  1382. {"id-it-preferredSymmAlg","id-it-preferredSymmAlg",
  1383. NID_id_it_preferredSymmAlg,8,&(lvalues[2209]),0},
  1384. {"id-it-caKeyUpdateInfo","id-it-caKeyUpdateInfo",
  1385. NID_id_it_caKeyUpdateInfo,8,&(lvalues[2217]),0},
  1386. {"id-it-currentCRL","id-it-currentCRL",NID_id_it_currentCRL,8,
  1387. &(lvalues[2225]),0},
  1388. {"id-it-unsupportedOIDs","id-it-unsupportedOIDs",
  1389. NID_id_it_unsupportedOIDs,8,&(lvalues[2233]),0},
  1390. {"id-it-subscriptionRequest","id-it-subscriptionRequest",
  1391. NID_id_it_subscriptionRequest,8,&(lvalues[2241]),0},
  1392. {"id-it-subscriptionResponse","id-it-subscriptionResponse",
  1393. NID_id_it_subscriptionResponse,8,&(lvalues[2249]),0},
  1394. {"id-it-keyPairParamReq","id-it-keyPairParamReq",
  1395. NID_id_it_keyPairParamReq,8,&(lvalues[2257]),0},
  1396. {"id-it-keyPairParamRep","id-it-keyPairParamRep",
  1397. NID_id_it_keyPairParamRep,8,&(lvalues[2265]),0},
  1398. {"id-it-revPassphrase","id-it-revPassphrase",NID_id_it_revPassphrase,
  1399. 8,&(lvalues[2273]),0},
  1400. {"id-it-implicitConfirm","id-it-implicitConfirm",
  1401. NID_id_it_implicitConfirm,8,&(lvalues[2281]),0},
  1402. {"id-it-confirmWaitTime","id-it-confirmWaitTime",
  1403. NID_id_it_confirmWaitTime,8,&(lvalues[2289]),0},
  1404. {"id-it-origPKIMessage","id-it-origPKIMessage",
  1405. NID_id_it_origPKIMessage,8,&(lvalues[2297]),0},
  1406. {"id-regCtrl","id-regCtrl",NID_id_regCtrl,8,&(lvalues[2305]),0},
  1407. {"id-regInfo","id-regInfo",NID_id_regInfo,8,&(lvalues[2313]),0},
  1408. {"id-regCtrl-regToken","id-regCtrl-regToken",NID_id_regCtrl_regToken,
  1409. 9,&(lvalues[2321]),0},
  1410. {"id-regCtrl-authenticator","id-regCtrl-authenticator",
  1411. NID_id_regCtrl_authenticator,9,&(lvalues[2330]),0},
  1412. {"id-regCtrl-pkiPublicationInfo","id-regCtrl-pkiPublicationInfo",
  1413. NID_id_regCtrl_pkiPublicationInfo,9,&(lvalues[2339]),0},
  1414. {"id-regCtrl-pkiArchiveOptions","id-regCtrl-pkiArchiveOptions",
  1415. NID_id_regCtrl_pkiArchiveOptions,9,&(lvalues[2348]),0},
  1416. {"id-regCtrl-oldCertID","id-regCtrl-oldCertID",
  1417. NID_id_regCtrl_oldCertID,9,&(lvalues[2357]),0},
  1418. {"id-regCtrl-protocolEncrKey","id-regCtrl-protocolEncrKey",
  1419. NID_id_regCtrl_protocolEncrKey,9,&(lvalues[2366]),0},
  1420. {"id-regInfo-utf8Pairs","id-regInfo-utf8Pairs",
  1421. NID_id_regInfo_utf8Pairs,9,&(lvalues[2375]),0},
  1422. {"id-regInfo-certReq","id-regInfo-certReq",NID_id_regInfo_certReq,9,
  1423. &(lvalues[2384]),0},
  1424. {"id-alg-des40","id-alg-des40",NID_id_alg_des40,8,&(lvalues[2393]),0},
  1425. {"id-alg-noSignature","id-alg-noSignature",NID_id_alg_noSignature,8,
  1426. &(lvalues[2401]),0},
  1427. {"id-alg-dh-sig-hmac-sha1","id-alg-dh-sig-hmac-sha1",
  1428. NID_id_alg_dh_sig_hmac_sha1,8,&(lvalues[2409]),0},
  1429. {"id-alg-dh-pop","id-alg-dh-pop",NID_id_alg_dh_pop,8,&(lvalues[2417]),0},
  1430. {"id-cmc-statusInfo","id-cmc-statusInfo",NID_id_cmc_statusInfo,8,
  1431. &(lvalues[2425]),0},
  1432. {"id-cmc-identification","id-cmc-identification",
  1433. NID_id_cmc_identification,8,&(lvalues[2433]),0},
  1434. {"id-cmc-identityProof","id-cmc-identityProof",
  1435. NID_id_cmc_identityProof,8,&(lvalues[2441]),0},
  1436. {"id-cmc-dataReturn","id-cmc-dataReturn",NID_id_cmc_dataReturn,8,
  1437. &(lvalues[2449]),0},
  1438. {"id-cmc-transactionId","id-cmc-transactionId",
  1439. NID_id_cmc_transactionId,8,&(lvalues[2457]),0},
  1440. {"id-cmc-senderNonce","id-cmc-senderNonce",NID_id_cmc_senderNonce,8,
  1441. &(lvalues[2465]),0},
  1442. {"id-cmc-recipientNonce","id-cmc-recipientNonce",
  1443. NID_id_cmc_recipientNonce,8,&(lvalues[2473]),0},
  1444. {"id-cmc-addExtensions","id-cmc-addExtensions",
  1445. NID_id_cmc_addExtensions,8,&(lvalues[2481]),0},
  1446. {"id-cmc-encryptedPOP","id-cmc-encryptedPOP",NID_id_cmc_encryptedPOP,
  1447. 8,&(lvalues[2489]),0},
  1448. {"id-cmc-decryptedPOP","id-cmc-decryptedPOP",NID_id_cmc_decryptedPOP,
  1449. 8,&(lvalues[2497]),0},
  1450. {"id-cmc-lraPOPWitness","id-cmc-lraPOPWitness",
  1451. NID_id_cmc_lraPOPWitness,8,&(lvalues[2505]),0},
  1452. {"id-cmc-getCert","id-cmc-getCert",NID_id_cmc_getCert,8,
  1453. &(lvalues[2513]),0},
  1454. {"id-cmc-getCRL","id-cmc-getCRL",NID_id_cmc_getCRL,8,&(lvalues[2521]),0},
  1455. {"id-cmc-revokeRequest","id-cmc-revokeRequest",
  1456. NID_id_cmc_revokeRequest,8,&(lvalues[2529]),0},
  1457. {"id-cmc-regInfo","id-cmc-regInfo",NID_id_cmc_regInfo,8,
  1458. &(lvalues[2537]),0},
  1459. {"id-cmc-responseInfo","id-cmc-responseInfo",NID_id_cmc_responseInfo,
  1460. 8,&(lvalues[2545]),0},
  1461. {"id-cmc-queryPending","id-cmc-queryPending",NID_id_cmc_queryPending,
  1462. 8,&(lvalues[2553]),0},
  1463. {"id-cmc-popLinkRandom","id-cmc-popLinkRandom",
  1464. NID_id_cmc_popLinkRandom,8,&(lvalues[2561]),0},
  1465. {"id-cmc-popLinkWitness","id-cmc-popLinkWitness",
  1466. NID_id_cmc_popLinkWitness,8,&(lvalues[2569]),0},
  1467. {"id-cmc-confirmCertAcceptance","id-cmc-confirmCertAcceptance",
  1468. NID_id_cmc_confirmCertAcceptance,8,&(lvalues[2577]),0},
  1469. {"id-on-personalData","id-on-personalData",NID_id_on_personalData,8,
  1470. &(lvalues[2585]),0},
  1471. {"id-pda-dateOfBirth","id-pda-dateOfBirth",NID_id_pda_dateOfBirth,8,
  1472. &(lvalues[2593]),0},
  1473. {"id-pda-placeOfBirth","id-pda-placeOfBirth",NID_id_pda_placeOfBirth,
  1474. 8,&(lvalues[2601]),0},
  1475. {NULL,NULL,NID_undef,0,NULL,0},
  1476. {"id-pda-gender","id-pda-gender",NID_id_pda_gender,8,&(lvalues[2609]),0},
  1477. {"id-pda-countryOfCitizenship","id-pda-countryOfCitizenship",
  1478. NID_id_pda_countryOfCitizenship,8,&(lvalues[2617]),0},
  1479. {"id-pda-countryOfResidence","id-pda-countryOfResidence",
  1480. NID_id_pda_countryOfResidence,8,&(lvalues[2625]),0},
  1481. {"id-aca-authenticationInfo","id-aca-authenticationInfo",
  1482. NID_id_aca_authenticationInfo,8,&(lvalues[2633]),0},
  1483. {"id-aca-accessIdentity","id-aca-accessIdentity",
  1484. NID_id_aca_accessIdentity,8,&(lvalues[2641]),0},
  1485. {"id-aca-chargingIdentity","id-aca-chargingIdentity",
  1486. NID_id_aca_chargingIdentity,8,&(lvalues[2649]),0},
  1487. {"id-aca-group","id-aca-group",NID_id_aca_group,8,&(lvalues[2657]),0},
  1488. {"id-aca-role","id-aca-role",NID_id_aca_role,8,&(lvalues[2665]),0},
  1489. {"id-qcs-pkixQCSyntax-v1","id-qcs-pkixQCSyntax-v1",
  1490. NID_id_qcs_pkixQCSyntax_v1,8,&(lvalues[2673]),0},
  1491. {"id-cct-crs","id-cct-crs",NID_id_cct_crs,8,&(lvalues[2681]),0},
  1492. {"id-cct-PKIData","id-cct-PKIData",NID_id_cct_PKIData,8,
  1493. &(lvalues[2689]),0},
  1494. {"id-cct-PKIResponse","id-cct-PKIResponse",NID_id_cct_PKIResponse,8,
  1495. &(lvalues[2697]),0},
  1496. {"ad_timestamping","AD Time Stamping",NID_ad_timeStamping,8,
  1497. &(lvalues[2705]),0},
  1498. {"AD_DVCS","ad dvcs",NID_ad_dvcs,8,&(lvalues[2713]),0},
  1499. {"basicOCSPResponse","Basic OCSP Response",NID_id_pkix_OCSP_basic,9,
  1500. &(lvalues[2721]),0},
  1501. {"Nonce","OCSP Nonce",NID_id_pkix_OCSP_Nonce,9,&(lvalues[2730]),0},
  1502. {"CrlID","OCSP CRL ID",NID_id_pkix_OCSP_CrlID,9,&(lvalues[2739]),0},
  1503. {"acceptableResponses","Acceptable OCSP Responses",
  1504. NID_id_pkix_OCSP_acceptableResponses,9,&(lvalues[2748]),0},
  1505. {"noCheck","OCSP No Check",NID_id_pkix_OCSP_noCheck,9,&(lvalues[2757]),0},
  1506. {"archiveCutoff","OCSP Archive Cutoff",NID_id_pkix_OCSP_archiveCutoff,
  1507. 9,&(lvalues[2766]),0},
  1508. {"serviceLocator","OCSP Service Locator",
  1509. NID_id_pkix_OCSP_serviceLocator,9,&(lvalues[2775]),0},
  1510. {"extendedStatus","Extended OCSP Status",
  1511. NID_id_pkix_OCSP_extendedStatus,9,&(lvalues[2784]),0},
  1512. {"valid","valid",NID_id_pkix_OCSP_valid,9,&(lvalues[2793]),0},
  1513. {"path","path",NID_id_pkix_OCSP_path,9,&(lvalues[2802]),0},
  1514. {"trustRoot","Trust Root",NID_id_pkix_OCSP_trustRoot,9,
  1515. &(lvalues[2811]),0},
  1516. {"algorithm","algorithm",NID_algorithm,4,&(lvalues[2820]),0},
  1517. {"rsaSignature","rsaSignature",NID_rsaSignature,5,&(lvalues[2824]),0},
  1518. {"X500algorithms","directory services - algorithms",
  1519. NID_X500algorithms,2,&(lvalues[2829]),0},
  1520. {"ORG","org",NID_org,1,&(lvalues[2831]),0},
  1521. {"DOD","dod",NID_dod,2,&(lvalues[2832]),0},
  1522. {"IANA","iana",NID_iana,3,&(lvalues[2834]),0},
  1523. {"directory","Directory",NID_Directory,4,&(lvalues[2837]),0},
  1524. {"mgmt","Management",NID_Management,4,&(lvalues[2841]),0},
  1525. {"experimental","Experimental",NID_Experimental,4,&(lvalues[2845]),0},
  1526. {"private","Private",NID_Private,4,&(lvalues[2849]),0},
  1527. {"security","Security",NID_Security,4,&(lvalues[2853]),0},
  1528. {"snmpv2","SNMPv2",NID_SNMPv2,4,&(lvalues[2857]),0},
  1529. {"Mail","Mail",NID_Mail,4,&(lvalues[2861]),0},
  1530. {"enterprises","Enterprises",NID_Enterprises,5,&(lvalues[2865]),0},
  1531. {"dcobject","dcObject",NID_dcObject,9,&(lvalues[2870]),0},
  1532. {"DC","domainComponent",NID_domainComponent,10,&(lvalues[2879]),0},
  1533. {"domain","Domain",NID_Domain,10,&(lvalues[2889]),0},
  1534. {"NULL","NULL",NID_joint_iso_ccitt,1,&(lvalues[2899]),0},
  1535. {"selected-attribute-types","Selected Attribute Types",
  1536. NID_selected_attribute_types,3,&(lvalues[2900]),0},
  1537. {"clearance","clearance",NID_clearance,4,&(lvalues[2903]),0},
  1538. {"RSA-MD4","md4WithRSAEncryption",NID_md4WithRSAEncryption,9,
  1539. &(lvalues[2907]),0},
  1540. {"ac-proxying","ac-proxying",NID_ac_proxying,8,&(lvalues[2916]),0},
  1541. {"subjectInfoAccess","Subject Information Access",NID_sinfo_access,8,
  1542. &(lvalues[2924]),0},
  1543. {"id-aca-encAttrs","id-aca-encAttrs",NID_id_aca_encAttrs,8,
  1544. &(lvalues[2932]),0},
  1545. {"role","role",NID_role,3,&(lvalues[2940]),0},
  1546. {"policyConstraints","X509v3 Policy Constraints",
  1547. NID_policy_constraints,3,&(lvalues[2943]),0},
  1548. {"targetInformation","X509v3 AC Targeting",NID_target_information,3,
  1549. &(lvalues[2946]),0},
  1550. {"noRevAvail","X509v3 No Revocation Available",NID_no_rev_avail,3,
  1551. &(lvalues[2949]),0},
  1552. {"NULL","NULL",NID_ccitt,1,&(lvalues[2952]),0},
  1553. {"ansi-X9-62","ANSI X9.62",NID_ansi_X9_62,5,&(lvalues[2953]),0},
  1554. {"prime-field","prime-field",NID_X9_62_prime_field,7,&(lvalues[2958]),0},
  1555. {"characteristic-two-field","characteristic-two-field",
  1556. NID_X9_62_characteristic_two_field,7,&(lvalues[2965]),0},
  1557. {"id-ecPublicKey","id-ecPublicKey",NID_X9_62_id_ecPublicKey,7,
  1558. &(lvalues[2972]),0},
  1559. {"prime192v1","prime192v1",NID_X9_62_prime192v1,8,&(lvalues[2979]),0},
  1560. {"prime192v2","prime192v2",NID_X9_62_prime192v2,8,&(lvalues[2987]),0},
  1561. {"prime192v3","prime192v3",NID_X9_62_prime192v3,8,&(lvalues[2995]),0},
  1562. {"prime239v1","prime239v1",NID_X9_62_prime239v1,8,&(lvalues[3003]),0},
  1563. {"prime239v2","prime239v2",NID_X9_62_prime239v2,8,&(lvalues[3011]),0},
  1564. {"prime239v3","prime239v3",NID_X9_62_prime239v3,8,&(lvalues[3019]),0},
  1565. {"prime256v1","prime256v1",NID_X9_62_prime256v1,8,&(lvalues[3027]),0},
  1566. {"ecdsa-with-SHA1","ecdsa-with-SHA1",NID_ecdsa_with_SHA1,7,
  1567. &(lvalues[3035]),0},
  1568. {"CSPName","Microsoft CSP Name",NID_ms_csp_name,9,&(lvalues[3042]),0},
  1569. {"AES-128-ECB","aes-128-ecb",NID_aes_128_ecb,9,&(lvalues[3051]),0},
  1570. {"AES-128-CBC","aes-128-cbc",NID_aes_128_cbc,9,&(lvalues[3060]),0},
  1571. {"AES-128-OFB","aes-128-ofb",NID_aes_128_ofb128,9,&(lvalues[3069]),0},
  1572. {"AES-128-CFB","aes-128-cfb",NID_aes_128_cfb128,9,&(lvalues[3078]),0},
  1573. {"AES-192-ECB","aes-192-ecb",NID_aes_192_ecb,9,&(lvalues[3087]),0},
  1574. {"AES-192-CBC","aes-192-cbc",NID_aes_192_cbc,9,&(lvalues[3096]),0},
  1575. {"AES-192-OFB","aes-192-ofb",NID_aes_192_ofb128,9,&(lvalues[3105]),0},
  1576. {"AES-192-CFB","aes-192-cfb",NID_aes_192_cfb128,9,&(lvalues[3114]),0},
  1577. {"AES-256-ECB","aes-256-ecb",NID_aes_256_ecb,9,&(lvalues[3123]),0},
  1578. {"AES-256-CBC","aes-256-cbc",NID_aes_256_cbc,9,&(lvalues[3132]),0},
  1579. {"AES-256-OFB","aes-256-ofb",NID_aes_256_ofb128,9,&(lvalues[3141]),0},
  1580. {"AES-256-CFB","aes-256-cfb",NID_aes_256_cfb128,9,&(lvalues[3150]),0},
  1581. {"holdInstructionCode","Hold Instruction Code",
  1582. NID_hold_instruction_code,3,&(lvalues[3159]),0},
  1583. {"holdInstructionNone","Hold Instruction None",
  1584. NID_hold_instruction_none,7,&(lvalues[3162]),0},
  1585. {"holdInstructionCallIssuer","Hold Instruction Call Issuer",
  1586. NID_hold_instruction_call_issuer,7,&(lvalues[3169]),0},
  1587. {"holdInstructionReject","Hold Instruction Reject",
  1588. NID_hold_instruction_reject,7,&(lvalues[3176]),0},
  1589. {"data","data",NID_data,1,&(lvalues[3183]),0},
  1590. {"pss","pss",NID_pss,3,&(lvalues[3184]),0},
  1591. {"ucl","ucl",NID_ucl,7,&(lvalues[3187]),0},
  1592. {"pilot","pilot",NID_pilot,8,&(lvalues[3194]),0},
  1593. {"pilotAttributeType","pilotAttributeType",NID_pilotAttributeType,9,
  1594. &(lvalues[3202]),0},
  1595. {"pilotAttributeSyntax","pilotAttributeSyntax",
  1596. NID_pilotAttributeSyntax,9,&(lvalues[3211]),0},
  1597. {"pilotObjectClass","pilotObjectClass",NID_pilotObjectClass,9,
  1598. &(lvalues[3220]),0},
  1599. {"pilotGroups","pilotGroups",NID_pilotGroups,9,&(lvalues[3229]),0},
  1600. {"iA5StringSyntax","iA5StringSyntax",NID_iA5StringSyntax,10,
  1601. &(lvalues[3238]),0},
  1602. {"caseIgnoreIA5StringSyntax","caseIgnoreIA5StringSyntax",
  1603. NID_caseIgnoreIA5StringSyntax,10,&(lvalues[3248]),0},
  1604. {"pilotObject","pilotObject",NID_pilotObject,10,&(lvalues[3258]),0},
  1605. {"pilotPerson","pilotPerson",NID_pilotPerson,10,&(lvalues[3268]),0},
  1606. {"account","account",NID_account,10,&(lvalues[3278]),0},
  1607. {"document","document",NID_document,10,&(lvalues[3288]),0},
  1608. {"room","room",NID_room,10,&(lvalues[3298]),0},
  1609. {"documentSeries","documentSeries",NID_documentSeries,10,
  1610. &(lvalues[3308]),0},
  1611. {"rFC822localPart","rFC822localPart",NID_rFC822localPart,10,
  1612. &(lvalues[3318]),0},
  1613. {"dNSDomain","dNSDomain",NID_dNSDomain,10,&(lvalues[3328]),0},
  1614. {"domainRelatedObject","domainRelatedObject",NID_domainRelatedObject,
  1615. 10,&(lvalues[3338]),0},
  1616. {"friendlyCountry","friendlyCountry",NID_friendlyCountry,10,
  1617. &(lvalues[3348]),0},
  1618. {"simpleSecurityObject","simpleSecurityObject",
  1619. NID_simpleSecurityObject,10,&(lvalues[3358]),0},
  1620. {"pilotOrganization","pilotOrganization",NID_pilotOrganization,10,
  1621. &(lvalues[3368]),0},
  1622. {"pilotDSA","pilotDSA",NID_pilotDSA,10,&(lvalues[3378]),0},
  1623. {"qualityLabelledData","qualityLabelledData",NID_qualityLabelledData,
  1624. 10,&(lvalues[3388]),0},
  1625. {"UID","userId",NID_userId,10,&(lvalues[3398]),0},
  1626. {"textEncodedORAddress","textEncodedORAddress",
  1627. NID_textEncodedORAddress,10,&(lvalues[3408]),0},
  1628. {"mail","rfc822Mailbox",NID_rfc822Mailbox,10,&(lvalues[3418]),0},
  1629. {"info","info",NID_info,10,&(lvalues[3428]),0},
  1630. {"favouriteDrink","favouriteDrink",NID_favouriteDrink,10,
  1631. &(lvalues[3438]),0},
  1632. {"roomNumber","roomNumber",NID_roomNumber,10,&(lvalues[3448]),0},
  1633. {"photo","photo",NID_photo,10,&(lvalues[3458]),0},
  1634. {"userClass","userClass",NID_userClass,10,&(lvalues[3468]),0},
  1635. {"host","host",NID_host,10,&(lvalues[3478]),0},
  1636. {"manager","manager",NID_manager,10,&(lvalues[3488]),0},
  1637. {"documentIdentifier","documentIdentifier",NID_documentIdentifier,10,
  1638. &(lvalues[3498]),0},
  1639. {"documentTitle","documentTitle",NID_documentTitle,10,&(lvalues[3508]),0},
  1640. {"documentVersion","documentVersion",NID_documentVersion,10,
  1641. &(lvalues[3518]),0},
  1642. {"documentAuthor","documentAuthor",NID_documentAuthor,10,
  1643. &(lvalues[3528]),0},
  1644. {"documentLocation","documentLocation",NID_documentLocation,10,
  1645. &(lvalues[3538]),0},
  1646. {"homeTelephoneNumber","homeTelephoneNumber",NID_homeTelephoneNumber,
  1647. 10,&(lvalues[3548]),0},
  1648. {"secretary","secretary",NID_secretary,10,&(lvalues[3558]),0},
  1649. {"otherMailbox","otherMailbox",NID_otherMailbox,10,&(lvalues[3568]),0},
  1650. {"lastModifiedTime","lastModifiedTime",NID_lastModifiedTime,10,
  1651. &(lvalues[3578]),0},
  1652. {"lastModifiedBy","lastModifiedBy",NID_lastModifiedBy,10,
  1653. &(lvalues[3588]),0},
  1654. {"aRecord","aRecord",NID_aRecord,10,&(lvalues[3598]),0},
  1655. {"pilotAttributeType27","pilotAttributeType27",
  1656. NID_pilotAttributeType27,10,&(lvalues[3608]),0},
  1657. {"mXRecord","mXRecord",NID_mXRecord,10,&(lvalues[3618]),0},
  1658. {"nSRecord","nSRecord",NID_nSRecord,10,&(lvalues[3628]),0},
  1659. {"sOARecord","sOARecord",NID_sOARecord,10,&(lvalues[3638]),0},
  1660. {"cNAMERecord","cNAMERecord",NID_cNAMERecord,10,&(lvalues[3648]),0},
  1661. {"associatedDomain","associatedDomain",NID_associatedDomain,10,
  1662. &(lvalues[3658]),0},
  1663. {"associatedName","associatedName",NID_associatedName,10,
  1664. &(lvalues[3668]),0},
  1665. {"homePostalAddress","homePostalAddress",NID_homePostalAddress,10,
  1666. &(lvalues[3678]),0},
  1667. {"personalTitle","personalTitle",NID_personalTitle,10,&(lvalues[3688]),0},
  1668. {"mobileTelephoneNumber","mobileTelephoneNumber",
  1669. NID_mobileTelephoneNumber,10,&(lvalues[3698]),0},
  1670. {"pagerTelephoneNumber","pagerTelephoneNumber",
  1671. NID_pagerTelephoneNumber,10,&(lvalues[3708]),0},
  1672. {"friendlyCountryName","friendlyCountryName",NID_friendlyCountryName,
  1673. 10,&(lvalues[3718]),0},
  1674. {"organizationalStatus","organizationalStatus",
  1675. NID_organizationalStatus,10,&(lvalues[3728]),0},
  1676. {"janetMailbox","janetMailbox",NID_janetMailbox,10,&(lvalues[3738]),0},
  1677. {"mailPreferenceOption","mailPreferenceOption",
  1678. NID_mailPreferenceOption,10,&(lvalues[3748]),0},
  1679. {"buildingName","buildingName",NID_buildingName,10,&(lvalues[3758]),0},
  1680. {"dSAQuality","dSAQuality",NID_dSAQuality,10,&(lvalues[3768]),0},
  1681. {"singleLevelQuality","singleLevelQuality",NID_singleLevelQuality,10,
  1682. &(lvalues[3778]),0},
  1683. {"subtreeMinimumQuality","subtreeMinimumQuality",
  1684. NID_subtreeMinimumQuality,10,&(lvalues[3788]),0},
  1685. {"subtreeMaximumQuality","subtreeMaximumQuality",
  1686. NID_subtreeMaximumQuality,10,&(lvalues[3798]),0},
  1687. {"personalSignature","personalSignature",NID_personalSignature,10,
  1688. &(lvalues[3808]),0},
  1689. {"dITRedirect","dITRedirect",NID_dITRedirect,10,&(lvalues[3818]),0},
  1690. {"audio","audio",NID_audio,10,&(lvalues[3828]),0},
  1691. {"documentPublisher","documentPublisher",NID_documentPublisher,10,
  1692. &(lvalues[3838]),0},
  1693. {"x500UniqueIdentifier","x500UniqueIdentifier",
  1694. NID_x500UniqueIdentifier,3,&(lvalues[3848]),0},
  1695. {"mime-mhs","MIME MHS",NID_mime_mhs,5,&(lvalues[3851]),0},
  1696. {"mime-mhs-headings","mime-mhs-headings",NID_mime_mhs_headings,6,
  1697. &(lvalues[3856]),0},
  1698. {"mime-mhs-bodies","mime-mhs-bodies",NID_mime_mhs_bodies,6,
  1699. &(lvalues[3862]),0},
  1700. {"id-hex-partial-message","id-hex-partial-message",
  1701. NID_id_hex_partial_message,7,&(lvalues[3868]),0},
  1702. {"id-hex-multipart-message","id-hex-multipart-message",
  1703. NID_id_hex_multipart_message,7,&(lvalues[3875]),0},
  1704. {"generationQualifier","generationQualifier",NID_generationQualifier,
  1705. 3,&(lvalues[3882]),0},
  1706. {"pseudonym","pseudonym",NID_pseudonym,3,&(lvalues[3885]),0},
  1707. {NULL,NULL,NID_undef,0,NULL,0},
  1708. {"id-set","Secure Electronic Transactions",NID_id_set,2,
  1709. &(lvalues[3888]),0},
  1710. {"set-ctype","content types",NID_set_ctype,3,&(lvalues[3890]),0},
  1711. {"set-msgExt","message extensions",NID_set_msgExt,3,&(lvalues[3893]),0},
  1712. {"set-attr","set-attr",NID_set_attr,3,&(lvalues[3896]),0},
  1713. {"set-policy","set-policy",NID_set_policy,3,&(lvalues[3899]),0},
  1714. {"set-certExt","certificate extensions",NID_set_certExt,3,
  1715. &(lvalues[3902]),0},
  1716. {"set-brand","set-brand",NID_set_brand,3,&(lvalues[3905]),0},
  1717. {"setct-PANData","setct-PANData",NID_setct_PANData,4,&(lvalues[3908]),0},
  1718. {"setct-PANToken","setct-PANToken",NID_setct_PANToken,4,
  1719. &(lvalues[3912]),0},
  1720. {"setct-PANOnly","setct-PANOnly",NID_setct_PANOnly,4,&(lvalues[3916]),0},
  1721. {"setct-OIData","setct-OIData",NID_setct_OIData,4,&(lvalues[3920]),0},
  1722. {"setct-PI","setct-PI",NID_setct_PI,4,&(lvalues[3924]),0},
  1723. {"setct-PIData","setct-PIData",NID_setct_PIData,4,&(lvalues[3928]),0},
  1724. {"setct-PIDataUnsigned","setct-PIDataUnsigned",
  1725. NID_setct_PIDataUnsigned,4,&(lvalues[3932]),0},
  1726. {"setct-HODInput","setct-HODInput",NID_setct_HODInput,4,
  1727. &(lvalues[3936]),0},
  1728. {"setct-AuthResBaggage","setct-AuthResBaggage",
  1729. NID_setct_AuthResBaggage,4,&(lvalues[3940]),0},
  1730. {"setct-AuthRevReqBaggage","setct-AuthRevReqBaggage",
  1731. NID_setct_AuthRevReqBaggage,4,&(lvalues[3944]),0},
  1732. {"setct-AuthRevResBaggage","setct-AuthRevResBaggage",
  1733. NID_setct_AuthRevResBaggage,4,&(lvalues[3948]),0},
  1734. {"setct-CapTokenSeq","setct-CapTokenSeq",NID_setct_CapTokenSeq,4,
  1735. &(lvalues[3952]),0},
  1736. {"setct-PInitResData","setct-PInitResData",NID_setct_PInitResData,4,
  1737. &(lvalues[3956]),0},
  1738. {"setct-PI-TBS","setct-PI-TBS",NID_setct_PI_TBS,4,&(lvalues[3960]),0},
  1739. {"setct-PResData","setct-PResData",NID_setct_PResData,4,
  1740. &(lvalues[3964]),0},
  1741. {"setct-AuthReqTBS","setct-AuthReqTBS",NID_setct_AuthReqTBS,4,
  1742. &(lvalues[3968]),0},
  1743. {"setct-AuthResTBS","setct-AuthResTBS",NID_setct_AuthResTBS,4,
  1744. &(lvalues[3972]),0},
  1745. {"setct-AuthResTBSX","setct-AuthResTBSX",NID_setct_AuthResTBSX,4,
  1746. &(lvalues[3976]),0},
  1747. {"setct-AuthTokenTBS","setct-AuthTokenTBS",NID_setct_AuthTokenTBS,4,
  1748. &(lvalues[3980]),0},
  1749. {"setct-CapTokenData","setct-CapTokenData",NID_setct_CapTokenData,4,
  1750. &(lvalues[3984]),0},
  1751. {"setct-CapTokenTBS","setct-CapTokenTBS",NID_setct_CapTokenTBS,4,
  1752. &(lvalues[3988]),0},
  1753. {"setct-AcqCardCodeMsg","setct-AcqCardCodeMsg",
  1754. NID_setct_AcqCardCodeMsg,4,&(lvalues[3992]),0},
  1755. {"setct-AuthRevReqTBS","setct-AuthRevReqTBS",NID_setct_AuthRevReqTBS,
  1756. 4,&(lvalues[3996]),0},
  1757. {"setct-AuthRevResData","setct-AuthRevResData",
  1758. NID_setct_AuthRevResData,4,&(lvalues[4000]),0},
  1759. {"setct-AuthRevResTBS","setct-AuthRevResTBS",NID_setct_AuthRevResTBS,
  1760. 4,&(lvalues[4004]),0},
  1761. {"setct-CapReqTBS","setct-CapReqTBS",NID_setct_CapReqTBS,4,
  1762. &(lvalues[4008]),0},
  1763. {"setct-CapReqTBSX","setct-CapReqTBSX",NID_setct_CapReqTBSX,4,
  1764. &(lvalues[4012]),0},
  1765. {"setct-CapResData","setct-CapResData",NID_setct_CapResData,4,
  1766. &(lvalues[4016]),0},
  1767. {"setct-CapRevReqTBS","setct-CapRevReqTBS",NID_setct_CapRevReqTBS,4,
  1768. &(lvalues[4020]),0},
  1769. {"setct-CapRevReqTBSX","setct-CapRevReqTBSX",NID_setct_CapRevReqTBSX,
  1770. 4,&(lvalues[4024]),0},
  1771. {"setct-CapRevResData","setct-CapRevResData",NID_setct_CapRevResData,
  1772. 4,&(lvalues[4028]),0},
  1773. {"setct-CredReqTBS","setct-CredReqTBS",NID_setct_CredReqTBS,4,
  1774. &(lvalues[4032]),0},
  1775. {"setct-CredReqTBSX","setct-CredReqTBSX",NID_setct_CredReqTBSX,4,
  1776. &(lvalues[4036]),0},
  1777. {"setct-CredResData","setct-CredResData",NID_setct_CredResData,4,
  1778. &(lvalues[4040]),0},
  1779. {"setct-CredRevReqTBS","setct-CredRevReqTBS",NID_setct_CredRevReqTBS,
  1780. 4,&(lvalues[4044]),0},
  1781. {"setct-CredRevReqTBSX","setct-CredRevReqTBSX",
  1782. NID_setct_CredRevReqTBSX,4,&(lvalues[4048]),0},
  1783. {"setct-CredRevResData","setct-CredRevResData",
  1784. NID_setct_CredRevResData,4,&(lvalues[4052]),0},
  1785. {"setct-PCertReqData","setct-PCertReqData",NID_setct_PCertReqData,4,
  1786. &(lvalues[4056]),0},
  1787. {"setct-PCertResTBS","setct-PCertResTBS",NID_setct_PCertResTBS,4,
  1788. &(lvalues[4060]),0},
  1789. {"setct-BatchAdminReqData","setct-BatchAdminReqData",
  1790. NID_setct_BatchAdminReqData,4,&(lvalues[4064]),0},
  1791. {"setct-BatchAdminResData","setct-BatchAdminResData",
  1792. NID_setct_BatchAdminResData,4,&(lvalues[4068]),0},
  1793. {"setct-CardCInitResTBS","setct-CardCInitResTBS",
  1794. NID_setct_CardCInitResTBS,4,&(lvalues[4072]),0},
  1795. {"setct-MeAqCInitResTBS","setct-MeAqCInitResTBS",
  1796. NID_setct_MeAqCInitResTBS,4,&(lvalues[4076]),0},
  1797. {"setct-RegFormResTBS","setct-RegFormResTBS",NID_setct_RegFormResTBS,
  1798. 4,&(lvalues[4080]),0},
  1799. {"setct-CertReqData","setct-CertReqData",NID_setct_CertReqData,4,
  1800. &(lvalues[4084]),0},
  1801. {"setct-CertReqTBS","setct-CertReqTBS",NID_setct_CertReqTBS,4,
  1802. &(lvalues[4088]),0},
  1803. {"setct-CertResData","setct-CertResData",NID_setct_CertResData,4,
  1804. &(lvalues[4092]),0},
  1805. {"setct-CertInqReqTBS","setct-CertInqReqTBS",NID_setct_CertInqReqTBS,
  1806. 4,&(lvalues[4096]),0},
  1807. {"setct-ErrorTBS","setct-ErrorTBS",NID_setct_ErrorTBS,4,
  1808. &(lvalues[4100]),0},
  1809. {"setct-PIDualSignedTBE","setct-PIDualSignedTBE",
  1810. NID_setct_PIDualSignedTBE,4,&(lvalues[4104]),0},
  1811. {"setct-PIUnsignedTBE","setct-PIUnsignedTBE",NID_setct_PIUnsignedTBE,
  1812. 4,&(lvalues[4108]),0},
  1813. {"setct-AuthReqTBE","setct-AuthReqTBE",NID_setct_AuthReqTBE,4,
  1814. &(lvalues[4112]),0},
  1815. {"setct-AuthResTBE","setct-AuthResTBE",NID_setct_AuthResTBE,4,
  1816. &(lvalues[4116]),0},
  1817. {"setct-AuthResTBEX","setct-AuthResTBEX",NID_setct_AuthResTBEX,4,
  1818. &(lvalues[4120]),0},
  1819. {"setct-AuthTokenTBE","setct-AuthTokenTBE",NID_setct_AuthTokenTBE,4,
  1820. &(lvalues[4124]),0},
  1821. {"setct-CapTokenTBE","setct-CapTokenTBE",NID_setct_CapTokenTBE,4,
  1822. &(lvalues[4128]),0},
  1823. {"setct-CapTokenTBEX","setct-CapTokenTBEX",NID_setct_CapTokenTBEX,4,
  1824. &(lvalues[4132]),0},
  1825. {"setct-AcqCardCodeMsgTBE","setct-AcqCardCodeMsgTBE",
  1826. NID_setct_AcqCardCodeMsgTBE,4,&(lvalues[4136]),0},
  1827. {"setct-AuthRevReqTBE","setct-AuthRevReqTBE",NID_setct_AuthRevReqTBE,
  1828. 4,&(lvalues[4140]),0},
  1829. {"setct-AuthRevResTBE","setct-AuthRevResTBE",NID_setct_AuthRevResTBE,
  1830. 4,&(lvalues[4144]),0},
  1831. {"setct-AuthRevResTBEB","setct-AuthRevResTBEB",
  1832. NID_setct_AuthRevResTBEB,4,&(lvalues[4148]),0},
  1833. {"setct-CapReqTBE","setct-CapReqTBE",NID_setct_CapReqTBE,4,
  1834. &(lvalues[4152]),0},
  1835. {"setct-CapReqTBEX","setct-CapReqTBEX",NID_setct_CapReqTBEX,4,
  1836. &(lvalues[4156]),0},
  1837. {"setct-CapResTBE","setct-CapResTBE",NID_setct_CapResTBE,4,
  1838. &(lvalues[4160]),0},
  1839. {"setct-CapRevReqTBE","setct-CapRevReqTBE",NID_setct_CapRevReqTBE,4,
  1840. &(lvalues[4164]),0},
  1841. {"setct-CapRevReqTBEX","setct-CapRevReqTBEX",NID_setct_CapRevReqTBEX,
  1842. 4,&(lvalues[4168]),0},
  1843. {"setct-CapRevResTBE","setct-CapRevResTBE",NID_setct_CapRevResTBE,4,
  1844. &(lvalues[4172]),0},
  1845. {"setct-CredReqTBE","setct-CredReqTBE",NID_setct_CredReqTBE,4,
  1846. &(lvalues[4176]),0},
  1847. {"setct-CredReqTBEX","setct-CredReqTBEX",NID_setct_CredReqTBEX,4,
  1848. &(lvalues[4180]),0},
  1849. {"setct-CredResTBE","setct-CredResTBE",NID_setct_CredResTBE,4,
  1850. &(lvalues[4184]),0},
  1851. {"setct-CredRevReqTBE","setct-CredRevReqTBE",NID_setct_CredRevReqTBE,
  1852. 4,&(lvalues[4188]),0},
  1853. {"setct-CredRevReqTBEX","setct-CredRevReqTBEX",
  1854. NID_setct_CredRevReqTBEX,4,&(lvalues[4192]),0},
  1855. {"setct-CredRevResTBE","setct-CredRevResTBE",NID_setct_CredRevResTBE,
  1856. 4,&(lvalues[4196]),0},
  1857. {"setct-BatchAdminReqTBE","setct-BatchAdminReqTBE",
  1858. NID_setct_BatchAdminReqTBE,4,&(lvalues[4200]),0},
  1859. {"setct-BatchAdminResTBE","setct-BatchAdminResTBE",
  1860. NID_setct_BatchAdminResTBE,4,&(lvalues[4204]),0},
  1861. {"setct-RegFormReqTBE","setct-RegFormReqTBE",NID_setct_RegFormReqTBE,
  1862. 4,&(lvalues[4208]),0},
  1863. {"setct-CertReqTBE","setct-CertReqTBE",NID_setct_CertReqTBE,4,
  1864. &(lvalues[4212]),0},
  1865. {"setct-CertReqTBEX","setct-CertReqTBEX",NID_setct_CertReqTBEX,4,
  1866. &(lvalues[4216]),0},
  1867. {"setct-CertResTBE","setct-CertResTBE",NID_setct_CertResTBE,4,
  1868. &(lvalues[4220]),0},
  1869. {"setct-CRLNotificationTBS","setct-CRLNotificationTBS",
  1870. NID_setct_CRLNotificationTBS,4,&(lvalues[4224]),0},
  1871. {"setct-CRLNotificationResTBS","setct-CRLNotificationResTBS",
  1872. NID_setct_CRLNotificationResTBS,4,&(lvalues[4228]),0},
  1873. {"setct-BCIDistributionTBS","setct-BCIDistributionTBS",
  1874. NID_setct_BCIDistributionTBS,4,&(lvalues[4232]),0},
  1875. {"setext-genCrypt","generic cryptogram",NID_setext_genCrypt,4,
  1876. &(lvalues[4236]),0},
  1877. {"setext-miAuth","merchant initiated auth",NID_setext_miAuth,4,
  1878. &(lvalues[4240]),0},
  1879. {"setext-pinSecure","setext-pinSecure",NID_setext_pinSecure,4,
  1880. &(lvalues[4244]),0},
  1881. {"setext-pinAny","setext-pinAny",NID_setext_pinAny,4,&(lvalues[4248]),0},
  1882. {"setext-track2","setext-track2",NID_setext_track2,4,&(lvalues[4252]),0},
  1883. {"setext-cv","additional verification",NID_setext_cv,4,
  1884. &(lvalues[4256]),0},
  1885. {"set-policy-root","set-policy-root",NID_set_policy_root,4,
  1886. &(lvalues[4260]),0},
  1887. {"setCext-hashedRoot","setCext-hashedRoot",NID_setCext_hashedRoot,4,
  1888. &(lvalues[4264]),0},
  1889. {"setCext-certType","setCext-certType",NID_setCext_certType,4,
  1890. &(lvalues[4268]),0},
  1891. {"setCext-merchData","setCext-merchData",NID_setCext_merchData,4,
  1892. &(lvalues[4272]),0},
  1893. {"setCext-cCertRequired","setCext-cCertRequired",
  1894. NID_setCext_cCertRequired,4,&(lvalues[4276]),0},
  1895. {"setCext-tunneling","setCext-tunneling",NID_setCext_tunneling,4,
  1896. &(lvalues[4280]),0},
  1897. {"setCext-setExt","setCext-setExt",NID_setCext_setExt,4,
  1898. &(lvalues[4284]),0},
  1899. {"setCext-setQualf","setCext-setQualf",NID_setCext_setQualf,4,
  1900. &(lvalues[4288]),0},
  1901. {"setCext-PGWYcapabilities","setCext-PGWYcapabilities",
  1902. NID_setCext_PGWYcapabilities,4,&(lvalues[4292]),0},
  1903. {"setCext-TokenIdentifier","setCext-TokenIdentifier",
  1904. NID_setCext_TokenIdentifier,4,&(lvalues[4296]),0},
  1905. {"setCext-Track2Data","setCext-Track2Data",NID_setCext_Track2Data,4,
  1906. &(lvalues[4300]),0},
  1907. {"setCext-TokenType","setCext-TokenType",NID_setCext_TokenType,4,
  1908. &(lvalues[4304]),0},
  1909. {"setCext-IssuerCapabilities","setCext-IssuerCapabilities",
  1910. NID_setCext_IssuerCapabilities,4,&(lvalues[4308]),0},
  1911. {"setAttr-Cert","setAttr-Cert",NID_setAttr_Cert,4,&(lvalues[4312]),0},
  1912. {"setAttr-PGWYcap","payment gateway capabilities",NID_setAttr_PGWYcap,
  1913. 4,&(lvalues[4316]),0},
  1914. {"setAttr-TokenType","setAttr-TokenType",NID_setAttr_TokenType,4,
  1915. &(lvalues[4320]),0},
  1916. {"setAttr-IssCap","issuer capabilities",NID_setAttr_IssCap,4,
  1917. &(lvalues[4324]),0},
  1918. {"set-rootKeyThumb","set-rootKeyThumb",NID_set_rootKeyThumb,5,
  1919. &(lvalues[4328]),0},
  1920. {"set-addPolicy","set-addPolicy",NID_set_addPolicy,5,&(lvalues[4333]),0},
  1921. {"setAttr-Token-EMV","setAttr-Token-EMV",NID_setAttr_Token_EMV,5,
  1922. &(lvalues[4338]),0},
  1923. {"setAttr-Token-B0Prime","setAttr-Token-B0Prime",
  1924. NID_setAttr_Token_B0Prime,5,&(lvalues[4343]),0},
  1925. {"setAttr-IssCap-CVM","setAttr-IssCap-CVM",NID_setAttr_IssCap_CVM,5,
  1926. &(lvalues[4348]),0},
  1927. {"setAttr-IssCap-T2","setAttr-IssCap-T2",NID_setAttr_IssCap_T2,5,
  1928. &(lvalues[4353]),0},
  1929. {"setAttr-IssCap-Sig","setAttr-IssCap-Sig",NID_setAttr_IssCap_Sig,5,
  1930. &(lvalues[4358]),0},
  1931. {"setAttr-GenCryptgrm","generate cryptogram",NID_setAttr_GenCryptgrm,
  1932. 6,&(lvalues[4363]),0},
  1933. {"setAttr-T2Enc","encrypted track 2",NID_setAttr_T2Enc,6,
  1934. &(lvalues[4369]),0},
  1935. {"setAttr-T2cleartxt","cleartext track 2",NID_setAttr_T2cleartxt,6,
  1936. &(lvalues[4375]),0},
  1937. {"setAttr-TokICCsig","ICC or token signature",NID_setAttr_TokICCsig,6,
  1938. &(lvalues[4381]),0},
  1939. {"setAttr-SecDevSig","secure device signature",NID_setAttr_SecDevSig,
  1940. 6,&(lvalues[4387]),0},
  1941. {"set-brand-IATA-ATA","set-brand-IATA-ATA",NID_set_brand_IATA_ATA,4,
  1942. &(lvalues[4393]),0},
  1943. {"set-brand-Diners","set-brand-Diners",NID_set_brand_Diners,4,
  1944. &(lvalues[4397]),0},
  1945. {"set-brand-AmericanExpress","set-brand-AmericanExpress",
  1946. NID_set_brand_AmericanExpress,4,&(lvalues[4401]),0},
  1947. {"set-brand-JCB","set-brand-JCB",NID_set_brand_JCB,4,&(lvalues[4405]),0},
  1948. {"set-brand-Visa","set-brand-Visa",NID_set_brand_Visa,4,
  1949. &(lvalues[4409]),0},
  1950. {"set-brand-MasterCard","set-brand-MasterCard",
  1951. NID_set_brand_MasterCard,4,&(lvalues[4413]),0},
  1952. {"set-brand-Novus","set-brand-Novus",NID_set_brand_Novus,5,
  1953. &(lvalues[4417]),0},
  1954. {"DES-CDMF","des-cdmf",NID_des_cdmf,8,&(lvalues[4422]),0},
  1955. {"rsaOAEPEncryptionSET","rsaOAEPEncryptionSET",
  1956. NID_rsaOAEPEncryptionSET,9,&(lvalues[4430]),0},
  1957. {"ITU-T","itu-t",NID_itu_t,1,&(lvalues[4439]),0},
  1958. {"JOINT-ISO-ITU-T","joint-iso-itu-t",NID_joint_iso_itu_t,1,
  1959. &(lvalues[4440]),0},
  1960. {"international-organizations","International Organizations",
  1961. NID_international_organizations,1,&(lvalues[4441]),0},
  1962. {"msSmartcardLogin","Microsoft Smartcardlogin",NID_ms_smartcard_login,
  1963. 10,&(lvalues[4442]),0},
  1964. {"msUPN","Microsoft Universal Principal Name",NID_ms_upn,10,
  1965. &(lvalues[4452]),0},
  1966. {"AES-128-CFB1","aes-128-cfb1",NID_aes_128_cfb1,0,NULL,0},
  1967. {"AES-192-CFB1","aes-192-cfb1",NID_aes_192_cfb1,0,NULL,0},
  1968. {"AES-256-CFB1","aes-256-cfb1",NID_aes_256_cfb1,0,NULL,0},
  1969. {"AES-128-CFB8","aes-128-cfb8",NID_aes_128_cfb8,0,NULL,0},
  1970. {"AES-192-CFB8","aes-192-cfb8",NID_aes_192_cfb8,0,NULL,0},
  1971. {"AES-256-CFB8","aes-256-cfb8",NID_aes_256_cfb8,0,NULL,0},
  1972. {"DES-CFB1","des-cfb1",NID_des_cfb1,0,NULL,0},
  1973. {"DES-CFB8","des-cfb8",NID_des_cfb8,0,NULL,0},
  1974. {"DES-EDE3-CFB1","des-ede3-cfb1",NID_des_ede3_cfb1,0,NULL,0},
  1975. {"DES-EDE3-CFB8","des-ede3-cfb8",NID_des_ede3_cfb8,0,NULL,0},
  1976. {"street","streetAddress",NID_streetAddress,3,&(lvalues[4462]),0},
  1977. {"postalCode","postalCode",NID_postalCode,3,&(lvalues[4465]),0},
  1978. {"id-ppl","id-ppl",NID_id_ppl,7,&(lvalues[4468]),0},
  1979. {"proxyCertInfo","Proxy Certificate Information",NID_proxyCertInfo,8,
  1980. &(lvalues[4475]),0},
  1981. {"id-ppl-anyLanguage","Any language",NID_id_ppl_anyLanguage,8,
  1982. &(lvalues[4483]),0},
  1983. {"id-ppl-inheritAll","Inherit all",NID_id_ppl_inheritAll,8,
  1984. &(lvalues[4491]),0},
  1985. {"nameConstraints","X509v3 Name Constraints",NID_name_constraints,3,
  1986. &(lvalues[4499]),0},
  1987. {"id-ppl-independent","Independent",NID_Independent,8,&(lvalues[4502]),0},
  1988. {"RSA-SHA256","sha256WithRSAEncryption",NID_sha256WithRSAEncryption,9,
  1989. &(lvalues[4510]),0},
  1990. {"RSA-SHA384","sha384WithRSAEncryption",NID_sha384WithRSAEncryption,9,
  1991. &(lvalues[4519]),0},
  1992. {"RSA-SHA512","sha512WithRSAEncryption",NID_sha512WithRSAEncryption,9,
  1993. &(lvalues[4528]),0},
  1994. {"RSA-SHA224","sha224WithRSAEncryption",NID_sha224WithRSAEncryption,9,
  1995. &(lvalues[4537]),0},
  1996. {"SHA256","sha256",NID_sha256,9,&(lvalues[4546]),0},
  1997. {"SHA384","sha384",NID_sha384,9,&(lvalues[4555]),0},
  1998. {"SHA512","sha512",NID_sha512,9,&(lvalues[4564]),0},
  1999. {"SHA224","sha224",NID_sha224,9,&(lvalues[4573]),0},
  2000. {"identified-organization","identified-organization",
  2001. NID_identified_organization,1,&(lvalues[4582]),0},
  2002. {"certicom-arc","certicom-arc",NID_certicom_arc,3,&(lvalues[4583]),0},
  2003. {"wap","wap",NID_wap,2,&(lvalues[4586]),0},
  2004. {"wap-wsg","wap-wsg",NID_wap_wsg,3,&(lvalues[4588]),0},
  2005. {"id-characteristic-two-basis","id-characteristic-two-basis",
  2006. NID_X9_62_id_characteristic_two_basis,8,&(lvalues[4591]),0},
  2007. {"onBasis","onBasis",NID_X9_62_onBasis,9,&(lvalues[4599]),0},
  2008. {"tpBasis","tpBasis",NID_X9_62_tpBasis,9,&(lvalues[4608]),0},
  2009. {"ppBasis","ppBasis",NID_X9_62_ppBasis,9,&(lvalues[4617]),0},
  2010. {"c2pnb163v1","c2pnb163v1",NID_X9_62_c2pnb163v1,8,&(lvalues[4626]),0},
  2011. {"c2pnb163v2","c2pnb163v2",NID_X9_62_c2pnb163v2,8,&(lvalues[4634]),0},
  2012. {"c2pnb163v3","c2pnb163v3",NID_X9_62_c2pnb163v3,8,&(lvalues[4642]),0},
  2013. {"c2pnb176v1","c2pnb176v1",NID_X9_62_c2pnb176v1,8,&(lvalues[4650]),0},
  2014. {"c2tnb191v1","c2tnb191v1",NID_X9_62_c2tnb191v1,8,&(lvalues[4658]),0},
  2015. {"c2tnb191v2","c2tnb191v2",NID_X9_62_c2tnb191v2,8,&(lvalues[4666]),0},
  2016. {"c2tnb191v3","c2tnb191v3",NID_X9_62_c2tnb191v3,8,&(lvalues[4674]),0},
  2017. {"c2onb191v4","c2onb191v4",NID_X9_62_c2onb191v4,8,&(lvalues[4682]),0},
  2018. {"c2onb191v5","c2onb191v5",NID_X9_62_c2onb191v5,8,&(lvalues[4690]),0},
  2019. {"c2pnb208w1","c2pnb208w1",NID_X9_62_c2pnb208w1,8,&(lvalues[4698]),0},
  2020. {"c2tnb239v1","c2tnb239v1",NID_X9_62_c2tnb239v1,8,&(lvalues[4706]),0},
  2021. {"c2tnb239v2","c2tnb239v2",NID_X9_62_c2tnb239v2,8,&(lvalues[4714]),0},
  2022. {"c2tnb239v3","c2tnb239v3",NID_X9_62_c2tnb239v3,8,&(lvalues[4722]),0},
  2023. {"c2onb239v4","c2onb239v4",NID_X9_62_c2onb239v4,8,&(lvalues[4730]),0},
  2024. {"c2onb239v5","c2onb239v5",NID_X9_62_c2onb239v5,8,&(lvalues[4738]),0},
  2025. {"c2pnb272w1","c2pnb272w1",NID_X9_62_c2pnb272w1,8,&(lvalues[4746]),0},
  2026. {"c2pnb304w1","c2pnb304w1",NID_X9_62_c2pnb304w1,8,&(lvalues[4754]),0},
  2027. {"c2tnb359v1","c2tnb359v1",NID_X9_62_c2tnb359v1,8,&(lvalues[4762]),0},
  2028. {"c2pnb368w1","c2pnb368w1",NID_X9_62_c2pnb368w1,8,&(lvalues[4770]),0},
  2029. {"c2tnb431r1","c2tnb431r1",NID_X9_62_c2tnb431r1,8,&(lvalues[4778]),0},
  2030. {"secp112r1","secp112r1",NID_secp112r1,5,&(lvalues[4786]),0},
  2031. {"secp112r2","secp112r2",NID_secp112r2,5,&(lvalues[4791]),0},
  2032. {"secp128r1","secp128r1",NID_secp128r1,5,&(lvalues[4796]),0},
  2033. {"secp128r2","secp128r2",NID_secp128r2,5,&(lvalues[4801]),0},
  2034. {"secp160k1","secp160k1",NID_secp160k1,5,&(lvalues[4806]),0},
  2035. {"secp160r1","secp160r1",NID_secp160r1,5,&(lvalues[4811]),0},
  2036. {"secp160r2","secp160r2",NID_secp160r2,5,&(lvalues[4816]),0},
  2037. {"secp192k1","secp192k1",NID_secp192k1,5,&(lvalues[4821]),0},
  2038. {"secp224k1","secp224k1",NID_secp224k1,5,&(lvalues[4826]),0},
  2039. {"secp224r1","secp224r1",NID_secp224r1,5,&(lvalues[4831]),0},
  2040. {"secp256k1","secp256k1",NID_secp256k1,5,&(lvalues[4836]),0},
  2041. {"secp384r1","secp384r1",NID_secp384r1,5,&(lvalues[4841]),0},
  2042. {"secp521r1","secp521r1",NID_secp521r1,5,&(lvalues[4846]),0},
  2043. {"sect113r1","sect113r1",NID_sect113r1,5,&(lvalues[4851]),0},
  2044. {"sect113r2","sect113r2",NID_sect113r2,5,&(lvalues[4856]),0},
  2045. {"sect131r1","sect131r1",NID_sect131r1,5,&(lvalues[4861]),0},
  2046. {"sect131r2","sect131r2",NID_sect131r2,5,&(lvalues[4866]),0},
  2047. {"sect163k1","sect163k1",NID_sect163k1,5,&(lvalues[4871]),0},
  2048. {"sect163r1","sect163r1",NID_sect163r1,5,&(lvalues[4876]),0},
  2049. {"sect163r2","sect163r2",NID_sect163r2,5,&(lvalues[4881]),0},
  2050. {"sect193r1","sect193r1",NID_sect193r1,5,&(lvalues[4886]),0},
  2051. {"sect193r2","sect193r2",NID_sect193r2,5,&(lvalues[4891]),0},
  2052. {"sect233k1","sect233k1",NID_sect233k1,5,&(lvalues[4896]),0},
  2053. {"sect233r1","sect233r1",NID_sect233r1,5,&(lvalues[4901]),0},
  2054. {"sect239k1","sect239k1",NID_sect239k1,5,&(lvalues[4906]),0},
  2055. {"sect283k1","sect283k1",NID_sect283k1,5,&(lvalues[4911]),0},
  2056. {"sect283r1","sect283r1",NID_sect283r1,5,&(lvalues[4916]),0},
  2057. {"sect409k1","sect409k1",NID_sect409k1,5,&(lvalues[4921]),0},
  2058. {"sect409r1","sect409r1",NID_sect409r1,5,&(lvalues[4926]),0},
  2059. {"sect571k1","sect571k1",NID_sect571k1,5,&(lvalues[4931]),0},
  2060. {"sect571r1","sect571r1",NID_sect571r1,5,&(lvalues[4936]),0},
  2061. {"wap-wsg-idm-ecid-wtls1","wap-wsg-idm-ecid-wtls1",
  2062. NID_wap_wsg_idm_ecid_wtls1,5,&(lvalues[4941]),0},
  2063. {"wap-wsg-idm-ecid-wtls3","wap-wsg-idm-ecid-wtls3",
  2064. NID_wap_wsg_idm_ecid_wtls3,5,&(lvalues[4946]),0},
  2065. {"wap-wsg-idm-ecid-wtls4","wap-wsg-idm-ecid-wtls4",
  2066. NID_wap_wsg_idm_ecid_wtls4,5,&(lvalues[4951]),0},
  2067. {"wap-wsg-idm-ecid-wtls5","wap-wsg-idm-ecid-wtls5",
  2068. NID_wap_wsg_idm_ecid_wtls5,5,&(lvalues[4956]),0},
  2069. {"wap-wsg-idm-ecid-wtls6","wap-wsg-idm-ecid-wtls6",
  2070. NID_wap_wsg_idm_ecid_wtls6,5,&(lvalues[4961]),0},
  2071. {"wap-wsg-idm-ecid-wtls7","wap-wsg-idm-ecid-wtls7",
  2072. NID_wap_wsg_idm_ecid_wtls7,5,&(lvalues[4966]),0},
  2073. {"wap-wsg-idm-ecid-wtls8","wap-wsg-idm-ecid-wtls8",
  2074. NID_wap_wsg_idm_ecid_wtls8,5,&(lvalues[4971]),0},
  2075. {"wap-wsg-idm-ecid-wtls9","wap-wsg-idm-ecid-wtls9",
  2076. NID_wap_wsg_idm_ecid_wtls9,5,&(lvalues[4976]),0},
  2077. {"wap-wsg-idm-ecid-wtls10","wap-wsg-idm-ecid-wtls10",
  2078. NID_wap_wsg_idm_ecid_wtls10,5,&(lvalues[4981]),0},
  2079. {"wap-wsg-idm-ecid-wtls11","wap-wsg-idm-ecid-wtls11",
  2080. NID_wap_wsg_idm_ecid_wtls11,5,&(lvalues[4986]),0},
  2081. {"wap-wsg-idm-ecid-wtls12","wap-wsg-idm-ecid-wtls12",
  2082. NID_wap_wsg_idm_ecid_wtls12,5,&(lvalues[4991]),0},
  2083. {"anyPolicy","X509v3 Any Policy",NID_any_policy,4,&(lvalues[4996]),0},
  2084. {"policyMappings","X509v3 Policy Mappings",NID_policy_mappings,3,
  2085. &(lvalues[5000]),0},
  2086. {"inhibitAnyPolicy","X509v3 Inhibit Any Policy",
  2087. NID_inhibit_any_policy,3,&(lvalues[5003]),0},
  2088. {"Oakley-EC2N-3","ipsec3",NID_ipsec3,0,NULL,0},
  2089. {"Oakley-EC2N-4","ipsec4",NID_ipsec4,0,NULL,0},
  2090. {"CAMELLIA-128-CBC","camellia-128-cbc",NID_camellia_128_cbc,11,
  2091. &(lvalues[5006]),0},
  2092. {"CAMELLIA-192-CBC","camellia-192-cbc",NID_camellia_192_cbc,11,
  2093. &(lvalues[5017]),0},
  2094. {"CAMELLIA-256-CBC","camellia-256-cbc",NID_camellia_256_cbc,11,
  2095. &(lvalues[5028]),0},
  2096. {"CAMELLIA-128-ECB","camellia-128-ecb",NID_camellia_128_ecb,8,
  2097. &(lvalues[5039]),0},
  2098. {"CAMELLIA-192-ECB","camellia-192-ecb",NID_camellia_192_ecb,8,
  2099. &(lvalues[5047]),0},
  2100. {"CAMELLIA-256-ECB","camellia-256-ecb",NID_camellia_256_ecb,8,
  2101. &(lvalues[5055]),0},
  2102. {"CAMELLIA-128-CFB","camellia-128-cfb",NID_camellia_128_cfb128,8,
  2103. &(lvalues[5063]),0},
  2104. {"CAMELLIA-192-CFB","camellia-192-cfb",NID_camellia_192_cfb128,8,
  2105. &(lvalues[5071]),0},
  2106. {"CAMELLIA-256-CFB","camellia-256-cfb",NID_camellia_256_cfb128,8,
  2107. &(lvalues[5079]),0},
  2108. {"CAMELLIA-128-CFB1","camellia-128-cfb1",NID_camellia_128_cfb1,0,NULL,0},
  2109. {"CAMELLIA-192-CFB1","camellia-192-cfb1",NID_camellia_192_cfb1,0,NULL,0},
  2110. {"CAMELLIA-256-CFB1","camellia-256-cfb1",NID_camellia_256_cfb1,0,NULL,0},
  2111. {"CAMELLIA-128-CFB8","camellia-128-cfb8",NID_camellia_128_cfb8,0,NULL,0},
  2112. {"CAMELLIA-192-CFB8","camellia-192-cfb8",NID_camellia_192_cfb8,0,NULL,0},
  2113. {"CAMELLIA-256-CFB8","camellia-256-cfb8",NID_camellia_256_cfb8,0,NULL,0},
  2114. {"CAMELLIA-128-OFB","camellia-128-ofb",NID_camellia_128_ofb128,8,
  2115. &(lvalues[5087]),0},
  2116. {"CAMELLIA-192-OFB","camellia-192-ofb",NID_camellia_192_ofb128,8,
  2117. &(lvalues[5095]),0},
  2118. {"CAMELLIA-256-OFB","camellia-256-ofb",NID_camellia_256_ofb128,8,
  2119. &(lvalues[5103]),0},
  2120. {"subjectDirectoryAttributes","X509v3 Subject Directory Attributes",
  2121. NID_subject_directory_attributes,3,&(lvalues[5111]),0},
  2122. {"issuingDistributionPoint","X509v3 Issuing Distrubution Point",
  2123. NID_issuing_distribution_point,3,&(lvalues[5114]),0},
  2124. {"certificateIssuer","X509v3 Certificate Issuer",
  2125. NID_certificate_issuer,3,&(lvalues[5117]),0},
  2126. {NULL,NULL,NID_undef,0,NULL,0},
  2127. {"KISA","kisa",NID_kisa,6,&(lvalues[5120]),0},
  2128. {NULL,NULL,NID_undef,0,NULL,0},
  2129. {NULL,NULL,NID_undef,0,NULL,0},
  2130. {"SEED-ECB","seed-ecb",NID_seed_ecb,8,&(lvalues[5126]),0},
  2131. {"SEED-CBC","seed-cbc",NID_seed_cbc,8,&(lvalues[5134]),0},
  2132. {"SEED-OFB","seed-ofb",NID_seed_ofb128,8,&(lvalues[5142]),0},
  2133. {"SEED-CFB","seed-cfb",NID_seed_cfb128,8,&(lvalues[5150]),0},
  2134. {"HMAC-MD5","hmac-md5",NID_hmac_md5,8,&(lvalues[5158]),0},
  2135. {"HMAC-SHA1","hmac-sha1",NID_hmac_sha1,8,&(lvalues[5166]),0},
  2136. {"id-PasswordBasedMAC","password based MAC",NID_id_PasswordBasedMAC,9,
  2137. &(lvalues[5174]),0},
  2138. {"id-DHBasedMac","Diffie-Hellman based MAC",NID_id_DHBasedMac,9,
  2139. &(lvalues[5183]),0},
  2140. {"id-it-suppLangTags","id-it-suppLangTags",NID_id_it_suppLangTags,8,
  2141. &(lvalues[5192]),0},
  2142. {"caRepository","CA Repository",NID_caRepository,8,&(lvalues[5200]),0},
  2143. {"id-smime-ct-compressedData","id-smime-ct-compressedData",
  2144. NID_id_smime_ct_compressedData,11,&(lvalues[5208]),0},
  2145. {"id-ct-asciiTextWithCRLF","id-ct-asciiTextWithCRLF",
  2146. NID_id_ct_asciiTextWithCRLF,11,&(lvalues[5219]),0},
  2147. {"id-aes128-wrap","id-aes128-wrap",NID_id_aes128_wrap,9,
  2148. &(lvalues[5230]),0},
  2149. {"id-aes192-wrap","id-aes192-wrap",NID_id_aes192_wrap,9,
  2150. &(lvalues[5239]),0},
  2151. {"id-aes256-wrap","id-aes256-wrap",NID_id_aes256_wrap,9,
  2152. &(lvalues[5248]),0},
  2153. {"ecdsa-with-Recommended","ecdsa-with-Recommended",
  2154. NID_ecdsa_with_Recommended,7,&(lvalues[5257]),0},
  2155. {"ecdsa-with-Specified","ecdsa-with-Specified",
  2156. NID_ecdsa_with_Specified,7,&(lvalues[5264]),0},
  2157. {"ecdsa-with-SHA224","ecdsa-with-SHA224",NID_ecdsa_with_SHA224,8,
  2158. &(lvalues[5271]),0},
  2159. {"ecdsa-with-SHA256","ecdsa-with-SHA256",NID_ecdsa_with_SHA256,8,
  2160. &(lvalues[5279]),0},
  2161. {"ecdsa-with-SHA384","ecdsa-with-SHA384",NID_ecdsa_with_SHA384,8,
  2162. &(lvalues[5287]),0},
  2163. {"ecdsa-with-SHA512","ecdsa-with-SHA512",NID_ecdsa_with_SHA512,8,
  2164. &(lvalues[5295]),0},
  2165. {"hmacWithMD5","hmacWithMD5",NID_hmacWithMD5,8,&(lvalues[5303]),0},
  2166. {"hmacWithSHA224","hmacWithSHA224",NID_hmacWithSHA224,8,
  2167. &(lvalues[5311]),0},
  2168. {"hmacWithSHA256","hmacWithSHA256",NID_hmacWithSHA256,8,
  2169. &(lvalues[5319]),0},
  2170. {"hmacWithSHA384","hmacWithSHA384",NID_hmacWithSHA384,8,
  2171. &(lvalues[5327]),0},
  2172. {"hmacWithSHA512","hmacWithSHA512",NID_hmacWithSHA512,8,
  2173. &(lvalues[5335]),0},
  2174. {"dsa_with_SHA224","dsa_with_SHA224",NID_dsa_with_SHA224,9,
  2175. &(lvalues[5343]),0},
  2176. {"dsa_with_SHA256","dsa_with_SHA256",NID_dsa_with_SHA256,9,
  2177. &(lvalues[5352]),0},
  2178. {"whirlpool","whirlpool",NID_whirlpool,6,&(lvalues[5361]),0},
  2179. {"cryptopro","cryptopro",NID_cryptopro,5,&(lvalues[5367]),0},
  2180. {"cryptocom","cryptocom",NID_cryptocom,5,&(lvalues[5372]),0},
  2181. {"id-GostR3411-94-with-GostR3410-2001",
  2182. "GOST R 34.11-94 with GOST R 34.10-2001",
  2183. NID_id_GostR3411_94_with_GostR3410_2001,6,&(lvalues[5377]),0},
  2184. {"id-GostR3411-94-with-GostR3410-94",
  2185. "GOST R 34.11-94 with GOST R 34.10-94",
  2186. NID_id_GostR3411_94_with_GostR3410_94,6,&(lvalues[5383]),0},
  2187. {"md_gost94","GOST R 34.11-94",NID_id_GostR3411_94,6,&(lvalues[5389]),0},
  2188. {"id-HMACGostR3411-94","HMAC GOST 34.11-94",NID_id_HMACGostR3411_94,6,
  2189. &(lvalues[5395]),0},
  2190. {"gost2001","GOST R 34.10-2001",NID_id_GostR3410_2001,6,
  2191. &(lvalues[5401]),0},
  2192. {"gost94","GOST R 34.10-94",NID_id_GostR3410_94,6,&(lvalues[5407]),0},
  2193. {"gost89","GOST 28147-89",NID_id_Gost28147_89,6,&(lvalues[5413]),0},
  2194. {"gost89-cnt","gost89-cnt",NID_gost89_cnt,0,NULL,0},
  2195. {"gost-mac","GOST 28147-89 MAC",NID_id_Gost28147_89_MAC,6,
  2196. &(lvalues[5419]),0},
  2197. {"prf-gostr3411-94","GOST R 34.11-94 PRF",NID_id_GostR3411_94_prf,6,
  2198. &(lvalues[5425]),0},
  2199. {"id-GostR3410-2001DH","GOST R 34.10-2001 DH",NID_id_GostR3410_2001DH,
  2200. 6,&(lvalues[5431]),0},
  2201. {"id-GostR3410-94DH","GOST R 34.10-94 DH",NID_id_GostR3410_94DH,6,
  2202. &(lvalues[5437]),0},
  2203. {"id-Gost28147-89-CryptoPro-KeyMeshing",
  2204. "id-Gost28147-89-CryptoPro-KeyMeshing",
  2205. NID_id_Gost28147_89_CryptoPro_KeyMeshing,7,&(lvalues[5443]),0},
  2206. {"id-Gost28147-89-None-KeyMeshing","id-Gost28147-89-None-KeyMeshing",
  2207. NID_id_Gost28147_89_None_KeyMeshing,7,&(lvalues[5450]),0},
  2208. {"id-GostR3411-94-TestParamSet","id-GostR3411-94-TestParamSet",
  2209. NID_id_GostR3411_94_TestParamSet,7,&(lvalues[5457]),0},
  2210. {"id-GostR3411-94-CryptoProParamSet",
  2211. "id-GostR3411-94-CryptoProParamSet",
  2212. NID_id_GostR3411_94_CryptoProParamSet,7,&(lvalues[5464]),0},
  2213. {"id-Gost28147-89-TestParamSet","id-Gost28147-89-TestParamSet",
  2214. NID_id_Gost28147_89_TestParamSet,7,&(lvalues[5471]),0},
  2215. {"id-Gost28147-89-CryptoPro-A-ParamSet",
  2216. "id-Gost28147-89-CryptoPro-A-ParamSet",
  2217. NID_id_Gost28147_89_CryptoPro_A_ParamSet,7,&(lvalues[5478]),0},
  2218. {"id-Gost28147-89-CryptoPro-B-ParamSet",
  2219. "id-Gost28147-89-CryptoPro-B-ParamSet",
  2220. NID_id_Gost28147_89_CryptoPro_B_ParamSet,7,&(lvalues[5485]),0},
  2221. {"id-Gost28147-89-CryptoPro-C-ParamSet",
  2222. "id-Gost28147-89-CryptoPro-C-ParamSet",
  2223. NID_id_Gost28147_89_CryptoPro_C_ParamSet,7,&(lvalues[5492]),0},
  2224. {"id-Gost28147-89-CryptoPro-D-ParamSet",
  2225. "id-Gost28147-89-CryptoPro-D-ParamSet",
  2226. NID_id_Gost28147_89_CryptoPro_D_ParamSet,7,&(lvalues[5499]),0},
  2227. {"id-Gost28147-89-CryptoPro-Oscar-1-1-ParamSet",
  2228. "id-Gost28147-89-CryptoPro-Oscar-1-1-ParamSet",
  2229. NID_id_Gost28147_89_CryptoPro_Oscar_1_1_ParamSet,7,&(lvalues[5506]),
  2230. 0},
  2231. {"id-Gost28147-89-CryptoPro-Oscar-1-0-ParamSet",
  2232. "id-Gost28147-89-CryptoPro-Oscar-1-0-ParamSet",
  2233. NID_id_Gost28147_89_CryptoPro_Oscar_1_0_ParamSet,7,&(lvalues[5513]),
  2234. 0},
  2235. {"id-Gost28147-89-CryptoPro-RIC-1-ParamSet",
  2236. "id-Gost28147-89-CryptoPro-RIC-1-ParamSet",
  2237. NID_id_Gost28147_89_CryptoPro_RIC_1_ParamSet,7,&(lvalues[5520]),0},
  2238. {"id-GostR3410-94-TestParamSet","id-GostR3410-94-TestParamSet",
  2239. NID_id_GostR3410_94_TestParamSet,7,&(lvalues[5527]),0},
  2240. {"id-GostR3410-94-CryptoPro-A-ParamSet",
  2241. "id-GostR3410-94-CryptoPro-A-ParamSet",
  2242. NID_id_GostR3410_94_CryptoPro_A_ParamSet,7,&(lvalues[5534]),0},
  2243. {"id-GostR3410-94-CryptoPro-B-ParamSet",
  2244. "id-GostR3410-94-CryptoPro-B-ParamSet",
  2245. NID_id_GostR3410_94_CryptoPro_B_ParamSet,7,&(lvalues[5541]),0},
  2246. {"id-GostR3410-94-CryptoPro-C-ParamSet",
  2247. "id-GostR3410-94-CryptoPro-C-ParamSet",
  2248. NID_id_GostR3410_94_CryptoPro_C_ParamSet,7,&(lvalues[5548]),0},
  2249. {"id-GostR3410-94-CryptoPro-D-ParamSet",
  2250. "id-GostR3410-94-CryptoPro-D-ParamSet",
  2251. NID_id_GostR3410_94_CryptoPro_D_ParamSet,7,&(lvalues[5555]),0},
  2252. {"id-GostR3410-94-CryptoPro-XchA-ParamSet",
  2253. "id-GostR3410-94-CryptoPro-XchA-ParamSet",
  2254. NID_id_GostR3410_94_CryptoPro_XchA_ParamSet,7,&(lvalues[5562]),0},
  2255. {"id-GostR3410-94-CryptoPro-XchB-ParamSet",
  2256. "id-GostR3410-94-CryptoPro-XchB-ParamSet",
  2257. NID_id_GostR3410_94_CryptoPro_XchB_ParamSet,7,&(lvalues[5569]),0},
  2258. {"id-GostR3410-94-CryptoPro-XchC-ParamSet",
  2259. "id-GostR3410-94-CryptoPro-XchC-ParamSet",
  2260. NID_id_GostR3410_94_CryptoPro_XchC_ParamSet,7,&(lvalues[5576]),0},
  2261. {"id-GostR3410-2001-TestParamSet","id-GostR3410-2001-TestParamSet",
  2262. NID_id_GostR3410_2001_TestParamSet,7,&(lvalues[5583]),0},
  2263. {"id-GostR3410-2001-CryptoPro-A-ParamSet",
  2264. "id-GostR3410-2001-CryptoPro-A-ParamSet",
  2265. NID_id_GostR3410_2001_CryptoPro_A_ParamSet,7,&(lvalues[5590]),0},
  2266. {"id-GostR3410-2001-CryptoPro-B-ParamSet",
  2267. "id-GostR3410-2001-CryptoPro-B-ParamSet",
  2268. NID_id_GostR3410_2001_CryptoPro_B_ParamSet,7,&(lvalues[5597]),0},
  2269. {"id-GostR3410-2001-CryptoPro-C-ParamSet",
  2270. "id-GostR3410-2001-CryptoPro-C-ParamSet",
  2271. NID_id_GostR3410_2001_CryptoPro_C_ParamSet,7,&(lvalues[5604]),0},
  2272. {"id-GostR3410-2001-CryptoPro-XchA-ParamSet",
  2273. "id-GostR3410-2001-CryptoPro-XchA-ParamSet",
  2274. NID_id_GostR3410_2001_CryptoPro_XchA_ParamSet,7,&(lvalues[5611]),0},
  2275. {"id-GostR3410-2001-CryptoPro-XchB-ParamSet",
  2276. "id-GostR3410-2001-CryptoPro-XchB-ParamSet",
  2277. NID_id_GostR3410_2001_CryptoPro_XchB_ParamSet,7,&(lvalues[5618]),0},
  2278. {"id-GostR3410-94-a","id-GostR3410-94-a",NID_id_GostR3410_94_a,7,
  2279. &(lvalues[5625]),0},
  2280. {"id-GostR3410-94-aBis","id-GostR3410-94-aBis",
  2281. NID_id_GostR3410_94_aBis,7,&(lvalues[5632]),0},
  2282. {"id-GostR3410-94-b","id-GostR3410-94-b",NID_id_GostR3410_94_b,7,
  2283. &(lvalues[5639]),0},
  2284. {"id-GostR3410-94-bBis","id-GostR3410-94-bBis",
  2285. NID_id_GostR3410_94_bBis,7,&(lvalues[5646]),0},
  2286. {"id-Gost28147-89-cc","GOST 28147-89 Cryptocom ParamSet",
  2287. NID_id_Gost28147_89_cc,8,&(lvalues[5653]),0},
  2288. {"gost94cc","GOST 34.10-94 Cryptocom",NID_id_GostR3410_94_cc,8,
  2289. &(lvalues[5661]),0},
  2290. {"gost2001cc","GOST 34.10-2001 Cryptocom",NID_id_GostR3410_2001_cc,8,
  2291. &(lvalues[5669]),0},
  2292. {"id-GostR3411-94-with-GostR3410-94-cc",
  2293. "GOST R 34.11-94 with GOST R 34.10-94 Cryptocom",
  2294. NID_id_GostR3411_94_with_GostR3410_94_cc,8,&(lvalues[5677]),0},
  2295. {"id-GostR3411-94-with-GostR3410-2001-cc",
  2296. "GOST R 34.11-94 with GOST R 34.10-2001 Cryptocom",
  2297. NID_id_GostR3411_94_with_GostR3410_2001_cc,8,&(lvalues[5685]),0},
  2298. {"id-GostR3410-2001-ParamSet-cc",
  2299. "GOST R 3410-2001 Parameter Set Cryptocom",
  2300. NID_id_GostR3410_2001_ParamSet_cc,8,&(lvalues[5693]),0},
  2301. {"HMAC","hmac",NID_hmac,0,NULL,0},
  2302. {"LocalKeySet","Microsoft Local Key set",NID_LocalKeySet,9,
  2303. &(lvalues[5701]),0},
  2304. {"freshestCRL","X509v3 Freshest CRL",NID_freshest_crl,3,
  2305. &(lvalues[5710]),0},
  2306. {"id-on-permanentIdentifier","Permanent Identifier",
  2307. NID_id_on_permanentIdentifier,8,&(lvalues[5713]),0},
  2308. {"searchGuide","searchGuide",NID_searchGuide,3,&(lvalues[5721]),0},
  2309. {"businessCategory","businessCategory",NID_businessCategory,3,
  2310. &(lvalues[5724]),0},
  2311. {"postalAddress","postalAddress",NID_postalAddress,3,&(lvalues[5727]),0},
  2312. {"postOfficeBox","postOfficeBox",NID_postOfficeBox,3,&(lvalues[5730]),0},
  2313. {"physicalDeliveryOfficeName","physicalDeliveryOfficeName",
  2314. NID_physicalDeliveryOfficeName,3,&(lvalues[5733]),0},
  2315. {"telephoneNumber","telephoneNumber",NID_telephoneNumber,3,
  2316. &(lvalues[5736]),0},
  2317. {"telexNumber","telexNumber",NID_telexNumber,3,&(lvalues[5739]),0},
  2318. {"teletexTerminalIdentifier","teletexTerminalIdentifier",
  2319. NID_teletexTerminalIdentifier,3,&(lvalues[5742]),0},
  2320. {"facsimileTelephoneNumber","facsimileTelephoneNumber",
  2321. NID_facsimileTelephoneNumber,3,&(lvalues[5745]),0},
  2322. {"x121Address","x121Address",NID_x121Address,3,&(lvalues[5748]),0},
  2323. {"internationaliSDNNumber","internationaliSDNNumber",
  2324. NID_internationaliSDNNumber,3,&(lvalues[5751]),0},
  2325. {"registeredAddress","registeredAddress",NID_registeredAddress,3,
  2326. &(lvalues[5754]),0},
  2327. {"destinationIndicator","destinationIndicator",
  2328. NID_destinationIndicator,3,&(lvalues[5757]),0},
  2329. {"preferredDeliveryMethod","preferredDeliveryMethod",
  2330. NID_preferredDeliveryMethod,3,&(lvalues[5760]),0},
  2331. {"presentationAddress","presentationAddress",NID_presentationAddress,
  2332. 3,&(lvalues[5763]),0},
  2333. {"supportedApplicationContext","supportedApplicationContext",
  2334. NID_supportedApplicationContext,3,&(lvalues[5766]),0},
  2335. {"member","member",NID_member,3,&(lvalues[5769]),0},
  2336. {"owner","owner",NID_owner,3,&(lvalues[5772]),0},
  2337. {"roleOccupant","roleOccupant",NID_roleOccupant,3,&(lvalues[5775]),0},
  2338. {"seeAlso","seeAlso",NID_seeAlso,3,&(lvalues[5778]),0},
  2339. {"userPassword","userPassword",NID_userPassword,3,&(lvalues[5781]),0},
  2340. {"userCertificate","userCertificate",NID_userCertificate,3,
  2341. &(lvalues[5784]),0},
  2342. {"cACertificate","cACertificate",NID_cACertificate,3,&(lvalues[5787]),0},
  2343. {"authorityRevocationList","authorityRevocationList",
  2344. NID_authorityRevocationList,3,&(lvalues[5790]),0},
  2345. {"certificateRevocationList","certificateRevocationList",
  2346. NID_certificateRevocationList,3,&(lvalues[5793]),0},
  2347. {"crossCertificatePair","crossCertificatePair",
  2348. NID_crossCertificatePair,3,&(lvalues[5796]),0},
  2349. {"enhancedSearchGuide","enhancedSearchGuide",NID_enhancedSearchGuide,
  2350. 3,&(lvalues[5799]),0},
  2351. {"protocolInformation","protocolInformation",NID_protocolInformation,
  2352. 3,&(lvalues[5802]),0},
  2353. {"distinguishedName","distinguishedName",NID_distinguishedName,3,
  2354. &(lvalues[5805]),0},
  2355. {"uniqueMember","uniqueMember",NID_uniqueMember,3,&(lvalues[5808]),0},
  2356. {"houseIdentifier","houseIdentifier",NID_houseIdentifier,3,
  2357. &(lvalues[5811]),0},
  2358. {"supportedAlgorithms","supportedAlgorithms",NID_supportedAlgorithms,
  2359. 3,&(lvalues[5814]),0},
  2360. {"deltaRevocationList","deltaRevocationList",NID_deltaRevocationList,
  2361. 3,&(lvalues[5817]),0},
  2362. {"dmdName","dmdName",NID_dmdName,3,&(lvalues[5820]),0},
  2363. {"id-alg-PWRI-KEK","id-alg-PWRI-KEK",NID_id_alg_PWRI_KEK,11,
  2364. &(lvalues[5823]),0},
  2365. {"CMAC","cmac",NID_cmac,0,NULL,0},
  2366. {"id-aes128-GCM","aes-128-gcm",NID_aes_128_gcm,9,&(lvalues[5834]),0},
  2367. {"id-aes128-CCM","aes-128-ccm",NID_aes_128_ccm,9,&(lvalues[5843]),0},
  2368. {"id-aes128-wrap-pad","id-aes128-wrap-pad",NID_id_aes128_wrap_pad,9,
  2369. &(lvalues[5852]),0},
  2370. {"id-aes192-GCM","aes-192-gcm",NID_aes_192_gcm,9,&(lvalues[5861]),0},
  2371. {"id-aes192-CCM","aes-192-ccm",NID_aes_192_ccm,9,&(lvalues[5870]),0},
  2372. {"id-aes192-wrap-pad","id-aes192-wrap-pad",NID_id_aes192_wrap_pad,9,
  2373. &(lvalues[5879]),0},
  2374. {"id-aes256-GCM","aes-256-gcm",NID_aes_256_gcm,9,&(lvalues[5888]),0},
  2375. {"id-aes256-CCM","aes-256-ccm",NID_aes_256_ccm,9,&(lvalues[5897]),0},
  2376. {"id-aes256-wrap-pad","id-aes256-wrap-pad",NID_id_aes256_wrap_pad,9,
  2377. &(lvalues[5906]),0},
  2378. {"AES-128-CTR","aes-128-ctr",NID_aes_128_ctr,0,NULL,0},
  2379. {"AES-192-CTR","aes-192-ctr",NID_aes_192_ctr,0,NULL,0},
  2380. {"AES-256-CTR","aes-256-ctr",NID_aes_256_ctr,0,NULL,0},
  2381. {"id-camellia128-wrap","id-camellia128-wrap",NID_id_camellia128_wrap,
  2382. 11,&(lvalues[5915]),0},
  2383. {"id-camellia192-wrap","id-camellia192-wrap",NID_id_camellia192_wrap,
  2384. 11,&(lvalues[5926]),0},
  2385. {"id-camellia256-wrap","id-camellia256-wrap",NID_id_camellia256_wrap,
  2386. 11,&(lvalues[5937]),0},
  2387. {"anyExtendedKeyUsage","Any Extended Key Usage",
  2388. NID_anyExtendedKeyUsage,4,&(lvalues[5948]),0},
  2389. {"MGF1","mgf1",NID_mgf1,9,&(lvalues[5952]),0},
  2390. {"RSASSA-PSS","rsassaPss",NID_rsassaPss,9,&(lvalues[5961]),0},
  2391. {"AES-128-XTS","aes-128-xts",NID_aes_128_xts,0,NULL,0},
  2392. {"AES-256-XTS","aes-256-xts",NID_aes_256_xts,0,NULL,0},
  2393. {"RC4-HMAC-MD5","rc4-hmac-md5",NID_rc4_hmac_md5,0,NULL,0},
  2394. {"AES-128-CBC-HMAC-SHA1","aes-128-cbc-hmac-sha1",
  2395. NID_aes_128_cbc_hmac_sha1,0,NULL,0},
  2396. {"AES-192-CBC-HMAC-SHA1","aes-192-cbc-hmac-sha1",
  2397. NID_aes_192_cbc_hmac_sha1,0,NULL,0},
  2398. {"AES-256-CBC-HMAC-SHA1","aes-256-cbc-hmac-sha1",
  2399. NID_aes_256_cbc_hmac_sha1,0,NULL,0},
  2400. };
  2401. static const unsigned int sn_objs[NUM_SN]={
  2402. 364, /* "AD_DVCS" */
  2403. 419, /* "AES-128-CBC" */
  2404. 916, /* "AES-128-CBC-HMAC-SHA1" */
  2405. 421, /* "AES-128-CFB" */
  2406. 650, /* "AES-128-CFB1" */
  2407. 653, /* "AES-128-CFB8" */
  2408. 904, /* "AES-128-CTR" */
  2409. 418, /* "AES-128-ECB" */
  2410. 420, /* "AES-128-OFB" */
  2411. 913, /* "AES-128-XTS" */
  2412. 423, /* "AES-192-CBC" */
  2413. 917, /* "AES-192-CBC-HMAC-SHA1" */
  2414. 425, /* "AES-192-CFB" */
  2415. 651, /* "AES-192-CFB1" */
  2416. 654, /* "AES-192-CFB8" */
  2417. 905, /* "AES-192-CTR" */
  2418. 422, /* "AES-192-ECB" */
  2419. 424, /* "AES-192-OFB" */
  2420. 427, /* "AES-256-CBC" */
  2421. 918, /* "AES-256-CBC-HMAC-SHA1" */
  2422. 429, /* "AES-256-CFB" */
  2423. 652, /* "AES-256-CFB1" */
  2424. 655, /* "AES-256-CFB8" */
  2425. 906, /* "AES-256-CTR" */
  2426. 426, /* "AES-256-ECB" */
  2427. 428, /* "AES-256-OFB" */
  2428. 914, /* "AES-256-XTS" */
  2429. 91, /* "BF-CBC" */
  2430. 93, /* "BF-CFB" */
  2431. 92, /* "BF-ECB" */
  2432. 94, /* "BF-OFB" */
  2433. 14, /* "C" */
  2434. 751, /* "CAMELLIA-128-CBC" */
  2435. 757, /* "CAMELLIA-128-CFB" */
  2436. 760, /* "CAMELLIA-128-CFB1" */
  2437. 763, /* "CAMELLIA-128-CFB8" */
  2438. 754, /* "CAMELLIA-128-ECB" */
  2439. 766, /* "CAMELLIA-128-OFB" */
  2440. 752, /* "CAMELLIA-192-CBC" */
  2441. 758, /* "CAMELLIA-192-CFB" */
  2442. 761, /* "CAMELLIA-192-CFB1" */
  2443. 764, /* "CAMELLIA-192-CFB8" */
  2444. 755, /* "CAMELLIA-192-ECB" */
  2445. 767, /* "CAMELLIA-192-OFB" */
  2446. 753, /* "CAMELLIA-256-CBC" */
  2447. 759, /* "CAMELLIA-256-CFB" */
  2448. 762, /* "CAMELLIA-256-CFB1" */
  2449. 765, /* "CAMELLIA-256-CFB8" */
  2450. 756, /* "CAMELLIA-256-ECB" */
  2451. 768, /* "CAMELLIA-256-OFB" */
  2452. 108, /* "CAST5-CBC" */
  2453. 110, /* "CAST5-CFB" */
  2454. 109, /* "CAST5-ECB" */
  2455. 111, /* "CAST5-OFB" */
  2456. 894, /* "CMAC" */
  2457. 13, /* "CN" */
  2458. 141, /* "CRLReason" */
  2459. 417, /* "CSPName" */
  2460. 367, /* "CrlID" */
  2461. 391, /* "DC" */
  2462. 31, /* "DES-CBC" */
  2463. 643, /* "DES-CDMF" */
  2464. 30, /* "DES-CFB" */
  2465. 656, /* "DES-CFB1" */
  2466. 657, /* "DES-CFB8" */
  2467. 29, /* "DES-ECB" */
  2468. 32, /* "DES-EDE" */
  2469. 43, /* "DES-EDE-CBC" */
  2470. 60, /* "DES-EDE-CFB" */
  2471. 62, /* "DES-EDE-OFB" */
  2472. 33, /* "DES-EDE3" */
  2473. 44, /* "DES-EDE3-CBC" */
  2474. 61, /* "DES-EDE3-CFB" */
  2475. 658, /* "DES-EDE3-CFB1" */
  2476. 659, /* "DES-EDE3-CFB8" */
  2477. 63, /* "DES-EDE3-OFB" */
  2478. 45, /* "DES-OFB" */
  2479. 80, /* "DESX-CBC" */
  2480. 380, /* "DOD" */
  2481. 116, /* "DSA" */
  2482. 66, /* "DSA-SHA" */
  2483. 113, /* "DSA-SHA1" */
  2484. 70, /* "DSA-SHA1-old" */
  2485. 67, /* "DSA-old" */
  2486. 297, /* "DVCS" */
  2487. 99, /* "GN" */
  2488. 855, /* "HMAC" */
  2489. 780, /* "HMAC-MD5" */
  2490. 781, /* "HMAC-SHA1" */
  2491. 381, /* "IANA" */
  2492. 34, /* "IDEA-CBC" */
  2493. 35, /* "IDEA-CFB" */
  2494. 36, /* "IDEA-ECB" */
  2495. 46, /* "IDEA-OFB" */
  2496. 181, /* "ISO" */
  2497. 183, /* "ISO-US" */
  2498. 645, /* "ITU-T" */
  2499. 646, /* "JOINT-ISO-ITU-T" */
  2500. 773, /* "KISA" */
  2501. 15, /* "L" */
  2502. 856, /* "LocalKeySet" */
  2503. 3, /* "MD2" */
  2504. 257, /* "MD4" */
  2505. 4, /* "MD5" */
  2506. 114, /* "MD5-SHA1" */
  2507. 95, /* "MDC2" */
  2508. 911, /* "MGF1" */
  2509. 388, /* "Mail" */
  2510. 393, /* "NULL" */
  2511. 404, /* "NULL" */
  2512. 57, /* "Netscape" */
  2513. 366, /* "Nonce" */
  2514. 17, /* "O" */
  2515. 178, /* "OCSP" */
  2516. 180, /* "OCSPSigning" */
  2517. 379, /* "ORG" */
  2518. 18, /* "OU" */
  2519. 749, /* "Oakley-EC2N-3" */
  2520. 750, /* "Oakley-EC2N-4" */
  2521. 9, /* "PBE-MD2-DES" */
  2522. 168, /* "PBE-MD2-RC2-64" */
  2523. 10, /* "PBE-MD5-DES" */
  2524. 169, /* "PBE-MD5-RC2-64" */
  2525. 147, /* "PBE-SHA1-2DES" */
  2526. 146, /* "PBE-SHA1-3DES" */
  2527. 170, /* "PBE-SHA1-DES" */
  2528. 148, /* "PBE-SHA1-RC2-128" */
  2529. 149, /* "PBE-SHA1-RC2-40" */
  2530. 68, /* "PBE-SHA1-RC2-64" */
  2531. 144, /* "PBE-SHA1-RC4-128" */
  2532. 145, /* "PBE-SHA1-RC4-40" */
  2533. 161, /* "PBES2" */
  2534. 69, /* "PBKDF2" */
  2535. 162, /* "PBMAC1" */
  2536. 127, /* "PKIX" */
  2537. 98, /* "RC2-40-CBC" */
  2538. 166, /* "RC2-64-CBC" */
  2539. 37, /* "RC2-CBC" */
  2540. 39, /* "RC2-CFB" */
  2541. 38, /* "RC2-ECB" */
  2542. 40, /* "RC2-OFB" */
  2543. 5, /* "RC4" */
  2544. 97, /* "RC4-40" */
  2545. 915, /* "RC4-HMAC-MD5" */
  2546. 120, /* "RC5-CBC" */
  2547. 122, /* "RC5-CFB" */
  2548. 121, /* "RC5-ECB" */
  2549. 123, /* "RC5-OFB" */
  2550. 117, /* "RIPEMD160" */
  2551. 124, /* "RLE" */
  2552. 19, /* "RSA" */
  2553. 7, /* "RSA-MD2" */
  2554. 396, /* "RSA-MD4" */
  2555. 8, /* "RSA-MD5" */
  2556. 96, /* "RSA-MDC2" */
  2557. 104, /* "RSA-NP-MD5" */
  2558. 119, /* "RSA-RIPEMD160" */
  2559. 42, /* "RSA-SHA" */
  2560. 65, /* "RSA-SHA1" */
  2561. 115, /* "RSA-SHA1-2" */
  2562. 671, /* "RSA-SHA224" */
  2563. 668, /* "RSA-SHA256" */
  2564. 669, /* "RSA-SHA384" */
  2565. 670, /* "RSA-SHA512" */
  2566. 912, /* "RSASSA-PSS" */
  2567. 777, /* "SEED-CBC" */
  2568. 779, /* "SEED-CFB" */
  2569. 776, /* "SEED-ECB" */
  2570. 778, /* "SEED-OFB" */
  2571. 41, /* "SHA" */
  2572. 64, /* "SHA1" */
  2573. 675, /* "SHA224" */
  2574. 672, /* "SHA256" */
  2575. 673, /* "SHA384" */
  2576. 674, /* "SHA512" */
  2577. 188, /* "SMIME" */
  2578. 167, /* "SMIME-CAPS" */
  2579. 100, /* "SN" */
  2580. 16, /* "ST" */
  2581. 143, /* "SXNetID" */
  2582. 458, /* "UID" */
  2583. 0, /* "UNDEF" */
  2584. 11, /* "X500" */
  2585. 378, /* "X500algorithms" */
  2586. 12, /* "X509" */
  2587. 184, /* "X9-57" */
  2588. 185, /* "X9cm" */
  2589. 125, /* "ZLIB" */
  2590. 478, /* "aRecord" */
  2591. 289, /* "aaControls" */
  2592. 287, /* "ac-auditEntity" */
  2593. 397, /* "ac-proxying" */
  2594. 288, /* "ac-targeting" */
  2595. 368, /* "acceptableResponses" */
  2596. 446, /* "account" */
  2597. 363, /* "ad_timestamping" */
  2598. 376, /* "algorithm" */
  2599. 405, /* "ansi-X9-62" */
  2600. 910, /* "anyExtendedKeyUsage" */
  2601. 746, /* "anyPolicy" */
  2602. 370, /* "archiveCutoff" */
  2603. 484, /* "associatedDomain" */
  2604. 485, /* "associatedName" */
  2605. 501, /* "audio" */
  2606. 177, /* "authorityInfoAccess" */
  2607. 90, /* "authorityKeyIdentifier" */
  2608. 882, /* "authorityRevocationList" */
  2609. 87, /* "basicConstraints" */
  2610. 365, /* "basicOCSPResponse" */
  2611. 285, /* "biometricInfo" */
  2612. 494, /* "buildingName" */
  2613. 860, /* "businessCategory" */
  2614. 691, /* "c2onb191v4" */
  2615. 692, /* "c2onb191v5" */
  2616. 697, /* "c2onb239v4" */
  2617. 698, /* "c2onb239v5" */
  2618. 684, /* "c2pnb163v1" */
  2619. 685, /* "c2pnb163v2" */
  2620. 686, /* "c2pnb163v3" */
  2621. 687, /* "c2pnb176v1" */
  2622. 693, /* "c2pnb208w1" */
  2623. 699, /* "c2pnb272w1" */
  2624. 700, /* "c2pnb304w1" */
  2625. 702, /* "c2pnb368w1" */
  2626. 688, /* "c2tnb191v1" */
  2627. 689, /* "c2tnb191v2" */
  2628. 690, /* "c2tnb191v3" */
  2629. 694, /* "c2tnb239v1" */
  2630. 695, /* "c2tnb239v2" */
  2631. 696, /* "c2tnb239v3" */
  2632. 701, /* "c2tnb359v1" */
  2633. 703, /* "c2tnb431r1" */
  2634. 881, /* "cACertificate" */
  2635. 483, /* "cNAMERecord" */
  2636. 179, /* "caIssuers" */
  2637. 785, /* "caRepository" */
  2638. 443, /* "caseIgnoreIA5StringSyntax" */
  2639. 152, /* "certBag" */
  2640. 677, /* "certicom-arc" */
  2641. 771, /* "certificateIssuer" */
  2642. 89, /* "certificatePolicies" */
  2643. 883, /* "certificateRevocationList" */
  2644. 54, /* "challengePassword" */
  2645. 407, /* "characteristic-two-field" */
  2646. 395, /* "clearance" */
  2647. 130, /* "clientAuth" */
  2648. 131, /* "codeSigning" */
  2649. 50, /* "contentType" */
  2650. 53, /* "countersignature" */
  2651. 153, /* "crlBag" */
  2652. 103, /* "crlDistributionPoints" */
  2653. 88, /* "crlNumber" */
  2654. 884, /* "crossCertificatePair" */
  2655. 806, /* "cryptocom" */
  2656. 805, /* "cryptopro" */
  2657. 500, /* "dITRedirect" */
  2658. 451, /* "dNSDomain" */
  2659. 495, /* "dSAQuality" */
  2660. 434, /* "data" */
  2661. 390, /* "dcobject" */
  2662. 140, /* "deltaCRL" */
  2663. 891, /* "deltaRevocationList" */
  2664. 107, /* "description" */
  2665. 871, /* "destinationIndicator" */
  2666. 28, /* "dhKeyAgreement" */
  2667. 382, /* "directory" */
  2668. 887, /* "distinguishedName" */
  2669. 892, /* "dmdName" */
  2670. 174, /* "dnQualifier" */
  2671. 447, /* "document" */
  2672. 471, /* "documentAuthor" */
  2673. 468, /* "documentIdentifier" */
  2674. 472, /* "documentLocation" */
  2675. 502, /* "documentPublisher" */
  2676. 449, /* "documentSeries" */
  2677. 469, /* "documentTitle" */
  2678. 470, /* "documentVersion" */
  2679. 392, /* "domain" */
  2680. 452, /* "domainRelatedObject" */
  2681. 802, /* "dsa_with_SHA224" */
  2682. 803, /* "dsa_with_SHA256" */
  2683. 791, /* "ecdsa-with-Recommended" */
  2684. 416, /* "ecdsa-with-SHA1" */
  2685. 793, /* "ecdsa-with-SHA224" */
  2686. 794, /* "ecdsa-with-SHA256" */
  2687. 795, /* "ecdsa-with-SHA384" */
  2688. 796, /* "ecdsa-with-SHA512" */
  2689. 792, /* "ecdsa-with-Specified" */
  2690. 48, /* "emailAddress" */
  2691. 132, /* "emailProtection" */
  2692. 885, /* "enhancedSearchGuide" */
  2693. 389, /* "enterprises" */
  2694. 384, /* "experimental" */
  2695. 172, /* "extReq" */
  2696. 56, /* "extendedCertificateAttributes" */
  2697. 126, /* "extendedKeyUsage" */
  2698. 372, /* "extendedStatus" */
  2699. 867, /* "facsimileTelephoneNumber" */
  2700. 462, /* "favouriteDrink" */
  2701. 857, /* "freshestCRL" */
  2702. 453, /* "friendlyCountry" */
  2703. 490, /* "friendlyCountryName" */
  2704. 156, /* "friendlyName" */
  2705. 509, /* "generationQualifier" */
  2706. 815, /* "gost-mac" */
  2707. 811, /* "gost2001" */
  2708. 851, /* "gost2001cc" */
  2709. 813, /* "gost89" */
  2710. 814, /* "gost89-cnt" */
  2711. 812, /* "gost94" */
  2712. 850, /* "gost94cc" */
  2713. 797, /* "hmacWithMD5" */
  2714. 163, /* "hmacWithSHA1" */
  2715. 798, /* "hmacWithSHA224" */
  2716. 799, /* "hmacWithSHA256" */
  2717. 800, /* "hmacWithSHA384" */
  2718. 801, /* "hmacWithSHA512" */
  2719. 432, /* "holdInstructionCallIssuer" */
  2720. 430, /* "holdInstructionCode" */
  2721. 431, /* "holdInstructionNone" */
  2722. 433, /* "holdInstructionReject" */
  2723. 486, /* "homePostalAddress" */
  2724. 473, /* "homeTelephoneNumber" */
  2725. 466, /* "host" */
  2726. 889, /* "houseIdentifier" */
  2727. 442, /* "iA5StringSyntax" */
  2728. 783, /* "id-DHBasedMac" */
  2729. 824, /* "id-Gost28147-89-CryptoPro-A-ParamSet" */
  2730. 825, /* "id-Gost28147-89-CryptoPro-B-ParamSet" */
  2731. 826, /* "id-Gost28147-89-CryptoPro-C-ParamSet" */
  2732. 827, /* "id-Gost28147-89-CryptoPro-D-ParamSet" */
  2733. 819, /* "id-Gost28147-89-CryptoPro-KeyMeshing" */
  2734. 829, /* "id-Gost28147-89-CryptoPro-Oscar-1-0-ParamSet" */
  2735. 828, /* "id-Gost28147-89-CryptoPro-Oscar-1-1-ParamSet" */
  2736. 830, /* "id-Gost28147-89-CryptoPro-RIC-1-ParamSet" */
  2737. 820, /* "id-Gost28147-89-None-KeyMeshing" */
  2738. 823, /* "id-Gost28147-89-TestParamSet" */
  2739. 849, /* "id-Gost28147-89-cc" */
  2740. 840, /* "id-GostR3410-2001-CryptoPro-A-ParamSet" */
  2741. 841, /* "id-GostR3410-2001-CryptoPro-B-ParamSet" */
  2742. 842, /* "id-GostR3410-2001-CryptoPro-C-ParamSet" */
  2743. 843, /* "id-GostR3410-2001-CryptoPro-XchA-ParamSet" */
  2744. 844, /* "id-GostR3410-2001-CryptoPro-XchB-ParamSet" */
  2745. 854, /* "id-GostR3410-2001-ParamSet-cc" */
  2746. 839, /* "id-GostR3410-2001-TestParamSet" */
  2747. 817, /* "id-GostR3410-2001DH" */
  2748. 832, /* "id-GostR3410-94-CryptoPro-A-ParamSet" */
  2749. 833, /* "id-GostR3410-94-CryptoPro-B-ParamSet" */
  2750. 834, /* "id-GostR3410-94-CryptoPro-C-ParamSet" */
  2751. 835, /* "id-GostR3410-94-CryptoPro-D-ParamSet" */
  2752. 836, /* "id-GostR3410-94-CryptoPro-XchA-ParamSet" */
  2753. 837, /* "id-GostR3410-94-CryptoPro-XchB-ParamSet" */
  2754. 838, /* "id-GostR3410-94-CryptoPro-XchC-ParamSet" */
  2755. 831, /* "id-GostR3410-94-TestParamSet" */
  2756. 845, /* "id-GostR3410-94-a" */
  2757. 846, /* "id-GostR3410-94-aBis" */
  2758. 847, /* "id-GostR3410-94-b" */
  2759. 848, /* "id-GostR3410-94-bBis" */
  2760. 818, /* "id-GostR3410-94DH" */
  2761. 822, /* "id-GostR3411-94-CryptoProParamSet" */
  2762. 821, /* "id-GostR3411-94-TestParamSet" */
  2763. 807, /* "id-GostR3411-94-with-GostR3410-2001" */
  2764. 853, /* "id-GostR3411-94-with-GostR3410-2001-cc" */
  2765. 808, /* "id-GostR3411-94-with-GostR3410-94" */
  2766. 852, /* "id-GostR3411-94-with-GostR3410-94-cc" */
  2767. 810, /* "id-HMACGostR3411-94" */
  2768. 782, /* "id-PasswordBasedMAC" */
  2769. 266, /* "id-aca" */
  2770. 355, /* "id-aca-accessIdentity" */
  2771. 354, /* "id-aca-authenticationInfo" */
  2772. 356, /* "id-aca-chargingIdentity" */
  2773. 399, /* "id-aca-encAttrs" */
  2774. 357, /* "id-aca-group" */
  2775. 358, /* "id-aca-role" */
  2776. 176, /* "id-ad" */
  2777. 896, /* "id-aes128-CCM" */
  2778. 895, /* "id-aes128-GCM" */
  2779. 788, /* "id-aes128-wrap" */
  2780. 897, /* "id-aes128-wrap-pad" */
  2781. 899, /* "id-aes192-CCM" */
  2782. 898, /* "id-aes192-GCM" */
  2783. 789, /* "id-aes192-wrap" */
  2784. 900, /* "id-aes192-wrap-pad" */
  2785. 902, /* "id-aes256-CCM" */
  2786. 901, /* "id-aes256-GCM" */
  2787. 790, /* "id-aes256-wrap" */
  2788. 903, /* "id-aes256-wrap-pad" */
  2789. 262, /* "id-alg" */
  2790. 893, /* "id-alg-PWRI-KEK" */
  2791. 323, /* "id-alg-des40" */
  2792. 326, /* "id-alg-dh-pop" */
  2793. 325, /* "id-alg-dh-sig-hmac-sha1" */
  2794. 324, /* "id-alg-noSignature" */
  2795. 907, /* "id-camellia128-wrap" */
  2796. 908, /* "id-camellia192-wrap" */
  2797. 909, /* "id-camellia256-wrap" */
  2798. 268, /* "id-cct" */
  2799. 361, /* "id-cct-PKIData" */
  2800. 362, /* "id-cct-PKIResponse" */
  2801. 360, /* "id-cct-crs" */
  2802. 81, /* "id-ce" */
  2803. 680, /* "id-characteristic-two-basis" */
  2804. 263, /* "id-cmc" */
  2805. 334, /* "id-cmc-addExtensions" */
  2806. 346, /* "id-cmc-confirmCertAcceptance" */
  2807. 330, /* "id-cmc-dataReturn" */
  2808. 336, /* "id-cmc-decryptedPOP" */
  2809. 335, /* "id-cmc-encryptedPOP" */
  2810. 339, /* "id-cmc-getCRL" */
  2811. 338, /* "id-cmc-getCert" */
  2812. 328, /* "id-cmc-identification" */
  2813. 329, /* "id-cmc-identityProof" */
  2814. 337, /* "id-cmc-lraPOPWitness" */
  2815. 344, /* "id-cmc-popLinkRandom" */
  2816. 345, /* "id-cmc-popLinkWitness" */
  2817. 343, /* "id-cmc-queryPending" */
  2818. 333, /* "id-cmc-recipientNonce" */
  2819. 341, /* "id-cmc-regInfo" */
  2820. 342, /* "id-cmc-responseInfo" */
  2821. 340, /* "id-cmc-revokeRequest" */
  2822. 332, /* "id-cmc-senderNonce" */
  2823. 327, /* "id-cmc-statusInfo" */
  2824. 331, /* "id-cmc-transactionId" */
  2825. 787, /* "id-ct-asciiTextWithCRLF" */
  2826. 408, /* "id-ecPublicKey" */
  2827. 508, /* "id-hex-multipart-message" */
  2828. 507, /* "id-hex-partial-message" */
  2829. 260, /* "id-it" */
  2830. 302, /* "id-it-caKeyUpdateInfo" */
  2831. 298, /* "id-it-caProtEncCert" */
  2832. 311, /* "id-it-confirmWaitTime" */
  2833. 303, /* "id-it-currentCRL" */
  2834. 300, /* "id-it-encKeyPairTypes" */
  2835. 310, /* "id-it-implicitConfirm" */
  2836. 308, /* "id-it-keyPairParamRep" */
  2837. 307, /* "id-it-keyPairParamReq" */
  2838. 312, /* "id-it-origPKIMessage" */
  2839. 301, /* "id-it-preferredSymmAlg" */
  2840. 309, /* "id-it-revPassphrase" */
  2841. 299, /* "id-it-signKeyPairTypes" */
  2842. 305, /* "id-it-subscriptionRequest" */
  2843. 306, /* "id-it-subscriptionResponse" */
  2844. 784, /* "id-it-suppLangTags" */
  2845. 304, /* "id-it-unsupportedOIDs" */
  2846. 128, /* "id-kp" */
  2847. 280, /* "id-mod-attribute-cert" */
  2848. 274, /* "id-mod-cmc" */
  2849. 277, /* "id-mod-cmp" */
  2850. 284, /* "id-mod-cmp2000" */
  2851. 273, /* "id-mod-crmf" */
  2852. 283, /* "id-mod-dvcs" */
  2853. 275, /* "id-mod-kea-profile-88" */
  2854. 276, /* "id-mod-kea-profile-93" */
  2855. 282, /* "id-mod-ocsp" */
  2856. 278, /* "id-mod-qualified-cert-88" */
  2857. 279, /* "id-mod-qualified-cert-93" */
  2858. 281, /* "id-mod-timestamp-protocol" */
  2859. 264, /* "id-on" */
  2860. 858, /* "id-on-permanentIdentifier" */
  2861. 347, /* "id-on-personalData" */
  2862. 265, /* "id-pda" */
  2863. 352, /* "id-pda-countryOfCitizenship" */
  2864. 353, /* "id-pda-countryOfResidence" */
  2865. 348, /* "id-pda-dateOfBirth" */
  2866. 351, /* "id-pda-gender" */
  2867. 349, /* "id-pda-placeOfBirth" */
  2868. 175, /* "id-pe" */
  2869. 261, /* "id-pkip" */
  2870. 258, /* "id-pkix-mod" */
  2871. 269, /* "id-pkix1-explicit-88" */
  2872. 271, /* "id-pkix1-explicit-93" */
  2873. 270, /* "id-pkix1-implicit-88" */
  2874. 272, /* "id-pkix1-implicit-93" */
  2875. 662, /* "id-ppl" */
  2876. 664, /* "id-ppl-anyLanguage" */
  2877. 667, /* "id-ppl-independent" */
  2878. 665, /* "id-ppl-inheritAll" */
  2879. 267, /* "id-qcs" */
  2880. 359, /* "id-qcs-pkixQCSyntax-v1" */
  2881. 259, /* "id-qt" */
  2882. 164, /* "id-qt-cps" */
  2883. 165, /* "id-qt-unotice" */
  2884. 313, /* "id-regCtrl" */
  2885. 316, /* "id-regCtrl-authenticator" */
  2886. 319, /* "id-regCtrl-oldCertID" */
  2887. 318, /* "id-regCtrl-pkiArchiveOptions" */
  2888. 317, /* "id-regCtrl-pkiPublicationInfo" */
  2889. 320, /* "id-regCtrl-protocolEncrKey" */
  2890. 315, /* "id-regCtrl-regToken" */
  2891. 314, /* "id-regInfo" */
  2892. 322, /* "id-regInfo-certReq" */
  2893. 321, /* "id-regInfo-utf8Pairs" */
  2894. 512, /* "id-set" */
  2895. 191, /* "id-smime-aa" */
  2896. 215, /* "id-smime-aa-contentHint" */
  2897. 218, /* "id-smime-aa-contentIdentifier" */
  2898. 221, /* "id-smime-aa-contentReference" */
  2899. 240, /* "id-smime-aa-dvcs-dvc" */
  2900. 217, /* "id-smime-aa-encapContentType" */
  2901. 222, /* "id-smime-aa-encrypKeyPref" */
  2902. 220, /* "id-smime-aa-equivalentLabels" */
  2903. 232, /* "id-smime-aa-ets-CertificateRefs" */
  2904. 233, /* "id-smime-aa-ets-RevocationRefs" */
  2905. 238, /* "id-smime-aa-ets-archiveTimeStamp" */
  2906. 237, /* "id-smime-aa-ets-certCRLTimestamp" */
  2907. 234, /* "id-smime-aa-ets-certValues" */
  2908. 227, /* "id-smime-aa-ets-commitmentType" */
  2909. 231, /* "id-smime-aa-ets-contentTimestamp" */
  2910. 236, /* "id-smime-aa-ets-escTimeStamp" */
  2911. 230, /* "id-smime-aa-ets-otherSigCert" */
  2912. 235, /* "id-smime-aa-ets-revocationValues" */
  2913. 226, /* "id-smime-aa-ets-sigPolicyId" */
  2914. 229, /* "id-smime-aa-ets-signerAttr" */
  2915. 228, /* "id-smime-aa-ets-signerLocation" */
  2916. 219, /* "id-smime-aa-macValue" */
  2917. 214, /* "id-smime-aa-mlExpandHistory" */
  2918. 216, /* "id-smime-aa-msgSigDigest" */
  2919. 212, /* "id-smime-aa-receiptRequest" */
  2920. 213, /* "id-smime-aa-securityLabel" */
  2921. 239, /* "id-smime-aa-signatureType" */
  2922. 223, /* "id-smime-aa-signingCertificate" */
  2923. 224, /* "id-smime-aa-smimeEncryptCerts" */
  2924. 225, /* "id-smime-aa-timeStampToken" */
  2925. 192, /* "id-smime-alg" */
  2926. 243, /* "id-smime-alg-3DESwrap" */
  2927. 246, /* "id-smime-alg-CMS3DESwrap" */
  2928. 247, /* "id-smime-alg-CMSRC2wrap" */
  2929. 245, /* "id-smime-alg-ESDH" */
  2930. 241, /* "id-smime-alg-ESDHwith3DES" */
  2931. 242, /* "id-smime-alg-ESDHwithRC2" */
  2932. 244, /* "id-smime-alg-RC2wrap" */
  2933. 193, /* "id-smime-cd" */
  2934. 248, /* "id-smime-cd-ldap" */
  2935. 190, /* "id-smime-ct" */
  2936. 210, /* "id-smime-ct-DVCSRequestData" */
  2937. 211, /* "id-smime-ct-DVCSResponseData" */
  2938. 208, /* "id-smime-ct-TDTInfo" */
  2939. 207, /* "id-smime-ct-TSTInfo" */
  2940. 205, /* "id-smime-ct-authData" */
  2941. 786, /* "id-smime-ct-compressedData" */
  2942. 209, /* "id-smime-ct-contentInfo" */
  2943. 206, /* "id-smime-ct-publishCert" */
  2944. 204, /* "id-smime-ct-receipt" */
  2945. 195, /* "id-smime-cti" */
  2946. 255, /* "id-smime-cti-ets-proofOfApproval" */
  2947. 256, /* "id-smime-cti-ets-proofOfCreation" */
  2948. 253, /* "id-smime-cti-ets-proofOfDelivery" */
  2949. 251, /* "id-smime-cti-ets-proofOfOrigin" */
  2950. 252, /* "id-smime-cti-ets-proofOfReceipt" */
  2951. 254, /* "id-smime-cti-ets-proofOfSender" */
  2952. 189, /* "id-smime-mod" */
  2953. 196, /* "id-smime-mod-cms" */
  2954. 197, /* "id-smime-mod-ess" */
  2955. 202, /* "id-smime-mod-ets-eSigPolicy-88" */
  2956. 203, /* "id-smime-mod-ets-eSigPolicy-97" */
  2957. 200, /* "id-smime-mod-ets-eSignature-88" */
  2958. 201, /* "id-smime-mod-ets-eSignature-97" */
  2959. 199, /* "id-smime-mod-msg-v3" */
  2960. 198, /* "id-smime-mod-oid" */
  2961. 194, /* "id-smime-spq" */
  2962. 250, /* "id-smime-spq-ets-sqt-unotice" */
  2963. 249, /* "id-smime-spq-ets-sqt-uri" */
  2964. 676, /* "identified-organization" */
  2965. 461, /* "info" */
  2966. 748, /* "inhibitAnyPolicy" */
  2967. 101, /* "initials" */
  2968. 647, /* "international-organizations" */
  2969. 869, /* "internationaliSDNNumber" */
  2970. 142, /* "invalidityDate" */
  2971. 294, /* "ipsecEndSystem" */
  2972. 295, /* "ipsecTunnel" */
  2973. 296, /* "ipsecUser" */
  2974. 86, /* "issuerAltName" */
  2975. 770, /* "issuingDistributionPoint" */
  2976. 492, /* "janetMailbox" */
  2977. 150, /* "keyBag" */
  2978. 83, /* "keyUsage" */
  2979. 477, /* "lastModifiedBy" */
  2980. 476, /* "lastModifiedTime" */
  2981. 157, /* "localKeyID" */
  2982. 480, /* "mXRecord" */
  2983. 460, /* "mail" */
  2984. 493, /* "mailPreferenceOption" */
  2985. 467, /* "manager" */
  2986. 809, /* "md_gost94" */
  2987. 875, /* "member" */
  2988. 182, /* "member-body" */
  2989. 51, /* "messageDigest" */
  2990. 383, /* "mgmt" */
  2991. 504, /* "mime-mhs" */
  2992. 506, /* "mime-mhs-bodies" */
  2993. 505, /* "mime-mhs-headings" */
  2994. 488, /* "mobileTelephoneNumber" */
  2995. 136, /* "msCTLSign" */
  2996. 135, /* "msCodeCom" */
  2997. 134, /* "msCodeInd" */
  2998. 138, /* "msEFS" */
  2999. 171, /* "msExtReq" */
  3000. 137, /* "msSGC" */
  3001. 648, /* "msSmartcardLogin" */
  3002. 649, /* "msUPN" */
  3003. 481, /* "nSRecord" */
  3004. 173, /* "name" */
  3005. 666, /* "nameConstraints" */
  3006. 369, /* "noCheck" */
  3007. 403, /* "noRevAvail" */
  3008. 72, /* "nsBaseUrl" */
  3009. 76, /* "nsCaPolicyUrl" */
  3010. 74, /* "nsCaRevocationUrl" */
  3011. 58, /* "nsCertExt" */
  3012. 79, /* "nsCertSequence" */
  3013. 71, /* "nsCertType" */
  3014. 78, /* "nsComment" */
  3015. 59, /* "nsDataType" */
  3016. 75, /* "nsRenewalUrl" */
  3017. 73, /* "nsRevocationUrl" */
  3018. 139, /* "nsSGC" */
  3019. 77, /* "nsSslServerName" */
  3020. 681, /* "onBasis" */
  3021. 491, /* "organizationalStatus" */
  3022. 475, /* "otherMailbox" */
  3023. 876, /* "owner" */
  3024. 489, /* "pagerTelephoneNumber" */
  3025. 374, /* "path" */
  3026. 112, /* "pbeWithMD5AndCast5CBC" */
  3027. 499, /* "personalSignature" */
  3028. 487, /* "personalTitle" */
  3029. 464, /* "photo" */
  3030. 863, /* "physicalDeliveryOfficeName" */
  3031. 437, /* "pilot" */
  3032. 439, /* "pilotAttributeSyntax" */
  3033. 438, /* "pilotAttributeType" */
  3034. 479, /* "pilotAttributeType27" */
  3035. 456, /* "pilotDSA" */
  3036. 441, /* "pilotGroups" */
  3037. 444, /* "pilotObject" */
  3038. 440, /* "pilotObjectClass" */
  3039. 455, /* "pilotOrganization" */
  3040. 445, /* "pilotPerson" */
  3041. 2, /* "pkcs" */
  3042. 186, /* "pkcs1" */
  3043. 27, /* "pkcs3" */
  3044. 187, /* "pkcs5" */
  3045. 20, /* "pkcs7" */
  3046. 21, /* "pkcs7-data" */
  3047. 25, /* "pkcs7-digestData" */
  3048. 26, /* "pkcs7-encryptedData" */
  3049. 23, /* "pkcs7-envelopedData" */
  3050. 24, /* "pkcs7-signedAndEnvelopedData" */
  3051. 22, /* "pkcs7-signedData" */
  3052. 151, /* "pkcs8ShroudedKeyBag" */
  3053. 47, /* "pkcs9" */
  3054. 401, /* "policyConstraints" */
  3055. 747, /* "policyMappings" */
  3056. 862, /* "postOfficeBox" */
  3057. 861, /* "postalAddress" */
  3058. 661, /* "postalCode" */
  3059. 683, /* "ppBasis" */
  3060. 872, /* "preferredDeliveryMethod" */
  3061. 873, /* "presentationAddress" */
  3062. 816, /* "prf-gostr3411-94" */
  3063. 406, /* "prime-field" */
  3064. 409, /* "prime192v1" */
  3065. 410, /* "prime192v2" */
  3066. 411, /* "prime192v3" */
  3067. 412, /* "prime239v1" */
  3068. 413, /* "prime239v2" */
  3069. 414, /* "prime239v3" */
  3070. 415, /* "prime256v1" */
  3071. 385, /* "private" */
  3072. 84, /* "privateKeyUsagePeriod" */
  3073. 886, /* "protocolInformation" */
  3074. 663, /* "proxyCertInfo" */
  3075. 510, /* "pseudonym" */
  3076. 435, /* "pss" */
  3077. 286, /* "qcStatements" */
  3078. 457, /* "qualityLabelledData" */
  3079. 450, /* "rFC822localPart" */
  3080. 870, /* "registeredAddress" */
  3081. 400, /* "role" */
  3082. 877, /* "roleOccupant" */
  3083. 448, /* "room" */
  3084. 463, /* "roomNumber" */
  3085. 6, /* "rsaEncryption" */
  3086. 644, /* "rsaOAEPEncryptionSET" */
  3087. 377, /* "rsaSignature" */
  3088. 1, /* "rsadsi" */
  3089. 482, /* "sOARecord" */
  3090. 155, /* "safeContentsBag" */
  3091. 291, /* "sbgp-autonomousSysNum" */
  3092. 290, /* "sbgp-ipAddrBlock" */
  3093. 292, /* "sbgp-routerIdentifier" */
  3094. 159, /* "sdsiCertificate" */
  3095. 859, /* "searchGuide" */
  3096. 704, /* "secp112r1" */
  3097. 705, /* "secp112r2" */
  3098. 706, /* "secp128r1" */
  3099. 707, /* "secp128r2" */
  3100. 708, /* "secp160k1" */
  3101. 709, /* "secp160r1" */
  3102. 710, /* "secp160r2" */
  3103. 711, /* "secp192k1" */
  3104. 712, /* "secp224k1" */
  3105. 713, /* "secp224r1" */
  3106. 714, /* "secp256k1" */
  3107. 715, /* "secp384r1" */
  3108. 716, /* "secp521r1" */
  3109. 154, /* "secretBag" */
  3110. 474, /* "secretary" */
  3111. 717, /* "sect113r1" */
  3112. 718, /* "sect113r2" */
  3113. 719, /* "sect131r1" */
  3114. 720, /* "sect131r2" */
  3115. 721, /* "sect163k1" */
  3116. 722, /* "sect163r1" */
  3117. 723, /* "sect163r2" */
  3118. 724, /* "sect193r1" */
  3119. 725, /* "sect193r2" */
  3120. 726, /* "sect233k1" */
  3121. 727, /* "sect233r1" */
  3122. 728, /* "sect239k1" */
  3123. 729, /* "sect283k1" */
  3124. 730, /* "sect283r1" */
  3125. 731, /* "sect409k1" */
  3126. 732, /* "sect409r1" */
  3127. 733, /* "sect571k1" */
  3128. 734, /* "sect571r1" */
  3129. 386, /* "security" */
  3130. 878, /* "seeAlso" */
  3131. 394, /* "selected-attribute-types" */
  3132. 105, /* "serialNumber" */
  3133. 129, /* "serverAuth" */
  3134. 371, /* "serviceLocator" */
  3135. 625, /* "set-addPolicy" */
  3136. 515, /* "set-attr" */
  3137. 518, /* "set-brand" */
  3138. 638, /* "set-brand-AmericanExpress" */
  3139. 637, /* "set-brand-Diners" */
  3140. 636, /* "set-brand-IATA-ATA" */
  3141. 639, /* "set-brand-JCB" */
  3142. 641, /* "set-brand-MasterCard" */
  3143. 642, /* "set-brand-Novus" */
  3144. 640, /* "set-brand-Visa" */
  3145. 517, /* "set-certExt" */
  3146. 513, /* "set-ctype" */
  3147. 514, /* "set-msgExt" */
  3148. 516, /* "set-policy" */
  3149. 607, /* "set-policy-root" */
  3150. 624, /* "set-rootKeyThumb" */
  3151. 620, /* "setAttr-Cert" */
  3152. 631, /* "setAttr-GenCryptgrm" */
  3153. 623, /* "setAttr-IssCap" */
  3154. 628, /* "setAttr-IssCap-CVM" */
  3155. 630, /* "setAttr-IssCap-Sig" */
  3156. 629, /* "setAttr-IssCap-T2" */
  3157. 621, /* "setAttr-PGWYcap" */
  3158. 635, /* "setAttr-SecDevSig" */
  3159. 632, /* "setAttr-T2Enc" */
  3160. 633, /* "setAttr-T2cleartxt" */
  3161. 634, /* "setAttr-TokICCsig" */
  3162. 627, /* "setAttr-Token-B0Prime" */
  3163. 626, /* "setAttr-Token-EMV" */
  3164. 622, /* "setAttr-TokenType" */
  3165. 619, /* "setCext-IssuerCapabilities" */
  3166. 615, /* "setCext-PGWYcapabilities" */
  3167. 616, /* "setCext-TokenIdentifier" */
  3168. 618, /* "setCext-TokenType" */
  3169. 617, /* "setCext-Track2Data" */
  3170. 611, /* "setCext-cCertRequired" */
  3171. 609, /* "setCext-certType" */
  3172. 608, /* "setCext-hashedRoot" */
  3173. 610, /* "setCext-merchData" */
  3174. 613, /* "setCext-setExt" */
  3175. 614, /* "setCext-setQualf" */
  3176. 612, /* "setCext-tunneling" */
  3177. 540, /* "setct-AcqCardCodeMsg" */
  3178. 576, /* "setct-AcqCardCodeMsgTBE" */
  3179. 570, /* "setct-AuthReqTBE" */
  3180. 534, /* "setct-AuthReqTBS" */
  3181. 527, /* "setct-AuthResBaggage" */
  3182. 571, /* "setct-AuthResTBE" */
  3183. 572, /* "setct-AuthResTBEX" */
  3184. 535, /* "setct-AuthResTBS" */
  3185. 536, /* "setct-AuthResTBSX" */
  3186. 528, /* "setct-AuthRevReqBaggage" */
  3187. 577, /* "setct-AuthRevReqTBE" */
  3188. 541, /* "setct-AuthRevReqTBS" */
  3189. 529, /* "setct-AuthRevResBaggage" */
  3190. 542, /* "setct-AuthRevResData" */
  3191. 578, /* "setct-AuthRevResTBE" */
  3192. 579, /* "setct-AuthRevResTBEB" */
  3193. 543, /* "setct-AuthRevResTBS" */
  3194. 573, /* "setct-AuthTokenTBE" */
  3195. 537, /* "setct-AuthTokenTBS" */
  3196. 600, /* "setct-BCIDistributionTBS" */
  3197. 558, /* "setct-BatchAdminReqData" */
  3198. 592, /* "setct-BatchAdminReqTBE" */
  3199. 559, /* "setct-BatchAdminResData" */
  3200. 593, /* "setct-BatchAdminResTBE" */
  3201. 599, /* "setct-CRLNotificationResTBS" */
  3202. 598, /* "setct-CRLNotificationTBS" */
  3203. 580, /* "setct-CapReqTBE" */
  3204. 581, /* "setct-CapReqTBEX" */
  3205. 544, /* "setct-CapReqTBS" */
  3206. 545, /* "setct-CapReqTBSX" */
  3207. 546, /* "setct-CapResData" */
  3208. 582, /* "setct-CapResTBE" */
  3209. 583, /* "setct-CapRevReqTBE" */
  3210. 584, /* "setct-CapRevReqTBEX" */
  3211. 547, /* "setct-CapRevReqTBS" */
  3212. 548, /* "setct-CapRevReqTBSX" */
  3213. 549, /* "setct-CapRevResData" */
  3214. 585, /* "setct-CapRevResTBE" */
  3215. 538, /* "setct-CapTokenData" */
  3216. 530, /* "setct-CapTokenSeq" */
  3217. 574, /* "setct-CapTokenTBE" */
  3218. 575, /* "setct-CapTokenTBEX" */
  3219. 539, /* "setct-CapTokenTBS" */
  3220. 560, /* "setct-CardCInitResTBS" */
  3221. 566, /* "setct-CertInqReqTBS" */
  3222. 563, /* "setct-CertReqData" */
  3223. 595, /* "setct-CertReqTBE" */
  3224. 596, /* "setct-CertReqTBEX" */
  3225. 564, /* "setct-CertReqTBS" */
  3226. 565, /* "setct-CertResData" */
  3227. 597, /* "setct-CertResTBE" */
  3228. 586, /* "setct-CredReqTBE" */
  3229. 587, /* "setct-CredReqTBEX" */
  3230. 550, /* "setct-CredReqTBS" */
  3231. 551, /* "setct-CredReqTBSX" */
  3232. 552, /* "setct-CredResData" */
  3233. 588, /* "setct-CredResTBE" */
  3234. 589, /* "setct-CredRevReqTBE" */
  3235. 590, /* "setct-CredRevReqTBEX" */
  3236. 553, /* "setct-CredRevReqTBS" */
  3237. 554, /* "setct-CredRevReqTBSX" */
  3238. 555, /* "setct-CredRevResData" */
  3239. 591, /* "setct-CredRevResTBE" */
  3240. 567, /* "setct-ErrorTBS" */
  3241. 526, /* "setct-HODInput" */
  3242. 561, /* "setct-MeAqCInitResTBS" */
  3243. 522, /* "setct-OIData" */
  3244. 519, /* "setct-PANData" */
  3245. 521, /* "setct-PANOnly" */
  3246. 520, /* "setct-PANToken" */
  3247. 556, /* "setct-PCertReqData" */
  3248. 557, /* "setct-PCertResTBS" */
  3249. 523, /* "setct-PI" */
  3250. 532, /* "setct-PI-TBS" */
  3251. 524, /* "setct-PIData" */
  3252. 525, /* "setct-PIDataUnsigned" */
  3253. 568, /* "setct-PIDualSignedTBE" */
  3254. 569, /* "setct-PIUnsignedTBE" */
  3255. 531, /* "setct-PInitResData" */
  3256. 533, /* "setct-PResData" */
  3257. 594, /* "setct-RegFormReqTBE" */
  3258. 562, /* "setct-RegFormResTBS" */
  3259. 606, /* "setext-cv" */
  3260. 601, /* "setext-genCrypt" */
  3261. 602, /* "setext-miAuth" */
  3262. 604, /* "setext-pinAny" */
  3263. 603, /* "setext-pinSecure" */
  3264. 605, /* "setext-track2" */
  3265. 52, /* "signingTime" */
  3266. 454, /* "simpleSecurityObject" */
  3267. 496, /* "singleLevelQuality" */
  3268. 387, /* "snmpv2" */
  3269. 660, /* "street" */
  3270. 85, /* "subjectAltName" */
  3271. 769, /* "subjectDirectoryAttributes" */
  3272. 398, /* "subjectInfoAccess" */
  3273. 82, /* "subjectKeyIdentifier" */
  3274. 498, /* "subtreeMaximumQuality" */
  3275. 497, /* "subtreeMinimumQuality" */
  3276. 890, /* "supportedAlgorithms" */
  3277. 874, /* "supportedApplicationContext" */
  3278. 402, /* "targetInformation" */
  3279. 864, /* "telephoneNumber" */
  3280. 866, /* "teletexTerminalIdentifier" */
  3281. 865, /* "telexNumber" */
  3282. 459, /* "textEncodedORAddress" */
  3283. 293, /* "textNotice" */
  3284. 133, /* "timeStamping" */
  3285. 106, /* "title" */
  3286. 682, /* "tpBasis" */
  3287. 375, /* "trustRoot" */
  3288. 436, /* "ucl" */
  3289. 888, /* "uniqueMember" */
  3290. 55, /* "unstructuredAddress" */
  3291. 49, /* "unstructuredName" */
  3292. 880, /* "userCertificate" */
  3293. 465, /* "userClass" */
  3294. 879, /* "userPassword" */
  3295. 373, /* "valid" */
  3296. 678, /* "wap" */
  3297. 679, /* "wap-wsg" */
  3298. 735, /* "wap-wsg-idm-ecid-wtls1" */
  3299. 743, /* "wap-wsg-idm-ecid-wtls10" */
  3300. 744, /* "wap-wsg-idm-ecid-wtls11" */
  3301. 745, /* "wap-wsg-idm-ecid-wtls12" */
  3302. 736, /* "wap-wsg-idm-ecid-wtls3" */
  3303. 737, /* "wap-wsg-idm-ecid-wtls4" */
  3304. 738, /* "wap-wsg-idm-ecid-wtls5" */
  3305. 739, /* "wap-wsg-idm-ecid-wtls6" */
  3306. 740, /* "wap-wsg-idm-ecid-wtls7" */
  3307. 741, /* "wap-wsg-idm-ecid-wtls8" */
  3308. 742, /* "wap-wsg-idm-ecid-wtls9" */
  3309. 804, /* "whirlpool" */
  3310. 868, /* "x121Address" */
  3311. 503, /* "x500UniqueIdentifier" */
  3312. 158, /* "x509Certificate" */
  3313. 160, /* "x509Crl" */
  3314. };
  3315. static const unsigned int ln_objs[NUM_LN]={
  3316. 363, /* "AD Time Stamping" */
  3317. 405, /* "ANSI X9.62" */
  3318. 368, /* "Acceptable OCSP Responses" */
  3319. 910, /* "Any Extended Key Usage" */
  3320. 664, /* "Any language" */
  3321. 177, /* "Authority Information Access" */
  3322. 365, /* "Basic OCSP Response" */
  3323. 285, /* "Biometric Info" */
  3324. 179, /* "CA Issuers" */
  3325. 785, /* "CA Repository" */
  3326. 131, /* "Code Signing" */
  3327. 783, /* "Diffie-Hellman based MAC" */
  3328. 382, /* "Directory" */
  3329. 392, /* "Domain" */
  3330. 132, /* "E-mail Protection" */
  3331. 389, /* "Enterprises" */
  3332. 384, /* "Experimental" */
  3333. 372, /* "Extended OCSP Status" */
  3334. 172, /* "Extension Request" */
  3335. 813, /* "GOST 28147-89" */
  3336. 849, /* "GOST 28147-89 Cryptocom ParamSet" */
  3337. 815, /* "GOST 28147-89 MAC" */
  3338. 851, /* "GOST 34.10-2001 Cryptocom" */
  3339. 850, /* "GOST 34.10-94 Cryptocom" */
  3340. 811, /* "GOST R 34.10-2001" */
  3341. 817, /* "GOST R 34.10-2001 DH" */
  3342. 812, /* "GOST R 34.10-94" */
  3343. 818, /* "GOST R 34.10-94 DH" */
  3344. 809, /* "GOST R 34.11-94" */
  3345. 816, /* "GOST R 34.11-94 PRF" */
  3346. 807, /* "GOST R 34.11-94 with GOST R 34.10-2001" */
  3347. 853, /* "GOST R 34.11-94 with GOST R 34.10-2001 Cryptocom" */
  3348. 808, /* "GOST R 34.11-94 with GOST R 34.10-94" */
  3349. 852, /* "GOST R 34.11-94 with GOST R 34.10-94 Cryptocom" */
  3350. 854, /* "GOST R 3410-2001 Parameter Set Cryptocom" */
  3351. 810, /* "HMAC GOST 34.11-94" */
  3352. 432, /* "Hold Instruction Call Issuer" */
  3353. 430, /* "Hold Instruction Code" */
  3354. 431, /* "Hold Instruction None" */
  3355. 433, /* "Hold Instruction Reject" */
  3356. 634, /* "ICC or token signature" */
  3357. 294, /* "IPSec End System" */
  3358. 295, /* "IPSec Tunnel" */
  3359. 296, /* "IPSec User" */
  3360. 182, /* "ISO Member Body" */
  3361. 183, /* "ISO US Member Body" */
  3362. 667, /* "Independent" */
  3363. 665, /* "Inherit all" */
  3364. 647, /* "International Organizations" */
  3365. 142, /* "Invalidity Date" */
  3366. 504, /* "MIME MHS" */
  3367. 388, /* "Mail" */
  3368. 383, /* "Management" */
  3369. 417, /* "Microsoft CSP Name" */
  3370. 135, /* "Microsoft Commercial Code Signing" */
  3371. 138, /* "Microsoft Encrypted File System" */
  3372. 171, /* "Microsoft Extension Request" */
  3373. 134, /* "Microsoft Individual Code Signing" */
  3374. 856, /* "Microsoft Local Key set" */
  3375. 137, /* "Microsoft Server Gated Crypto" */
  3376. 648, /* "Microsoft Smartcardlogin" */
  3377. 136, /* "Microsoft Trust List Signing" */
  3378. 649, /* "Microsoft Universal Principal Name" */
  3379. 393, /* "NULL" */
  3380. 404, /* "NULL" */
  3381. 72, /* "Netscape Base Url" */
  3382. 76, /* "Netscape CA Policy Url" */
  3383. 74, /* "Netscape CA Revocation Url" */
  3384. 71, /* "Netscape Cert Type" */
  3385. 58, /* "Netscape Certificate Extension" */
  3386. 79, /* "Netscape Certificate Sequence" */
  3387. 78, /* "Netscape Comment" */
  3388. 57, /* "Netscape Communications Corp." */
  3389. 59, /* "Netscape Data Type" */
  3390. 75, /* "Netscape Renewal Url" */
  3391. 73, /* "Netscape Revocation Url" */
  3392. 77, /* "Netscape SSL Server Name" */
  3393. 139, /* "Netscape Server Gated Crypto" */
  3394. 178, /* "OCSP" */
  3395. 370, /* "OCSP Archive Cutoff" */
  3396. 367, /* "OCSP CRL ID" */
  3397. 369, /* "OCSP No Check" */
  3398. 366, /* "OCSP Nonce" */
  3399. 371, /* "OCSP Service Locator" */
  3400. 180, /* "OCSP Signing" */
  3401. 161, /* "PBES2" */
  3402. 69, /* "PBKDF2" */
  3403. 162, /* "PBMAC1" */
  3404. 127, /* "PKIX" */
  3405. 858, /* "Permanent Identifier" */
  3406. 164, /* "Policy Qualifier CPS" */
  3407. 165, /* "Policy Qualifier User Notice" */
  3408. 385, /* "Private" */
  3409. 663, /* "Proxy Certificate Information" */
  3410. 1, /* "RSA Data Security, Inc." */
  3411. 2, /* "RSA Data Security, Inc. PKCS" */
  3412. 188, /* "S/MIME" */
  3413. 167, /* "S/MIME Capabilities" */
  3414. 387, /* "SNMPv2" */
  3415. 512, /* "Secure Electronic Transactions" */
  3416. 386, /* "Security" */
  3417. 394, /* "Selected Attribute Types" */
  3418. 143, /* "Strong Extranet ID" */
  3419. 398, /* "Subject Information Access" */
  3420. 130, /* "TLS Web Client Authentication" */
  3421. 129, /* "TLS Web Server Authentication" */
  3422. 133, /* "Time Stamping" */
  3423. 375, /* "Trust Root" */
  3424. 12, /* "X509" */
  3425. 402, /* "X509v3 AC Targeting" */
  3426. 746, /* "X509v3 Any Policy" */
  3427. 90, /* "X509v3 Authority Key Identifier" */
  3428. 87, /* "X509v3 Basic Constraints" */
  3429. 103, /* "X509v3 CRL Distribution Points" */
  3430. 88, /* "X509v3 CRL Number" */
  3431. 141, /* "X509v3 CRL Reason Code" */
  3432. 771, /* "X509v3 Certificate Issuer" */
  3433. 89, /* "X509v3 Certificate Policies" */
  3434. 140, /* "X509v3 Delta CRL Indicator" */
  3435. 126, /* "X509v3 Extended Key Usage" */
  3436. 857, /* "X509v3 Freshest CRL" */
  3437. 748, /* "X509v3 Inhibit Any Policy" */
  3438. 86, /* "X509v3 Issuer Alternative Name" */
  3439. 770, /* "X509v3 Issuing Distrubution Point" */
  3440. 83, /* "X509v3 Key Usage" */
  3441. 666, /* "X509v3 Name Constraints" */
  3442. 403, /* "X509v3 No Revocation Available" */
  3443. 401, /* "X509v3 Policy Constraints" */
  3444. 747, /* "X509v3 Policy Mappings" */
  3445. 84, /* "X509v3 Private Key Usage Period" */
  3446. 85, /* "X509v3 Subject Alternative Name" */
  3447. 769, /* "X509v3 Subject Directory Attributes" */
  3448. 82, /* "X509v3 Subject Key Identifier" */
  3449. 184, /* "X9.57" */
  3450. 185, /* "X9.57 CM ?" */
  3451. 478, /* "aRecord" */
  3452. 289, /* "aaControls" */
  3453. 287, /* "ac-auditEntity" */
  3454. 397, /* "ac-proxying" */
  3455. 288, /* "ac-targeting" */
  3456. 446, /* "account" */
  3457. 364, /* "ad dvcs" */
  3458. 606, /* "additional verification" */
  3459. 419, /* "aes-128-cbc" */
  3460. 916, /* "aes-128-cbc-hmac-sha1" */
  3461. 896, /* "aes-128-ccm" */
  3462. 421, /* "aes-128-cfb" */
  3463. 650, /* "aes-128-cfb1" */
  3464. 653, /* "aes-128-cfb8" */
  3465. 904, /* "aes-128-ctr" */
  3466. 418, /* "aes-128-ecb" */
  3467. 895, /* "aes-128-gcm" */
  3468. 420, /* "aes-128-ofb" */
  3469. 913, /* "aes-128-xts" */
  3470. 423, /* "aes-192-cbc" */
  3471. 917, /* "aes-192-cbc-hmac-sha1" */
  3472. 899, /* "aes-192-ccm" */
  3473. 425, /* "aes-192-cfb" */
  3474. 651, /* "aes-192-cfb1" */
  3475. 654, /* "aes-192-cfb8" */
  3476. 905, /* "aes-192-ctr" */
  3477. 422, /* "aes-192-ecb" */
  3478. 898, /* "aes-192-gcm" */
  3479. 424, /* "aes-192-ofb" */
  3480. 427, /* "aes-256-cbc" */
  3481. 918, /* "aes-256-cbc-hmac-sha1" */
  3482. 902, /* "aes-256-ccm" */
  3483. 429, /* "aes-256-cfb" */
  3484. 652, /* "aes-256-cfb1" */
  3485. 655, /* "aes-256-cfb8" */
  3486. 906, /* "aes-256-ctr" */
  3487. 426, /* "aes-256-ecb" */
  3488. 901, /* "aes-256-gcm" */
  3489. 428, /* "aes-256-ofb" */
  3490. 914, /* "aes-256-xts" */
  3491. 376, /* "algorithm" */
  3492. 484, /* "associatedDomain" */
  3493. 485, /* "associatedName" */
  3494. 501, /* "audio" */
  3495. 882, /* "authorityRevocationList" */
  3496. 91, /* "bf-cbc" */
  3497. 93, /* "bf-cfb" */
  3498. 92, /* "bf-ecb" */
  3499. 94, /* "bf-ofb" */
  3500. 494, /* "buildingName" */
  3501. 860, /* "businessCategory" */
  3502. 691, /* "c2onb191v4" */
  3503. 692, /* "c2onb191v5" */
  3504. 697, /* "c2onb239v4" */
  3505. 698, /* "c2onb239v5" */
  3506. 684, /* "c2pnb163v1" */
  3507. 685, /* "c2pnb163v2" */
  3508. 686, /* "c2pnb163v3" */
  3509. 687, /* "c2pnb176v1" */
  3510. 693, /* "c2pnb208w1" */
  3511. 699, /* "c2pnb272w1" */
  3512. 700, /* "c2pnb304w1" */
  3513. 702, /* "c2pnb368w1" */
  3514. 688, /* "c2tnb191v1" */
  3515. 689, /* "c2tnb191v2" */
  3516. 690, /* "c2tnb191v3" */
  3517. 694, /* "c2tnb239v1" */
  3518. 695, /* "c2tnb239v2" */
  3519. 696, /* "c2tnb239v3" */
  3520. 701, /* "c2tnb359v1" */
  3521. 703, /* "c2tnb431r1" */
  3522. 881, /* "cACertificate" */
  3523. 483, /* "cNAMERecord" */
  3524. 751, /* "camellia-128-cbc" */
  3525. 757, /* "camellia-128-cfb" */
  3526. 760, /* "camellia-128-cfb1" */
  3527. 763, /* "camellia-128-cfb8" */
  3528. 754, /* "camellia-128-ecb" */
  3529. 766, /* "camellia-128-ofb" */
  3530. 752, /* "camellia-192-cbc" */
  3531. 758, /* "camellia-192-cfb" */
  3532. 761, /* "camellia-192-cfb1" */
  3533. 764, /* "camellia-192-cfb8" */
  3534. 755, /* "camellia-192-ecb" */
  3535. 767, /* "camellia-192-ofb" */
  3536. 753, /* "camellia-256-cbc" */
  3537. 759, /* "camellia-256-cfb" */
  3538. 762, /* "camellia-256-cfb1" */
  3539. 765, /* "camellia-256-cfb8" */
  3540. 756, /* "camellia-256-ecb" */
  3541. 768, /* "camellia-256-ofb" */
  3542. 443, /* "caseIgnoreIA5StringSyntax" */
  3543. 108, /* "cast5-cbc" */
  3544. 110, /* "cast5-cfb" */
  3545. 109, /* "cast5-ecb" */
  3546. 111, /* "cast5-ofb" */
  3547. 152, /* "certBag" */
  3548. 677, /* "certicom-arc" */
  3549. 517, /* "certificate extensions" */
  3550. 883, /* "certificateRevocationList" */
  3551. 54, /* "challengePassword" */
  3552. 407, /* "characteristic-two-field" */
  3553. 395, /* "clearance" */
  3554. 633, /* "cleartext track 2" */
  3555. 894, /* "cmac" */
  3556. 13, /* "commonName" */
  3557. 513, /* "content types" */
  3558. 50, /* "contentType" */
  3559. 53, /* "countersignature" */
  3560. 14, /* "countryName" */
  3561. 153, /* "crlBag" */
  3562. 884, /* "crossCertificatePair" */
  3563. 806, /* "cryptocom" */
  3564. 805, /* "cryptopro" */
  3565. 500, /* "dITRedirect" */
  3566. 451, /* "dNSDomain" */
  3567. 495, /* "dSAQuality" */
  3568. 434, /* "data" */
  3569. 390, /* "dcObject" */
  3570. 891, /* "deltaRevocationList" */
  3571. 31, /* "des-cbc" */
  3572. 643, /* "des-cdmf" */
  3573. 30, /* "des-cfb" */
  3574. 656, /* "des-cfb1" */
  3575. 657, /* "des-cfb8" */
  3576. 29, /* "des-ecb" */
  3577. 32, /* "des-ede" */
  3578. 43, /* "des-ede-cbc" */
  3579. 60, /* "des-ede-cfb" */
  3580. 62, /* "des-ede-ofb" */
  3581. 33, /* "des-ede3" */
  3582. 44, /* "des-ede3-cbc" */
  3583. 61, /* "des-ede3-cfb" */
  3584. 658, /* "des-ede3-cfb1" */
  3585. 659, /* "des-ede3-cfb8" */
  3586. 63, /* "des-ede3-ofb" */
  3587. 45, /* "des-ofb" */
  3588. 107, /* "description" */
  3589. 871, /* "destinationIndicator" */
  3590. 80, /* "desx-cbc" */
  3591. 28, /* "dhKeyAgreement" */
  3592. 11, /* "directory services (X.500)" */
  3593. 378, /* "directory services - algorithms" */
  3594. 887, /* "distinguishedName" */
  3595. 892, /* "dmdName" */
  3596. 174, /* "dnQualifier" */
  3597. 447, /* "document" */
  3598. 471, /* "documentAuthor" */
  3599. 468, /* "documentIdentifier" */
  3600. 472, /* "documentLocation" */
  3601. 502, /* "documentPublisher" */
  3602. 449, /* "documentSeries" */
  3603. 469, /* "documentTitle" */
  3604. 470, /* "documentVersion" */
  3605. 380, /* "dod" */
  3606. 391, /* "domainComponent" */
  3607. 452, /* "domainRelatedObject" */
  3608. 116, /* "dsaEncryption" */
  3609. 67, /* "dsaEncryption-old" */
  3610. 66, /* "dsaWithSHA" */
  3611. 113, /* "dsaWithSHA1" */
  3612. 70, /* "dsaWithSHA1-old" */
  3613. 802, /* "dsa_with_SHA224" */
  3614. 803, /* "dsa_with_SHA256" */
  3615. 297, /* "dvcs" */
  3616. 791, /* "ecdsa-with-Recommended" */
  3617. 416, /* "ecdsa-with-SHA1" */
  3618. 793, /* "ecdsa-with-SHA224" */
  3619. 794, /* "ecdsa-with-SHA256" */
  3620. 795, /* "ecdsa-with-SHA384" */
  3621. 796, /* "ecdsa-with-SHA512" */
  3622. 792, /* "ecdsa-with-Specified" */
  3623. 48, /* "emailAddress" */
  3624. 632, /* "encrypted track 2" */
  3625. 885, /* "enhancedSearchGuide" */
  3626. 56, /* "extendedCertificateAttributes" */
  3627. 867, /* "facsimileTelephoneNumber" */
  3628. 462, /* "favouriteDrink" */
  3629. 453, /* "friendlyCountry" */
  3630. 490, /* "friendlyCountryName" */
  3631. 156, /* "friendlyName" */
  3632. 631, /* "generate cryptogram" */
  3633. 509, /* "generationQualifier" */
  3634. 601, /* "generic cryptogram" */
  3635. 99, /* "givenName" */
  3636. 814, /* "gost89-cnt" */
  3637. 855, /* "hmac" */
  3638. 780, /* "hmac-md5" */
  3639. 781, /* "hmac-sha1" */
  3640. 797, /* "hmacWithMD5" */
  3641. 163, /* "hmacWithSHA1" */
  3642. 798, /* "hmacWithSHA224" */
  3643. 799, /* "hmacWithSHA256" */
  3644. 800, /* "hmacWithSHA384" */
  3645. 801, /* "hmacWithSHA512" */
  3646. 486, /* "homePostalAddress" */
  3647. 473, /* "homeTelephoneNumber" */
  3648. 466, /* "host" */
  3649. 889, /* "houseIdentifier" */
  3650. 442, /* "iA5StringSyntax" */
  3651. 381, /* "iana" */
  3652. 824, /* "id-Gost28147-89-CryptoPro-A-ParamSet" */
  3653. 825, /* "id-Gost28147-89-CryptoPro-B-ParamSet" */
  3654. 826, /* "id-Gost28147-89-CryptoPro-C-ParamSet" */
  3655. 827, /* "id-Gost28147-89-CryptoPro-D-ParamSet" */
  3656. 819, /* "id-Gost28147-89-CryptoPro-KeyMeshing" */
  3657. 829, /* "id-Gost28147-89-CryptoPro-Oscar-1-0-ParamSet" */
  3658. 828, /* "id-Gost28147-89-CryptoPro-Oscar-1-1-ParamSet" */
  3659. 830, /* "id-Gost28147-89-CryptoPro-RIC-1-ParamSet" */
  3660. 820, /* "id-Gost28147-89-None-KeyMeshing" */
  3661. 823, /* "id-Gost28147-89-TestParamSet" */
  3662. 840, /* "id-GostR3410-2001-CryptoPro-A-ParamSet" */
  3663. 841, /* "id-GostR3410-2001-CryptoPro-B-ParamSet" */
  3664. 842, /* "id-GostR3410-2001-CryptoPro-C-ParamSet" */
  3665. 843, /* "id-GostR3410-2001-CryptoPro-XchA-ParamSet" */
  3666. 844, /* "id-GostR3410-2001-CryptoPro-XchB-ParamSet" */
  3667. 839, /* "id-GostR3410-2001-TestParamSet" */
  3668. 832, /* "id-GostR3410-94-CryptoPro-A-ParamSet" */
  3669. 833, /* "id-GostR3410-94-CryptoPro-B-ParamSet" */
  3670. 834, /* "id-GostR3410-94-CryptoPro-C-ParamSet" */
  3671. 835, /* "id-GostR3410-94-CryptoPro-D-ParamSet" */
  3672. 836, /* "id-GostR3410-94-CryptoPro-XchA-ParamSet" */
  3673. 837, /* "id-GostR3410-94-CryptoPro-XchB-ParamSet" */
  3674. 838, /* "id-GostR3410-94-CryptoPro-XchC-ParamSet" */
  3675. 831, /* "id-GostR3410-94-TestParamSet" */
  3676. 845, /* "id-GostR3410-94-a" */
  3677. 846, /* "id-GostR3410-94-aBis" */
  3678. 847, /* "id-GostR3410-94-b" */
  3679. 848, /* "id-GostR3410-94-bBis" */
  3680. 822, /* "id-GostR3411-94-CryptoProParamSet" */
  3681. 821, /* "id-GostR3411-94-TestParamSet" */
  3682. 266, /* "id-aca" */
  3683. 355, /* "id-aca-accessIdentity" */
  3684. 354, /* "id-aca-authenticationInfo" */
  3685. 356, /* "id-aca-chargingIdentity" */
  3686. 399, /* "id-aca-encAttrs" */
  3687. 357, /* "id-aca-group" */
  3688. 358, /* "id-aca-role" */
  3689. 176, /* "id-ad" */
  3690. 788, /* "id-aes128-wrap" */
  3691. 897, /* "id-aes128-wrap-pad" */
  3692. 789, /* "id-aes192-wrap" */
  3693. 900, /* "id-aes192-wrap-pad" */
  3694. 790, /* "id-aes256-wrap" */
  3695. 903, /* "id-aes256-wrap-pad" */
  3696. 262, /* "id-alg" */
  3697. 893, /* "id-alg-PWRI-KEK" */
  3698. 323, /* "id-alg-des40" */
  3699. 326, /* "id-alg-dh-pop" */
  3700. 325, /* "id-alg-dh-sig-hmac-sha1" */
  3701. 324, /* "id-alg-noSignature" */
  3702. 907, /* "id-camellia128-wrap" */
  3703. 908, /* "id-camellia192-wrap" */
  3704. 909, /* "id-camellia256-wrap" */
  3705. 268, /* "id-cct" */
  3706. 361, /* "id-cct-PKIData" */
  3707. 362, /* "id-cct-PKIResponse" */
  3708. 360, /* "id-cct-crs" */
  3709. 81, /* "id-ce" */
  3710. 680, /* "id-characteristic-two-basis" */
  3711. 263, /* "id-cmc" */
  3712. 334, /* "id-cmc-addExtensions" */
  3713. 346, /* "id-cmc-confirmCertAcceptance" */
  3714. 330, /* "id-cmc-dataReturn" */
  3715. 336, /* "id-cmc-decryptedPOP" */
  3716. 335, /* "id-cmc-encryptedPOP" */
  3717. 339, /* "id-cmc-getCRL" */
  3718. 338, /* "id-cmc-getCert" */
  3719. 328, /* "id-cmc-identification" */
  3720. 329, /* "id-cmc-identityProof" */
  3721. 337, /* "id-cmc-lraPOPWitness" */
  3722. 344, /* "id-cmc-popLinkRandom" */
  3723. 345, /* "id-cmc-popLinkWitness" */
  3724. 343, /* "id-cmc-queryPending" */
  3725. 333, /* "id-cmc-recipientNonce" */
  3726. 341, /* "id-cmc-regInfo" */
  3727. 342, /* "id-cmc-responseInfo" */
  3728. 340, /* "id-cmc-revokeRequest" */
  3729. 332, /* "id-cmc-senderNonce" */
  3730. 327, /* "id-cmc-statusInfo" */
  3731. 331, /* "id-cmc-transactionId" */
  3732. 787, /* "id-ct-asciiTextWithCRLF" */
  3733. 408, /* "id-ecPublicKey" */
  3734. 508, /* "id-hex-multipart-message" */
  3735. 507, /* "id-hex-partial-message" */
  3736. 260, /* "id-it" */
  3737. 302, /* "id-it-caKeyUpdateInfo" */
  3738. 298, /* "id-it-caProtEncCert" */
  3739. 311, /* "id-it-confirmWaitTime" */
  3740. 303, /* "id-it-currentCRL" */
  3741. 300, /* "id-it-encKeyPairTypes" */
  3742. 310, /* "id-it-implicitConfirm" */
  3743. 308, /* "id-it-keyPairParamRep" */
  3744. 307, /* "id-it-keyPairParamReq" */
  3745. 312, /* "id-it-origPKIMessage" */
  3746. 301, /* "id-it-preferredSymmAlg" */
  3747. 309, /* "id-it-revPassphrase" */
  3748. 299, /* "id-it-signKeyPairTypes" */
  3749. 305, /* "id-it-subscriptionRequest" */
  3750. 306, /* "id-it-subscriptionResponse" */
  3751. 784, /* "id-it-suppLangTags" */
  3752. 304, /* "id-it-unsupportedOIDs" */
  3753. 128, /* "id-kp" */
  3754. 280, /* "id-mod-attribute-cert" */
  3755. 274, /* "id-mod-cmc" */
  3756. 277, /* "id-mod-cmp" */
  3757. 284, /* "id-mod-cmp2000" */
  3758. 273, /* "id-mod-crmf" */
  3759. 283, /* "id-mod-dvcs" */
  3760. 275, /* "id-mod-kea-profile-88" */
  3761. 276, /* "id-mod-kea-profile-93" */
  3762. 282, /* "id-mod-ocsp" */
  3763. 278, /* "id-mod-qualified-cert-88" */
  3764. 279, /* "id-mod-qualified-cert-93" */
  3765. 281, /* "id-mod-timestamp-protocol" */
  3766. 264, /* "id-on" */
  3767. 347, /* "id-on-personalData" */
  3768. 265, /* "id-pda" */
  3769. 352, /* "id-pda-countryOfCitizenship" */
  3770. 353, /* "id-pda-countryOfResidence" */
  3771. 348, /* "id-pda-dateOfBirth" */
  3772. 351, /* "id-pda-gender" */
  3773. 349, /* "id-pda-placeOfBirth" */
  3774. 175, /* "id-pe" */
  3775. 261, /* "id-pkip" */
  3776. 258, /* "id-pkix-mod" */
  3777. 269, /* "id-pkix1-explicit-88" */
  3778. 271, /* "id-pkix1-explicit-93" */
  3779. 270, /* "id-pkix1-implicit-88" */
  3780. 272, /* "id-pkix1-implicit-93" */
  3781. 662, /* "id-ppl" */
  3782. 267, /* "id-qcs" */
  3783. 359, /* "id-qcs-pkixQCSyntax-v1" */
  3784. 259, /* "id-qt" */
  3785. 313, /* "id-regCtrl" */
  3786. 316, /* "id-regCtrl-authenticator" */
  3787. 319, /* "id-regCtrl-oldCertID" */
  3788. 318, /* "id-regCtrl-pkiArchiveOptions" */
  3789. 317, /* "id-regCtrl-pkiPublicationInfo" */
  3790. 320, /* "id-regCtrl-protocolEncrKey" */
  3791. 315, /* "id-regCtrl-regToken" */
  3792. 314, /* "id-regInfo" */
  3793. 322, /* "id-regInfo-certReq" */
  3794. 321, /* "id-regInfo-utf8Pairs" */
  3795. 191, /* "id-smime-aa" */
  3796. 215, /* "id-smime-aa-contentHint" */
  3797. 218, /* "id-smime-aa-contentIdentifier" */
  3798. 221, /* "id-smime-aa-contentReference" */
  3799. 240, /* "id-smime-aa-dvcs-dvc" */
  3800. 217, /* "id-smime-aa-encapContentType" */
  3801. 222, /* "id-smime-aa-encrypKeyPref" */
  3802. 220, /* "id-smime-aa-equivalentLabels" */
  3803. 232, /* "id-smime-aa-ets-CertificateRefs" */
  3804. 233, /* "id-smime-aa-ets-RevocationRefs" */
  3805. 238, /* "id-smime-aa-ets-archiveTimeStamp" */
  3806. 237, /* "id-smime-aa-ets-certCRLTimestamp" */
  3807. 234, /* "id-smime-aa-ets-certValues" */
  3808. 227, /* "id-smime-aa-ets-commitmentType" */
  3809. 231, /* "id-smime-aa-ets-contentTimestamp" */
  3810. 236, /* "id-smime-aa-ets-escTimeStamp" */
  3811. 230, /* "id-smime-aa-ets-otherSigCert" */
  3812. 235, /* "id-smime-aa-ets-revocationValues" */
  3813. 226, /* "id-smime-aa-ets-sigPolicyId" */
  3814. 229, /* "id-smime-aa-ets-signerAttr" */
  3815. 228, /* "id-smime-aa-ets-signerLocation" */
  3816. 219, /* "id-smime-aa-macValue" */
  3817. 214, /* "id-smime-aa-mlExpandHistory" */
  3818. 216, /* "id-smime-aa-msgSigDigest" */
  3819. 212, /* "id-smime-aa-receiptRequest" */
  3820. 213, /* "id-smime-aa-securityLabel" */
  3821. 239, /* "id-smime-aa-signatureType" */
  3822. 223, /* "id-smime-aa-signingCertificate" */
  3823. 224, /* "id-smime-aa-smimeEncryptCerts" */
  3824. 225, /* "id-smime-aa-timeStampToken" */
  3825. 192, /* "id-smime-alg" */
  3826. 243, /* "id-smime-alg-3DESwrap" */
  3827. 246, /* "id-smime-alg-CMS3DESwrap" */
  3828. 247, /* "id-smime-alg-CMSRC2wrap" */
  3829. 245, /* "id-smime-alg-ESDH" */
  3830. 241, /* "id-smime-alg-ESDHwith3DES" */
  3831. 242, /* "id-smime-alg-ESDHwithRC2" */
  3832. 244, /* "id-smime-alg-RC2wrap" */
  3833. 193, /* "id-smime-cd" */
  3834. 248, /* "id-smime-cd-ldap" */
  3835. 190, /* "id-smime-ct" */
  3836. 210, /* "id-smime-ct-DVCSRequestData" */
  3837. 211, /* "id-smime-ct-DVCSResponseData" */
  3838. 208, /* "id-smime-ct-TDTInfo" */
  3839. 207, /* "id-smime-ct-TSTInfo" */
  3840. 205, /* "id-smime-ct-authData" */
  3841. 786, /* "id-smime-ct-compressedData" */
  3842. 209, /* "id-smime-ct-contentInfo" */
  3843. 206, /* "id-smime-ct-publishCert" */
  3844. 204, /* "id-smime-ct-receipt" */
  3845. 195, /* "id-smime-cti" */
  3846. 255, /* "id-smime-cti-ets-proofOfApproval" */
  3847. 256, /* "id-smime-cti-ets-proofOfCreation" */
  3848. 253, /* "id-smime-cti-ets-proofOfDelivery" */
  3849. 251, /* "id-smime-cti-ets-proofOfOrigin" */
  3850. 252, /* "id-smime-cti-ets-proofOfReceipt" */
  3851. 254, /* "id-smime-cti-ets-proofOfSender" */
  3852. 189, /* "id-smime-mod" */
  3853. 196, /* "id-smime-mod-cms" */
  3854. 197, /* "id-smime-mod-ess" */
  3855. 202, /* "id-smime-mod-ets-eSigPolicy-88" */
  3856. 203, /* "id-smime-mod-ets-eSigPolicy-97" */
  3857. 200, /* "id-smime-mod-ets-eSignature-88" */
  3858. 201, /* "id-smime-mod-ets-eSignature-97" */
  3859. 199, /* "id-smime-mod-msg-v3" */
  3860. 198, /* "id-smime-mod-oid" */
  3861. 194, /* "id-smime-spq" */
  3862. 250, /* "id-smime-spq-ets-sqt-unotice" */
  3863. 249, /* "id-smime-spq-ets-sqt-uri" */
  3864. 34, /* "idea-cbc" */
  3865. 35, /* "idea-cfb" */
  3866. 36, /* "idea-ecb" */
  3867. 46, /* "idea-ofb" */
  3868. 676, /* "identified-organization" */
  3869. 461, /* "info" */
  3870. 101, /* "initials" */
  3871. 869, /* "internationaliSDNNumber" */
  3872. 749, /* "ipsec3" */
  3873. 750, /* "ipsec4" */
  3874. 181, /* "iso" */
  3875. 623, /* "issuer capabilities" */
  3876. 645, /* "itu-t" */
  3877. 492, /* "janetMailbox" */
  3878. 646, /* "joint-iso-itu-t" */
  3879. 150, /* "keyBag" */
  3880. 773, /* "kisa" */
  3881. 477, /* "lastModifiedBy" */
  3882. 476, /* "lastModifiedTime" */
  3883. 157, /* "localKeyID" */
  3884. 15, /* "localityName" */
  3885. 480, /* "mXRecord" */
  3886. 493, /* "mailPreferenceOption" */
  3887. 467, /* "manager" */
  3888. 3, /* "md2" */
  3889. 7, /* "md2WithRSAEncryption" */
  3890. 257, /* "md4" */
  3891. 396, /* "md4WithRSAEncryption" */
  3892. 4, /* "md5" */
  3893. 114, /* "md5-sha1" */
  3894. 104, /* "md5WithRSA" */
  3895. 8, /* "md5WithRSAEncryption" */
  3896. 95, /* "mdc2" */
  3897. 96, /* "mdc2WithRSA" */
  3898. 875, /* "member" */
  3899. 602, /* "merchant initiated auth" */
  3900. 514, /* "message extensions" */
  3901. 51, /* "messageDigest" */
  3902. 911, /* "mgf1" */
  3903. 506, /* "mime-mhs-bodies" */
  3904. 505, /* "mime-mhs-headings" */
  3905. 488, /* "mobileTelephoneNumber" */
  3906. 481, /* "nSRecord" */
  3907. 173, /* "name" */
  3908. 681, /* "onBasis" */
  3909. 379, /* "org" */
  3910. 17, /* "organizationName" */
  3911. 491, /* "organizationalStatus" */
  3912. 18, /* "organizationalUnitName" */
  3913. 475, /* "otherMailbox" */
  3914. 876, /* "owner" */
  3915. 489, /* "pagerTelephoneNumber" */
  3916. 782, /* "password based MAC" */
  3917. 374, /* "path" */
  3918. 621, /* "payment gateway capabilities" */
  3919. 9, /* "pbeWithMD2AndDES-CBC" */
  3920. 168, /* "pbeWithMD2AndRC2-CBC" */
  3921. 112, /* "pbeWithMD5AndCast5CBC" */
  3922. 10, /* "pbeWithMD5AndDES-CBC" */
  3923. 169, /* "pbeWithMD5AndRC2-CBC" */
  3924. 148, /* "pbeWithSHA1And128BitRC2-CBC" */
  3925. 144, /* "pbeWithSHA1And128BitRC4" */
  3926. 147, /* "pbeWithSHA1And2-KeyTripleDES-CBC" */
  3927. 146, /* "pbeWithSHA1And3-KeyTripleDES-CBC" */
  3928. 149, /* "pbeWithSHA1And40BitRC2-CBC" */
  3929. 145, /* "pbeWithSHA1And40BitRC4" */
  3930. 170, /* "pbeWithSHA1AndDES-CBC" */
  3931. 68, /* "pbeWithSHA1AndRC2-CBC" */
  3932. 499, /* "personalSignature" */
  3933. 487, /* "personalTitle" */
  3934. 464, /* "photo" */
  3935. 863, /* "physicalDeliveryOfficeName" */
  3936. 437, /* "pilot" */
  3937. 439, /* "pilotAttributeSyntax" */
  3938. 438, /* "pilotAttributeType" */
  3939. 479, /* "pilotAttributeType27" */
  3940. 456, /* "pilotDSA" */
  3941. 441, /* "pilotGroups" */
  3942. 444, /* "pilotObject" */
  3943. 440, /* "pilotObjectClass" */
  3944. 455, /* "pilotOrganization" */
  3945. 445, /* "pilotPerson" */
  3946. 186, /* "pkcs1" */
  3947. 27, /* "pkcs3" */
  3948. 187, /* "pkcs5" */
  3949. 20, /* "pkcs7" */
  3950. 21, /* "pkcs7-data" */
  3951. 25, /* "pkcs7-digestData" */
  3952. 26, /* "pkcs7-encryptedData" */
  3953. 23, /* "pkcs7-envelopedData" */
  3954. 24, /* "pkcs7-signedAndEnvelopedData" */
  3955. 22, /* "pkcs7-signedData" */
  3956. 151, /* "pkcs8ShroudedKeyBag" */
  3957. 47, /* "pkcs9" */
  3958. 862, /* "postOfficeBox" */
  3959. 861, /* "postalAddress" */
  3960. 661, /* "postalCode" */
  3961. 683, /* "ppBasis" */
  3962. 872, /* "preferredDeliveryMethod" */
  3963. 873, /* "presentationAddress" */
  3964. 406, /* "prime-field" */
  3965. 409, /* "prime192v1" */
  3966. 410, /* "prime192v2" */
  3967. 411, /* "prime192v3" */
  3968. 412, /* "prime239v1" */
  3969. 413, /* "prime239v2" */
  3970. 414, /* "prime239v3" */
  3971. 415, /* "prime256v1" */
  3972. 886, /* "protocolInformation" */
  3973. 510, /* "pseudonym" */
  3974. 435, /* "pss" */
  3975. 286, /* "qcStatements" */
  3976. 457, /* "qualityLabelledData" */
  3977. 450, /* "rFC822localPart" */
  3978. 98, /* "rc2-40-cbc" */
  3979. 166, /* "rc2-64-cbc" */
  3980. 37, /* "rc2-cbc" */
  3981. 39, /* "rc2-cfb" */
  3982. 38, /* "rc2-ecb" */
  3983. 40, /* "rc2-ofb" */
  3984. 5, /* "rc4" */
  3985. 97, /* "rc4-40" */
  3986. 915, /* "rc4-hmac-md5" */
  3987. 120, /* "rc5-cbc" */
  3988. 122, /* "rc5-cfb" */
  3989. 121, /* "rc5-ecb" */
  3990. 123, /* "rc5-ofb" */
  3991. 870, /* "registeredAddress" */
  3992. 460, /* "rfc822Mailbox" */
  3993. 117, /* "ripemd160" */
  3994. 119, /* "ripemd160WithRSA" */
  3995. 400, /* "role" */
  3996. 877, /* "roleOccupant" */
  3997. 448, /* "room" */
  3998. 463, /* "roomNumber" */
  3999. 19, /* "rsa" */
  4000. 6, /* "rsaEncryption" */
  4001. 644, /* "rsaOAEPEncryptionSET" */
  4002. 377, /* "rsaSignature" */
  4003. 912, /* "rsassaPss" */
  4004. 124, /* "run length compression" */
  4005. 482, /* "sOARecord" */
  4006. 155, /* "safeContentsBag" */
  4007. 291, /* "sbgp-autonomousSysNum" */
  4008. 290, /* "sbgp-ipAddrBlock" */
  4009. 292, /* "sbgp-routerIdentifier" */
  4010. 159, /* "sdsiCertificate" */
  4011. 859, /* "searchGuide" */
  4012. 704, /* "secp112r1" */
  4013. 705, /* "secp112r2" */
  4014. 706, /* "secp128r1" */
  4015. 707, /* "secp128r2" */
  4016. 708, /* "secp160k1" */
  4017. 709, /* "secp160r1" */
  4018. 710, /* "secp160r2" */
  4019. 711, /* "secp192k1" */
  4020. 712, /* "secp224k1" */
  4021. 713, /* "secp224r1" */
  4022. 714, /* "secp256k1" */
  4023. 715, /* "secp384r1" */
  4024. 716, /* "secp521r1" */
  4025. 154, /* "secretBag" */
  4026. 474, /* "secretary" */
  4027. 717, /* "sect113r1" */
  4028. 718, /* "sect113r2" */
  4029. 719, /* "sect131r1" */
  4030. 720, /* "sect131r2" */
  4031. 721, /* "sect163k1" */
  4032. 722, /* "sect163r1" */
  4033. 723, /* "sect163r2" */
  4034. 724, /* "sect193r1" */
  4035. 725, /* "sect193r2" */
  4036. 726, /* "sect233k1" */
  4037. 727, /* "sect233r1" */
  4038. 728, /* "sect239k1" */
  4039. 729, /* "sect283k1" */
  4040. 730, /* "sect283r1" */
  4041. 731, /* "sect409k1" */
  4042. 732, /* "sect409r1" */
  4043. 733, /* "sect571k1" */
  4044. 734, /* "sect571r1" */
  4045. 635, /* "secure device signature" */
  4046. 878, /* "seeAlso" */
  4047. 777, /* "seed-cbc" */
  4048. 779, /* "seed-cfb" */
  4049. 776, /* "seed-ecb" */
  4050. 778, /* "seed-ofb" */
  4051. 105, /* "serialNumber" */
  4052. 625, /* "set-addPolicy" */
  4053. 515, /* "set-attr" */
  4054. 518, /* "set-brand" */
  4055. 638, /* "set-brand-AmericanExpress" */
  4056. 637, /* "set-brand-Diners" */
  4057. 636, /* "set-brand-IATA-ATA" */
  4058. 639, /* "set-brand-JCB" */
  4059. 641, /* "set-brand-MasterCard" */
  4060. 642, /* "set-brand-Novus" */
  4061. 640, /* "set-brand-Visa" */
  4062. 516, /* "set-policy" */
  4063. 607, /* "set-policy-root" */
  4064. 624, /* "set-rootKeyThumb" */
  4065. 620, /* "setAttr-Cert" */
  4066. 628, /* "setAttr-IssCap-CVM" */
  4067. 630, /* "setAttr-IssCap-Sig" */
  4068. 629, /* "setAttr-IssCap-T2" */
  4069. 627, /* "setAttr-Token-B0Prime" */
  4070. 626, /* "setAttr-Token-EMV" */
  4071. 622, /* "setAttr-TokenType" */
  4072. 619, /* "setCext-IssuerCapabilities" */
  4073. 615, /* "setCext-PGWYcapabilities" */
  4074. 616, /* "setCext-TokenIdentifier" */
  4075. 618, /* "setCext-TokenType" */
  4076. 617, /* "setCext-Track2Data" */
  4077. 611, /* "setCext-cCertRequired" */
  4078. 609, /* "setCext-certType" */
  4079. 608, /* "setCext-hashedRoot" */
  4080. 610, /* "setCext-merchData" */
  4081. 613, /* "setCext-setExt" */
  4082. 614, /* "setCext-setQualf" */
  4083. 612, /* "setCext-tunneling" */
  4084. 540, /* "setct-AcqCardCodeMsg" */
  4085. 576, /* "setct-AcqCardCodeMsgTBE" */
  4086. 570, /* "setct-AuthReqTBE" */
  4087. 534, /* "setct-AuthReqTBS" */
  4088. 527, /* "setct-AuthResBaggage" */
  4089. 571, /* "setct-AuthResTBE" */
  4090. 572, /* "setct-AuthResTBEX" */
  4091. 535, /* "setct-AuthResTBS" */
  4092. 536, /* "setct-AuthResTBSX" */
  4093. 528, /* "setct-AuthRevReqBaggage" */
  4094. 577, /* "setct-AuthRevReqTBE" */
  4095. 541, /* "setct-AuthRevReqTBS" */
  4096. 529, /* "setct-AuthRevResBaggage" */
  4097. 542, /* "setct-AuthRevResData" */
  4098. 578, /* "setct-AuthRevResTBE" */
  4099. 579, /* "setct-AuthRevResTBEB" */
  4100. 543, /* "setct-AuthRevResTBS" */
  4101. 573, /* "setct-AuthTokenTBE" */
  4102. 537, /* "setct-AuthTokenTBS" */
  4103. 600, /* "setct-BCIDistributionTBS" */
  4104. 558, /* "setct-BatchAdminReqData" */
  4105. 592, /* "setct-BatchAdminReqTBE" */
  4106. 559, /* "setct-BatchAdminResData" */
  4107. 593, /* "setct-BatchAdminResTBE" */
  4108. 599, /* "setct-CRLNotificationResTBS" */
  4109. 598, /* "setct-CRLNotificationTBS" */
  4110. 580, /* "setct-CapReqTBE" */
  4111. 581, /* "setct-CapReqTBEX" */
  4112. 544, /* "setct-CapReqTBS" */
  4113. 545, /* "setct-CapReqTBSX" */
  4114. 546, /* "setct-CapResData" */
  4115. 582, /* "setct-CapResTBE" */
  4116. 583, /* "setct-CapRevReqTBE" */
  4117. 584, /* "setct-CapRevReqTBEX" */
  4118. 547, /* "setct-CapRevReqTBS" */
  4119. 548, /* "setct-CapRevReqTBSX" */
  4120. 549, /* "setct-CapRevResData" */
  4121. 585, /* "setct-CapRevResTBE" */
  4122. 538, /* "setct-CapTokenData" */
  4123. 530, /* "setct-CapTokenSeq" */
  4124. 574, /* "setct-CapTokenTBE" */
  4125. 575, /* "setct-CapTokenTBEX" */
  4126. 539, /* "setct-CapTokenTBS" */
  4127. 560, /* "setct-CardCInitResTBS" */
  4128. 566, /* "setct-CertInqReqTBS" */
  4129. 563, /* "setct-CertReqData" */
  4130. 595, /* "setct-CertReqTBE" */
  4131. 596, /* "setct-CertReqTBEX" */
  4132. 564, /* "setct-CertReqTBS" */
  4133. 565, /* "setct-CertResData" */
  4134. 597, /* "setct-CertResTBE" */
  4135. 586, /* "setct-CredReqTBE" */
  4136. 587, /* "setct-CredReqTBEX" */
  4137. 550, /* "setct-CredReqTBS" */
  4138. 551, /* "setct-CredReqTBSX" */
  4139. 552, /* "setct-CredResData" */
  4140. 588, /* "setct-CredResTBE" */
  4141. 589, /* "setct-CredRevReqTBE" */
  4142. 590, /* "setct-CredRevReqTBEX" */
  4143. 553, /* "setct-CredRevReqTBS" */
  4144. 554, /* "setct-CredRevReqTBSX" */
  4145. 555, /* "setct-CredRevResData" */
  4146. 591, /* "setct-CredRevResTBE" */
  4147. 567, /* "setct-ErrorTBS" */
  4148. 526, /* "setct-HODInput" */
  4149. 561, /* "setct-MeAqCInitResTBS" */
  4150. 522, /* "setct-OIData" */
  4151. 519, /* "setct-PANData" */
  4152. 521, /* "setct-PANOnly" */
  4153. 520, /* "setct-PANToken" */
  4154. 556, /* "setct-PCertReqData" */
  4155. 557, /* "setct-PCertResTBS" */
  4156. 523, /* "setct-PI" */
  4157. 532, /* "setct-PI-TBS" */
  4158. 524, /* "setct-PIData" */
  4159. 525, /* "setct-PIDataUnsigned" */
  4160. 568, /* "setct-PIDualSignedTBE" */
  4161. 569, /* "setct-PIUnsignedTBE" */
  4162. 531, /* "setct-PInitResData" */
  4163. 533, /* "setct-PResData" */
  4164. 594, /* "setct-RegFormReqTBE" */
  4165. 562, /* "setct-RegFormResTBS" */
  4166. 604, /* "setext-pinAny" */
  4167. 603, /* "setext-pinSecure" */
  4168. 605, /* "setext-track2" */
  4169. 41, /* "sha" */
  4170. 64, /* "sha1" */
  4171. 115, /* "sha1WithRSA" */
  4172. 65, /* "sha1WithRSAEncryption" */
  4173. 675, /* "sha224" */
  4174. 671, /* "sha224WithRSAEncryption" */
  4175. 672, /* "sha256" */
  4176. 668, /* "sha256WithRSAEncryption" */
  4177. 673, /* "sha384" */
  4178. 669, /* "sha384WithRSAEncryption" */
  4179. 674, /* "sha512" */
  4180. 670, /* "sha512WithRSAEncryption" */
  4181. 42, /* "shaWithRSAEncryption" */
  4182. 52, /* "signingTime" */
  4183. 454, /* "simpleSecurityObject" */
  4184. 496, /* "singleLevelQuality" */
  4185. 16, /* "stateOrProvinceName" */
  4186. 660, /* "streetAddress" */
  4187. 498, /* "subtreeMaximumQuality" */
  4188. 497, /* "subtreeMinimumQuality" */
  4189. 890, /* "supportedAlgorithms" */
  4190. 874, /* "supportedApplicationContext" */
  4191. 100, /* "surname" */
  4192. 864, /* "telephoneNumber" */
  4193. 866, /* "teletexTerminalIdentifier" */
  4194. 865, /* "telexNumber" */
  4195. 459, /* "textEncodedORAddress" */
  4196. 293, /* "textNotice" */
  4197. 106, /* "title" */
  4198. 682, /* "tpBasis" */
  4199. 436, /* "ucl" */
  4200. 0, /* "undefined" */
  4201. 888, /* "uniqueMember" */
  4202. 55, /* "unstructuredAddress" */
  4203. 49, /* "unstructuredName" */
  4204. 880, /* "userCertificate" */
  4205. 465, /* "userClass" */
  4206. 458, /* "userId" */
  4207. 879, /* "userPassword" */
  4208. 373, /* "valid" */
  4209. 678, /* "wap" */
  4210. 679, /* "wap-wsg" */
  4211. 735, /* "wap-wsg-idm-ecid-wtls1" */
  4212. 743, /* "wap-wsg-idm-ecid-wtls10" */
  4213. 744, /* "wap-wsg-idm-ecid-wtls11" */
  4214. 745, /* "wap-wsg-idm-ecid-wtls12" */
  4215. 736, /* "wap-wsg-idm-ecid-wtls3" */
  4216. 737, /* "wap-wsg-idm-ecid-wtls4" */
  4217. 738, /* "wap-wsg-idm-ecid-wtls5" */
  4218. 739, /* "wap-wsg-idm-ecid-wtls6" */
  4219. 740, /* "wap-wsg-idm-ecid-wtls7" */
  4220. 741, /* "wap-wsg-idm-ecid-wtls8" */
  4221. 742, /* "wap-wsg-idm-ecid-wtls9" */
  4222. 804, /* "whirlpool" */
  4223. 868, /* "x121Address" */
  4224. 503, /* "x500UniqueIdentifier" */
  4225. 158, /* "x509Certificate" */
  4226. 160, /* "x509Crl" */
  4227. 125, /* "zlib compression" */
  4228. };
  4229. static const unsigned int obj_objs[NUM_OBJ]={
  4230. 0, /* OBJ_undef 0 */
  4231. 393, /* OBJ_joint_iso_ccitt OBJ_joint_iso_itu_t */
  4232. 404, /* OBJ_ccitt OBJ_itu_t */
  4233. 645, /* OBJ_itu_t 0 */
  4234. 434, /* OBJ_data 0 9 */
  4235. 181, /* OBJ_iso 1 */
  4236. 182, /* OBJ_member_body 1 2 */
  4237. 379, /* OBJ_org 1 3 */
  4238. 676, /* OBJ_identified_organization 1 3 */
  4239. 646, /* OBJ_joint_iso_itu_t 2 */
  4240. 11, /* OBJ_X500 2 5 */
  4241. 647, /* OBJ_international_organizations 2 23 */
  4242. 380, /* OBJ_dod 1 3 6 */
  4243. 12, /* OBJ_X509 2 5 4 */
  4244. 378, /* OBJ_X500algorithms 2 5 8 */
  4245. 81, /* OBJ_id_ce 2 5 29 */
  4246. 512, /* OBJ_id_set 2 23 42 */
  4247. 678, /* OBJ_wap 2 23 43 */
  4248. 435, /* OBJ_pss 0 9 2342 */
  4249. 183, /* OBJ_ISO_US 1 2 840 */
  4250. 381, /* OBJ_iana 1 3 6 1 */
  4251. 677, /* OBJ_certicom_arc 1 3 132 */
  4252. 394, /* OBJ_selected_attribute_types 2 5 1 5 */
  4253. 13, /* OBJ_commonName 2 5 4 3 */
  4254. 100, /* OBJ_surname 2 5 4 4 */
  4255. 105, /* OBJ_serialNumber 2 5 4 5 */
  4256. 14, /* OBJ_countryName 2 5 4 6 */
  4257. 15, /* OBJ_localityName 2 5 4 7 */
  4258. 16, /* OBJ_stateOrProvinceName 2 5 4 8 */
  4259. 660, /* OBJ_streetAddress 2 5 4 9 */
  4260. 17, /* OBJ_organizationName 2 5 4 10 */
  4261. 18, /* OBJ_organizationalUnitName 2 5 4 11 */
  4262. 106, /* OBJ_title 2 5 4 12 */
  4263. 107, /* OBJ_description 2 5 4 13 */
  4264. 859, /* OBJ_searchGuide 2 5 4 14 */
  4265. 860, /* OBJ_businessCategory 2 5 4 15 */
  4266. 861, /* OBJ_postalAddress 2 5 4 16 */
  4267. 661, /* OBJ_postalCode 2 5 4 17 */
  4268. 862, /* OBJ_postOfficeBox 2 5 4 18 */
  4269. 863, /* OBJ_physicalDeliveryOfficeName 2 5 4 19 */
  4270. 864, /* OBJ_telephoneNumber 2 5 4 20 */
  4271. 865, /* OBJ_telexNumber 2 5 4 21 */
  4272. 866, /* OBJ_teletexTerminalIdentifier 2 5 4 22 */
  4273. 867, /* OBJ_facsimileTelephoneNumber 2 5 4 23 */
  4274. 868, /* OBJ_x121Address 2 5 4 24 */
  4275. 869, /* OBJ_internationaliSDNNumber 2 5 4 25 */
  4276. 870, /* OBJ_registeredAddress 2 5 4 26 */
  4277. 871, /* OBJ_destinationIndicator 2 5 4 27 */
  4278. 872, /* OBJ_preferredDeliveryMethod 2 5 4 28 */
  4279. 873, /* OBJ_presentationAddress 2 5 4 29 */
  4280. 874, /* OBJ_supportedApplicationContext 2 5 4 30 */
  4281. 875, /* OBJ_member 2 5 4 31 */
  4282. 876, /* OBJ_owner 2 5 4 32 */
  4283. 877, /* OBJ_roleOccupant 2 5 4 33 */
  4284. 878, /* OBJ_seeAlso 2 5 4 34 */
  4285. 879, /* OBJ_userPassword 2 5 4 35 */
  4286. 880, /* OBJ_userCertificate 2 5 4 36 */
  4287. 881, /* OBJ_cACertificate 2 5 4 37 */
  4288. 882, /* OBJ_authorityRevocationList 2 5 4 38 */
  4289. 883, /* OBJ_certificateRevocationList 2 5 4 39 */
  4290. 884, /* OBJ_crossCertificatePair 2 5 4 40 */
  4291. 173, /* OBJ_name 2 5 4 41 */
  4292. 99, /* OBJ_givenName 2 5 4 42 */
  4293. 101, /* OBJ_initials 2 5 4 43 */
  4294. 509, /* OBJ_generationQualifier 2 5 4 44 */
  4295. 503, /* OBJ_x500UniqueIdentifier 2 5 4 45 */
  4296. 174, /* OBJ_dnQualifier 2 5 4 46 */
  4297. 885, /* OBJ_enhancedSearchGuide 2 5 4 47 */
  4298. 886, /* OBJ_protocolInformation 2 5 4 48 */
  4299. 887, /* OBJ_distinguishedName 2 5 4 49 */
  4300. 888, /* OBJ_uniqueMember 2 5 4 50 */
  4301. 889, /* OBJ_houseIdentifier 2 5 4 51 */
  4302. 890, /* OBJ_supportedAlgorithms 2 5 4 52 */
  4303. 891, /* OBJ_deltaRevocationList 2 5 4 53 */
  4304. 892, /* OBJ_dmdName 2 5 4 54 */
  4305. 510, /* OBJ_pseudonym 2 5 4 65 */
  4306. 400, /* OBJ_role 2 5 4 72 */
  4307. 769, /* OBJ_subject_directory_attributes 2 5 29 9 */
  4308. 82, /* OBJ_subject_key_identifier 2 5 29 14 */
  4309. 83, /* OBJ_key_usage 2 5 29 15 */
  4310. 84, /* OBJ_private_key_usage_period 2 5 29 16 */
  4311. 85, /* OBJ_subject_alt_name 2 5 29 17 */
  4312. 86, /* OBJ_issuer_alt_name 2 5 29 18 */
  4313. 87, /* OBJ_basic_constraints 2 5 29 19 */
  4314. 88, /* OBJ_crl_number 2 5 29 20 */
  4315. 141, /* OBJ_crl_reason 2 5 29 21 */
  4316. 430, /* OBJ_hold_instruction_code 2 5 29 23 */
  4317. 142, /* OBJ_invalidity_date 2 5 29 24 */
  4318. 140, /* OBJ_delta_crl 2 5 29 27 */
  4319. 770, /* OBJ_issuing_distribution_point 2 5 29 28 */
  4320. 771, /* OBJ_certificate_issuer 2 5 29 29 */
  4321. 666, /* OBJ_name_constraints 2 5 29 30 */
  4322. 103, /* OBJ_crl_distribution_points 2 5 29 31 */
  4323. 89, /* OBJ_certificate_policies 2 5 29 32 */
  4324. 747, /* OBJ_policy_mappings 2 5 29 33 */
  4325. 90, /* OBJ_authority_key_identifier 2 5 29 35 */
  4326. 401, /* OBJ_policy_constraints 2 5 29 36 */
  4327. 126, /* OBJ_ext_key_usage 2 5 29 37 */
  4328. 857, /* OBJ_freshest_crl 2 5 29 46 */
  4329. 748, /* OBJ_inhibit_any_policy 2 5 29 54 */
  4330. 402, /* OBJ_target_information 2 5 29 55 */
  4331. 403, /* OBJ_no_rev_avail 2 5 29 56 */
  4332. 513, /* OBJ_set_ctype 2 23 42 0 */
  4333. 514, /* OBJ_set_msgExt 2 23 42 1 */
  4334. 515, /* OBJ_set_attr 2 23 42 3 */
  4335. 516, /* OBJ_set_policy 2 23 42 5 */
  4336. 517, /* OBJ_set_certExt 2 23 42 7 */
  4337. 518, /* OBJ_set_brand 2 23 42 8 */
  4338. 679, /* OBJ_wap_wsg 2 23 43 1 */
  4339. 382, /* OBJ_Directory 1 3 6 1 1 */
  4340. 383, /* OBJ_Management 1 3 6 1 2 */
  4341. 384, /* OBJ_Experimental 1 3 6 1 3 */
  4342. 385, /* OBJ_Private 1 3 6 1 4 */
  4343. 386, /* OBJ_Security 1 3 6 1 5 */
  4344. 387, /* OBJ_SNMPv2 1 3 6 1 6 */
  4345. 388, /* OBJ_Mail 1 3 6 1 7 */
  4346. 376, /* OBJ_algorithm 1 3 14 3 2 */
  4347. 395, /* OBJ_clearance 2 5 1 5 55 */
  4348. 19, /* OBJ_rsa 2 5 8 1 1 */
  4349. 96, /* OBJ_mdc2WithRSA 2 5 8 3 100 */
  4350. 95, /* OBJ_mdc2 2 5 8 3 101 */
  4351. 746, /* OBJ_any_policy 2 5 29 32 0 */
  4352. 910, /* OBJ_anyExtendedKeyUsage 2 5 29 37 0 */
  4353. 519, /* OBJ_setct_PANData 2 23 42 0 0 */
  4354. 520, /* OBJ_setct_PANToken 2 23 42 0 1 */
  4355. 521, /* OBJ_setct_PANOnly 2 23 42 0 2 */
  4356. 522, /* OBJ_setct_OIData 2 23 42 0 3 */
  4357. 523, /* OBJ_setct_PI 2 23 42 0 4 */
  4358. 524, /* OBJ_setct_PIData 2 23 42 0 5 */
  4359. 525, /* OBJ_setct_PIDataUnsigned 2 23 42 0 6 */
  4360. 526, /* OBJ_setct_HODInput 2 23 42 0 7 */
  4361. 527, /* OBJ_setct_AuthResBaggage 2 23 42 0 8 */
  4362. 528, /* OBJ_setct_AuthRevReqBaggage 2 23 42 0 9 */
  4363. 529, /* OBJ_setct_AuthRevResBaggage 2 23 42 0 10 */
  4364. 530, /* OBJ_setct_CapTokenSeq 2 23 42 0 11 */
  4365. 531, /* OBJ_setct_PInitResData 2 23 42 0 12 */
  4366. 532, /* OBJ_setct_PI_TBS 2 23 42 0 13 */
  4367. 533, /* OBJ_setct_PResData 2 23 42 0 14 */
  4368. 534, /* OBJ_setct_AuthReqTBS 2 23 42 0 16 */
  4369. 535, /* OBJ_setct_AuthResTBS 2 23 42 0 17 */
  4370. 536, /* OBJ_setct_AuthResTBSX 2 23 42 0 18 */
  4371. 537, /* OBJ_setct_AuthTokenTBS 2 23 42 0 19 */
  4372. 538, /* OBJ_setct_CapTokenData 2 23 42 0 20 */
  4373. 539, /* OBJ_setct_CapTokenTBS 2 23 42 0 21 */
  4374. 540, /* OBJ_setct_AcqCardCodeMsg 2 23 42 0 22 */
  4375. 541, /* OBJ_setct_AuthRevReqTBS 2 23 42 0 23 */
  4376. 542, /* OBJ_setct_AuthRevResData 2 23 42 0 24 */
  4377. 543, /* OBJ_setct_AuthRevResTBS 2 23 42 0 25 */
  4378. 544, /* OBJ_setct_CapReqTBS 2 23 42 0 26 */
  4379. 545, /* OBJ_setct_CapReqTBSX 2 23 42 0 27 */
  4380. 546, /* OBJ_setct_CapResData 2 23 42 0 28 */
  4381. 547, /* OBJ_setct_CapRevReqTBS 2 23 42 0 29 */
  4382. 548, /* OBJ_setct_CapRevReqTBSX 2 23 42 0 30 */
  4383. 549, /* OBJ_setct_CapRevResData 2 23 42 0 31 */
  4384. 550, /* OBJ_setct_CredReqTBS 2 23 42 0 32 */
  4385. 551, /* OBJ_setct_CredReqTBSX 2 23 42 0 33 */
  4386. 552, /* OBJ_setct_CredResData 2 23 42 0 34 */
  4387. 553, /* OBJ_setct_CredRevReqTBS 2 23 42 0 35 */
  4388. 554, /* OBJ_setct_CredRevReqTBSX 2 23 42 0 36 */
  4389. 555, /* OBJ_setct_CredRevResData 2 23 42 0 37 */
  4390. 556, /* OBJ_setct_PCertReqData 2 23 42 0 38 */
  4391. 557, /* OBJ_setct_PCertResTBS 2 23 42 0 39 */
  4392. 558, /* OBJ_setct_BatchAdminReqData 2 23 42 0 40 */
  4393. 559, /* OBJ_setct_BatchAdminResData 2 23 42 0 41 */
  4394. 560, /* OBJ_setct_CardCInitResTBS 2 23 42 0 42 */
  4395. 561, /* OBJ_setct_MeAqCInitResTBS 2 23 42 0 43 */
  4396. 562, /* OBJ_setct_RegFormResTBS 2 23 42 0 44 */
  4397. 563, /* OBJ_setct_CertReqData 2 23 42 0 45 */
  4398. 564, /* OBJ_setct_CertReqTBS 2 23 42 0 46 */
  4399. 565, /* OBJ_setct_CertResData 2 23 42 0 47 */
  4400. 566, /* OBJ_setct_CertInqReqTBS 2 23 42 0 48 */
  4401. 567, /* OBJ_setct_ErrorTBS 2 23 42 0 49 */
  4402. 568, /* OBJ_setct_PIDualSignedTBE 2 23 42 0 50 */
  4403. 569, /* OBJ_setct_PIUnsignedTBE 2 23 42 0 51 */
  4404. 570, /* OBJ_setct_AuthReqTBE 2 23 42 0 52 */
  4405. 571, /* OBJ_setct_AuthResTBE 2 23 42 0 53 */
  4406. 572, /* OBJ_setct_AuthResTBEX 2 23 42 0 54 */
  4407. 573, /* OBJ_setct_AuthTokenTBE 2 23 42 0 55 */
  4408. 574, /* OBJ_setct_CapTokenTBE 2 23 42 0 56 */
  4409. 575, /* OBJ_setct_CapTokenTBEX 2 23 42 0 57 */
  4410. 576, /* OBJ_setct_AcqCardCodeMsgTBE 2 23 42 0 58 */
  4411. 577, /* OBJ_setct_AuthRevReqTBE 2 23 42 0 59 */
  4412. 578, /* OBJ_setct_AuthRevResTBE 2 23 42 0 60 */
  4413. 579, /* OBJ_setct_AuthRevResTBEB 2 23 42 0 61 */
  4414. 580, /* OBJ_setct_CapReqTBE 2 23 42 0 62 */
  4415. 581, /* OBJ_setct_CapReqTBEX 2 23 42 0 63 */
  4416. 582, /* OBJ_setct_CapResTBE 2 23 42 0 64 */
  4417. 583, /* OBJ_setct_CapRevReqTBE 2 23 42 0 65 */
  4418. 584, /* OBJ_setct_CapRevReqTBEX 2 23 42 0 66 */
  4419. 585, /* OBJ_setct_CapRevResTBE 2 23 42 0 67 */
  4420. 586, /* OBJ_setct_CredReqTBE 2 23 42 0 68 */
  4421. 587, /* OBJ_setct_CredReqTBEX 2 23 42 0 69 */
  4422. 588, /* OBJ_setct_CredResTBE 2 23 42 0 70 */
  4423. 589, /* OBJ_setct_CredRevReqTBE 2 23 42 0 71 */
  4424. 590, /* OBJ_setct_CredRevReqTBEX 2 23 42 0 72 */
  4425. 591, /* OBJ_setct_CredRevResTBE 2 23 42 0 73 */
  4426. 592, /* OBJ_setct_BatchAdminReqTBE 2 23 42 0 74 */
  4427. 593, /* OBJ_setct_BatchAdminResTBE 2 23 42 0 75 */
  4428. 594, /* OBJ_setct_RegFormReqTBE 2 23 42 0 76 */
  4429. 595, /* OBJ_setct_CertReqTBE 2 23 42 0 77 */
  4430. 596, /* OBJ_setct_CertReqTBEX 2 23 42 0 78 */
  4431. 597, /* OBJ_setct_CertResTBE 2 23 42 0 79 */
  4432. 598, /* OBJ_setct_CRLNotificationTBS 2 23 42 0 80 */
  4433. 599, /* OBJ_setct_CRLNotificationResTBS 2 23 42 0 81 */
  4434. 600, /* OBJ_setct_BCIDistributionTBS 2 23 42 0 82 */
  4435. 601, /* OBJ_setext_genCrypt 2 23 42 1 1 */
  4436. 602, /* OBJ_setext_miAuth 2 23 42 1 3 */
  4437. 603, /* OBJ_setext_pinSecure 2 23 42 1 4 */
  4438. 604, /* OBJ_setext_pinAny 2 23 42 1 5 */
  4439. 605, /* OBJ_setext_track2 2 23 42 1 7 */
  4440. 606, /* OBJ_setext_cv 2 23 42 1 8 */
  4441. 620, /* OBJ_setAttr_Cert 2 23 42 3 0 */
  4442. 621, /* OBJ_setAttr_PGWYcap 2 23 42 3 1 */
  4443. 622, /* OBJ_setAttr_TokenType 2 23 42 3 2 */
  4444. 623, /* OBJ_setAttr_IssCap 2 23 42 3 3 */
  4445. 607, /* OBJ_set_policy_root 2 23 42 5 0 */
  4446. 608, /* OBJ_setCext_hashedRoot 2 23 42 7 0 */
  4447. 609, /* OBJ_setCext_certType 2 23 42 7 1 */
  4448. 610, /* OBJ_setCext_merchData 2 23 42 7 2 */
  4449. 611, /* OBJ_setCext_cCertRequired 2 23 42 7 3 */
  4450. 612, /* OBJ_setCext_tunneling 2 23 42 7 4 */
  4451. 613, /* OBJ_setCext_setExt 2 23 42 7 5 */
  4452. 614, /* OBJ_setCext_setQualf 2 23 42 7 6 */
  4453. 615, /* OBJ_setCext_PGWYcapabilities 2 23 42 7 7 */
  4454. 616, /* OBJ_setCext_TokenIdentifier 2 23 42 7 8 */
  4455. 617, /* OBJ_setCext_Track2Data 2 23 42 7 9 */
  4456. 618, /* OBJ_setCext_TokenType 2 23 42 7 10 */
  4457. 619, /* OBJ_setCext_IssuerCapabilities 2 23 42 7 11 */
  4458. 636, /* OBJ_set_brand_IATA_ATA 2 23 42 8 1 */
  4459. 640, /* OBJ_set_brand_Visa 2 23 42 8 4 */
  4460. 641, /* OBJ_set_brand_MasterCard 2 23 42 8 5 */
  4461. 637, /* OBJ_set_brand_Diners 2 23 42 8 30 */
  4462. 638, /* OBJ_set_brand_AmericanExpress 2 23 42 8 34 */
  4463. 639, /* OBJ_set_brand_JCB 2 23 42 8 35 */
  4464. 805, /* OBJ_cryptopro 1 2 643 2 2 */
  4465. 806, /* OBJ_cryptocom 1 2 643 2 9 */
  4466. 184, /* OBJ_X9_57 1 2 840 10040 */
  4467. 405, /* OBJ_ansi_X9_62 1 2 840 10045 */
  4468. 389, /* OBJ_Enterprises 1 3 6 1 4 1 */
  4469. 504, /* OBJ_mime_mhs 1 3 6 1 7 1 */
  4470. 104, /* OBJ_md5WithRSA 1 3 14 3 2 3 */
  4471. 29, /* OBJ_des_ecb 1 3 14 3 2 6 */
  4472. 31, /* OBJ_des_cbc 1 3 14 3 2 7 */
  4473. 45, /* OBJ_des_ofb64 1 3 14 3 2 8 */
  4474. 30, /* OBJ_des_cfb64 1 3 14 3 2 9 */
  4475. 377, /* OBJ_rsaSignature 1 3 14 3 2 11 */
  4476. 67, /* OBJ_dsa_2 1 3 14 3 2 12 */
  4477. 66, /* OBJ_dsaWithSHA 1 3 14 3 2 13 */
  4478. 42, /* OBJ_shaWithRSAEncryption 1 3 14 3 2 15 */
  4479. 32, /* OBJ_des_ede_ecb 1 3 14 3 2 17 */
  4480. 41, /* OBJ_sha 1 3 14 3 2 18 */
  4481. 64, /* OBJ_sha1 1 3 14 3 2 26 */
  4482. 70, /* OBJ_dsaWithSHA1_2 1 3 14 3 2 27 */
  4483. 115, /* OBJ_sha1WithRSA 1 3 14 3 2 29 */
  4484. 117, /* OBJ_ripemd160 1 3 36 3 2 1 */
  4485. 143, /* OBJ_sxnet 1 3 101 1 4 1 */
  4486. 721, /* OBJ_sect163k1 1 3 132 0 1 */
  4487. 722, /* OBJ_sect163r1 1 3 132 0 2 */
  4488. 728, /* OBJ_sect239k1 1 3 132 0 3 */
  4489. 717, /* OBJ_sect113r1 1 3 132 0 4 */
  4490. 718, /* OBJ_sect113r2 1 3 132 0 5 */
  4491. 704, /* OBJ_secp112r1 1 3 132 0 6 */
  4492. 705, /* OBJ_secp112r2 1 3 132 0 7 */
  4493. 709, /* OBJ_secp160r1 1 3 132 0 8 */
  4494. 708, /* OBJ_secp160k1 1 3 132 0 9 */
  4495. 714, /* OBJ_secp256k1 1 3 132 0 10 */
  4496. 723, /* OBJ_sect163r2 1 3 132 0 15 */
  4497. 729, /* OBJ_sect283k1 1 3 132 0 16 */
  4498. 730, /* OBJ_sect283r1 1 3 132 0 17 */
  4499. 719, /* OBJ_sect131r1 1 3 132 0 22 */
  4500. 720, /* OBJ_sect131r2 1 3 132 0 23 */
  4501. 724, /* OBJ_sect193r1 1 3 132 0 24 */
  4502. 725, /* OBJ_sect193r2 1 3 132 0 25 */
  4503. 726, /* OBJ_sect233k1 1 3 132 0 26 */
  4504. 727, /* OBJ_sect233r1 1 3 132 0 27 */
  4505. 706, /* OBJ_secp128r1 1 3 132 0 28 */
  4506. 707, /* OBJ_secp128r2 1 3 132 0 29 */
  4507. 710, /* OBJ_secp160r2 1 3 132 0 30 */
  4508. 711, /* OBJ_secp192k1 1 3 132 0 31 */
  4509. 712, /* OBJ_secp224k1 1 3 132 0 32 */
  4510. 713, /* OBJ_secp224r1 1 3 132 0 33 */
  4511. 715, /* OBJ_secp384r1 1 3 132 0 34 */
  4512. 716, /* OBJ_secp521r1 1 3 132 0 35 */
  4513. 731, /* OBJ_sect409k1 1 3 132 0 36 */
  4514. 732, /* OBJ_sect409r1 1 3 132 0 37 */
  4515. 733, /* OBJ_sect571k1 1 3 132 0 38 */
  4516. 734, /* OBJ_sect571r1 1 3 132 0 39 */
  4517. 624, /* OBJ_set_rootKeyThumb 2 23 42 3 0 0 */
  4518. 625, /* OBJ_set_addPolicy 2 23 42 3 0 1 */
  4519. 626, /* OBJ_setAttr_Token_EMV 2 23 42 3 2 1 */
  4520. 627, /* OBJ_setAttr_Token_B0Prime 2 23 42 3 2 2 */
  4521. 628, /* OBJ_setAttr_IssCap_CVM 2 23 42 3 3 3 */
  4522. 629, /* OBJ_setAttr_IssCap_T2 2 23 42 3 3 4 */
  4523. 630, /* OBJ_setAttr_IssCap_Sig 2 23 42 3 3 5 */
  4524. 642, /* OBJ_set_brand_Novus 2 23 42 8 6011 */
  4525. 735, /* OBJ_wap_wsg_idm_ecid_wtls1 2 23 43 1 4 1 */
  4526. 736, /* OBJ_wap_wsg_idm_ecid_wtls3 2 23 43 1 4 3 */
  4527. 737, /* OBJ_wap_wsg_idm_ecid_wtls4 2 23 43 1 4 4 */
  4528. 738, /* OBJ_wap_wsg_idm_ecid_wtls5 2 23 43 1 4 5 */
  4529. 739, /* OBJ_wap_wsg_idm_ecid_wtls6 2 23 43 1 4 6 */
  4530. 740, /* OBJ_wap_wsg_idm_ecid_wtls7 2 23 43 1 4 7 */
  4531. 741, /* OBJ_wap_wsg_idm_ecid_wtls8 2 23 43 1 4 8 */
  4532. 742, /* OBJ_wap_wsg_idm_ecid_wtls9 2 23 43 1 4 9 */
  4533. 743, /* OBJ_wap_wsg_idm_ecid_wtls10 2 23 43 1 4 10 */
  4534. 744, /* OBJ_wap_wsg_idm_ecid_wtls11 2 23 43 1 4 11 */
  4535. 745, /* OBJ_wap_wsg_idm_ecid_wtls12 2 23 43 1 4 12 */
  4536. 804, /* OBJ_whirlpool 1 0 10118 3 0 55 */
  4537. 124, /* OBJ_rle_compression 1 1 1 1 666 1 */
  4538. 773, /* OBJ_kisa 1 2 410 200004 */
  4539. 807, /* OBJ_id_GostR3411_94_with_GostR3410_2001 1 2 643 2 2 3 */
  4540. 808, /* OBJ_id_GostR3411_94_with_GostR3410_94 1 2 643 2 2 4 */
  4541. 809, /* OBJ_id_GostR3411_94 1 2 643 2 2 9 */
  4542. 810, /* OBJ_id_HMACGostR3411_94 1 2 643 2 2 10 */
  4543. 811, /* OBJ_id_GostR3410_2001 1 2 643 2 2 19 */
  4544. 812, /* OBJ_id_GostR3410_94 1 2 643 2 2 20 */
  4545. 813, /* OBJ_id_Gost28147_89 1 2 643 2 2 21 */
  4546. 815, /* OBJ_id_Gost28147_89_MAC 1 2 643 2 2 22 */
  4547. 816, /* OBJ_id_GostR3411_94_prf 1 2 643 2 2 23 */
  4548. 817, /* OBJ_id_GostR3410_2001DH 1 2 643 2 2 98 */
  4549. 818, /* OBJ_id_GostR3410_94DH 1 2 643 2 2 99 */
  4550. 1, /* OBJ_rsadsi 1 2 840 113549 */
  4551. 185, /* OBJ_X9cm 1 2 840 10040 4 */
  4552. 127, /* OBJ_id_pkix 1 3 6 1 5 5 7 */
  4553. 505, /* OBJ_mime_mhs_headings 1 3 6 1 7 1 1 */
  4554. 506, /* OBJ_mime_mhs_bodies 1 3 6 1 7 1 2 */
  4555. 119, /* OBJ_ripemd160WithRSA 1 3 36 3 3 1 2 */
  4556. 631, /* OBJ_setAttr_GenCryptgrm 2 23 42 3 3 3 1 */
  4557. 632, /* OBJ_setAttr_T2Enc 2 23 42 3 3 4 1 */
  4558. 633, /* OBJ_setAttr_T2cleartxt 2 23 42 3 3 4 2 */
  4559. 634, /* OBJ_setAttr_TokICCsig 2 23 42 3 3 5 1 */
  4560. 635, /* OBJ_setAttr_SecDevSig 2 23 42 3 3 5 2 */
  4561. 436, /* OBJ_ucl 0 9 2342 19200300 */
  4562. 820, /* OBJ_id_Gost28147_89_None_KeyMeshing 1 2 643 2 2 14 0 */
  4563. 819, /* OBJ_id_Gost28147_89_CryptoPro_KeyMeshing 1 2 643 2 2 14 1 */
  4564. 845, /* OBJ_id_GostR3410_94_a 1 2 643 2 2 20 1 */
  4565. 846, /* OBJ_id_GostR3410_94_aBis 1 2 643 2 2 20 2 */
  4566. 847, /* OBJ_id_GostR3410_94_b 1 2 643 2 2 20 3 */
  4567. 848, /* OBJ_id_GostR3410_94_bBis 1 2 643 2 2 20 4 */
  4568. 821, /* OBJ_id_GostR3411_94_TestParamSet 1 2 643 2 2 30 0 */
  4569. 822, /* OBJ_id_GostR3411_94_CryptoProParamSet 1 2 643 2 2 30 1 */
  4570. 823, /* OBJ_id_Gost28147_89_TestParamSet 1 2 643 2 2 31 0 */
  4571. 824, /* OBJ_id_Gost28147_89_CryptoPro_A_ParamSet 1 2 643 2 2 31 1 */
  4572. 825, /* OBJ_id_Gost28147_89_CryptoPro_B_ParamSet 1 2 643 2 2 31 2 */
  4573. 826, /* OBJ_id_Gost28147_89_CryptoPro_C_ParamSet 1 2 643 2 2 31 3 */
  4574. 827, /* OBJ_id_Gost28147_89_CryptoPro_D_ParamSet 1 2 643 2 2 31 4 */
  4575. 828, /* OBJ_id_Gost28147_89_CryptoPro_Oscar_1_1_ParamSet 1 2 643 2 2 31 5 */
  4576. 829, /* OBJ_id_Gost28147_89_CryptoPro_Oscar_1_0_ParamSet 1 2 643 2 2 31 6 */
  4577. 830, /* OBJ_id_Gost28147_89_CryptoPro_RIC_1_ParamSet 1 2 643 2 2 31 7 */
  4578. 831, /* OBJ_id_GostR3410_94_TestParamSet 1 2 643 2 2 32 0 */
  4579. 832, /* OBJ_id_GostR3410_94_CryptoPro_A_ParamSet 1 2 643 2 2 32 2 */
  4580. 833, /* OBJ_id_GostR3410_94_CryptoPro_B_ParamSet 1 2 643 2 2 32 3 */
  4581. 834, /* OBJ_id_GostR3410_94_CryptoPro_C_ParamSet 1 2 643 2 2 32 4 */
  4582. 835, /* OBJ_id_GostR3410_94_CryptoPro_D_ParamSet 1 2 643 2 2 32 5 */
  4583. 836, /* OBJ_id_GostR3410_94_CryptoPro_XchA_ParamSet 1 2 643 2 2 33 1 */
  4584. 837, /* OBJ_id_GostR3410_94_CryptoPro_XchB_ParamSet 1 2 643 2 2 33 2 */
  4585. 838, /* OBJ_id_GostR3410_94_CryptoPro_XchC_ParamSet 1 2 643 2 2 33 3 */
  4586. 839, /* OBJ_id_GostR3410_2001_TestParamSet 1 2 643 2 2 35 0 */
  4587. 840, /* OBJ_id_GostR3410_2001_CryptoPro_A_ParamSet 1 2 643 2 2 35 1 */
  4588. 841, /* OBJ_id_GostR3410_2001_CryptoPro_B_ParamSet 1 2 643 2 2 35 2 */
  4589. 842, /* OBJ_id_GostR3410_2001_CryptoPro_C_ParamSet 1 2 643 2 2 35 3 */
  4590. 843, /* OBJ_id_GostR3410_2001_CryptoPro_XchA_ParamSet 1 2 643 2 2 36 0 */
  4591. 844, /* OBJ_id_GostR3410_2001_CryptoPro_XchB_ParamSet 1 2 643 2 2 36 1 */
  4592. 2, /* OBJ_pkcs 1 2 840 113549 1 */
  4593. 431, /* OBJ_hold_instruction_none 1 2 840 10040 2 1 */
  4594. 432, /* OBJ_hold_instruction_call_issuer 1 2 840 10040 2 2 */
  4595. 433, /* OBJ_hold_instruction_reject 1 2 840 10040 2 3 */
  4596. 116, /* OBJ_dsa 1 2 840 10040 4 1 */
  4597. 113, /* OBJ_dsaWithSHA1 1 2 840 10040 4 3 */
  4598. 406, /* OBJ_X9_62_prime_field 1 2 840 10045 1 1 */
  4599. 407, /* OBJ_X9_62_characteristic_two_field 1 2 840 10045 1 2 */
  4600. 408, /* OBJ_X9_62_id_ecPublicKey 1 2 840 10045 2 1 */
  4601. 416, /* OBJ_ecdsa_with_SHA1 1 2 840 10045 4 1 */
  4602. 791, /* OBJ_ecdsa_with_Recommended 1 2 840 10045 4 2 */
  4603. 792, /* OBJ_ecdsa_with_Specified 1 2 840 10045 4 3 */
  4604. 258, /* OBJ_id_pkix_mod 1 3 6 1 5 5 7 0 */
  4605. 175, /* OBJ_id_pe 1 3 6 1 5 5 7 1 */
  4606. 259, /* OBJ_id_qt 1 3 6 1 5 5 7 2 */
  4607. 128, /* OBJ_id_kp 1 3 6 1 5 5 7 3 */
  4608. 260, /* OBJ_id_it 1 3 6 1 5 5 7 4 */
  4609. 261, /* OBJ_id_pkip 1 3 6 1 5 5 7 5 */
  4610. 262, /* OBJ_id_alg 1 3 6 1 5 5 7 6 */
  4611. 263, /* OBJ_id_cmc 1 3 6 1 5 5 7 7 */
  4612. 264, /* OBJ_id_on 1 3 6 1 5 5 7 8 */
  4613. 265, /* OBJ_id_pda 1 3 6 1 5 5 7 9 */
  4614. 266, /* OBJ_id_aca 1 3 6 1 5 5 7 10 */
  4615. 267, /* OBJ_id_qcs 1 3 6 1 5 5 7 11 */
  4616. 268, /* OBJ_id_cct 1 3 6 1 5 5 7 12 */
  4617. 662, /* OBJ_id_ppl 1 3 6 1 5 5 7 21 */
  4618. 176, /* OBJ_id_ad 1 3 6 1 5 5 7 48 */
  4619. 507, /* OBJ_id_hex_partial_message 1 3 6 1 7 1 1 1 */
  4620. 508, /* OBJ_id_hex_multipart_message 1 3 6 1 7 1 1 2 */
  4621. 57, /* OBJ_netscape 2 16 840 1 113730 */
  4622. 754, /* OBJ_camellia_128_ecb 0 3 4401 5 3 1 9 1 */
  4623. 766, /* OBJ_camellia_128_ofb128 0 3 4401 5 3 1 9 3 */
  4624. 757, /* OBJ_camellia_128_cfb128 0 3 4401 5 3 1 9 4 */
  4625. 755, /* OBJ_camellia_192_ecb 0 3 4401 5 3 1 9 21 */
  4626. 767, /* OBJ_camellia_192_ofb128 0 3 4401 5 3 1 9 23 */
  4627. 758, /* OBJ_camellia_192_cfb128 0 3 4401 5 3 1 9 24 */
  4628. 756, /* OBJ_camellia_256_ecb 0 3 4401 5 3 1 9 41 */
  4629. 768, /* OBJ_camellia_256_ofb128 0 3 4401 5 3 1 9 43 */
  4630. 759, /* OBJ_camellia_256_cfb128 0 3 4401 5 3 1 9 44 */
  4631. 437, /* OBJ_pilot 0 9 2342 19200300 100 */
  4632. 776, /* OBJ_seed_ecb 1 2 410 200004 1 3 */
  4633. 777, /* OBJ_seed_cbc 1 2 410 200004 1 4 */
  4634. 779, /* OBJ_seed_cfb128 1 2 410 200004 1 5 */
  4635. 778, /* OBJ_seed_ofb128 1 2 410 200004 1 6 */
  4636. 852, /* OBJ_id_GostR3411_94_with_GostR3410_94_cc 1 2 643 2 9 1 3 3 */
  4637. 853, /* OBJ_id_GostR3411_94_with_GostR3410_2001_cc 1 2 643 2 9 1 3 4 */
  4638. 850, /* OBJ_id_GostR3410_94_cc 1 2 643 2 9 1 5 3 */
  4639. 851, /* OBJ_id_GostR3410_2001_cc 1 2 643 2 9 1 5 4 */
  4640. 849, /* OBJ_id_Gost28147_89_cc 1 2 643 2 9 1 6 1 */
  4641. 854, /* OBJ_id_GostR3410_2001_ParamSet_cc 1 2 643 2 9 1 8 1 */
  4642. 186, /* OBJ_pkcs1 1 2 840 113549 1 1 */
  4643. 27, /* OBJ_pkcs3 1 2 840 113549 1 3 */
  4644. 187, /* OBJ_pkcs5 1 2 840 113549 1 5 */
  4645. 20, /* OBJ_pkcs7 1 2 840 113549 1 7 */
  4646. 47, /* OBJ_pkcs9 1 2 840 113549 1 9 */
  4647. 3, /* OBJ_md2 1 2 840 113549 2 2 */
  4648. 257, /* OBJ_md4 1 2 840 113549 2 4 */
  4649. 4, /* OBJ_md5 1 2 840 113549 2 5 */
  4650. 797, /* OBJ_hmacWithMD5 1 2 840 113549 2 6 */
  4651. 163, /* OBJ_hmacWithSHA1 1 2 840 113549 2 7 */
  4652. 798, /* OBJ_hmacWithSHA224 1 2 840 113549 2 8 */
  4653. 799, /* OBJ_hmacWithSHA256 1 2 840 113549 2 9 */
  4654. 800, /* OBJ_hmacWithSHA384 1 2 840 113549 2 10 */
  4655. 801, /* OBJ_hmacWithSHA512 1 2 840 113549 2 11 */
  4656. 37, /* OBJ_rc2_cbc 1 2 840 113549 3 2 */
  4657. 5, /* OBJ_rc4 1 2 840 113549 3 4 */
  4658. 44, /* OBJ_des_ede3_cbc 1 2 840 113549 3 7 */
  4659. 120, /* OBJ_rc5_cbc 1 2 840 113549 3 8 */
  4660. 643, /* OBJ_des_cdmf 1 2 840 113549 3 10 */
  4661. 680, /* OBJ_X9_62_id_characteristic_two_basis 1 2 840 10045 1 2 3 */
  4662. 684, /* OBJ_X9_62_c2pnb163v1 1 2 840 10045 3 0 1 */
  4663. 685, /* OBJ_X9_62_c2pnb163v2 1 2 840 10045 3 0 2 */
  4664. 686, /* OBJ_X9_62_c2pnb163v3 1 2 840 10045 3 0 3 */
  4665. 687, /* OBJ_X9_62_c2pnb176v1 1 2 840 10045 3 0 4 */
  4666. 688, /* OBJ_X9_62_c2tnb191v1 1 2 840 10045 3 0 5 */
  4667. 689, /* OBJ_X9_62_c2tnb191v2 1 2 840 10045 3 0 6 */
  4668. 690, /* OBJ_X9_62_c2tnb191v3 1 2 840 10045 3 0 7 */
  4669. 691, /* OBJ_X9_62_c2onb191v4 1 2 840 10045 3 0 8 */
  4670. 692, /* OBJ_X9_62_c2onb191v5 1 2 840 10045 3 0 9 */
  4671. 693, /* OBJ_X9_62_c2pnb208w1 1 2 840 10045 3 0 10 */
  4672. 694, /* OBJ_X9_62_c2tnb239v1 1 2 840 10045 3 0 11 */
  4673. 695, /* OBJ_X9_62_c2tnb239v2 1 2 840 10045 3 0 12 */
  4674. 696, /* OBJ_X9_62_c2tnb239v3 1 2 840 10045 3 0 13 */
  4675. 697, /* OBJ_X9_62_c2onb239v4 1 2 840 10045 3 0 14 */
  4676. 698, /* OBJ_X9_62_c2onb239v5 1 2 840 10045 3 0 15 */
  4677. 699, /* OBJ_X9_62_c2pnb272w1 1 2 840 10045 3 0 16 */
  4678. 700, /* OBJ_X9_62_c2pnb304w1 1 2 840 10045 3 0 17 */
  4679. 701, /* OBJ_X9_62_c2tnb359v1 1 2 840 10045 3 0 18 */
  4680. 702, /* OBJ_X9_62_c2pnb368w1 1 2 840 10045 3 0 19 */
  4681. 703, /* OBJ_X9_62_c2tnb431r1 1 2 840 10045 3 0 20 */
  4682. 409, /* OBJ_X9_62_prime192v1 1 2 840 10045 3 1 1 */
  4683. 410, /* OBJ_X9_62_prime192v2 1 2 840 10045 3 1 2 */
  4684. 411, /* OBJ_X9_62_prime192v3 1 2 840 10045 3 1 3 */
  4685. 412, /* OBJ_X9_62_prime239v1 1 2 840 10045 3 1 4 */
  4686. 413, /* OBJ_X9_62_prime239v2 1 2 840 10045 3 1 5 */
  4687. 414, /* OBJ_X9_62_prime239v3 1 2 840 10045 3 1 6 */
  4688. 415, /* OBJ_X9_62_prime256v1 1 2 840 10045 3 1 7 */
  4689. 793, /* OBJ_ecdsa_with_SHA224 1 2 840 10045 4 3 1 */
  4690. 794, /* OBJ_ecdsa_with_SHA256 1 2 840 10045 4 3 2 */
  4691. 795, /* OBJ_ecdsa_with_SHA384 1 2 840 10045 4 3 3 */
  4692. 796, /* OBJ_ecdsa_with_SHA512 1 2 840 10045 4 3 4 */
  4693. 269, /* OBJ_id_pkix1_explicit_88 1 3 6 1 5 5 7 0 1 */
  4694. 270, /* OBJ_id_pkix1_implicit_88 1 3 6 1 5 5 7 0 2 */
  4695. 271, /* OBJ_id_pkix1_explicit_93 1 3 6 1 5 5 7 0 3 */
  4696. 272, /* OBJ_id_pkix1_implicit_93 1 3 6 1 5 5 7 0 4 */
  4697. 273, /* OBJ_id_mod_crmf 1 3 6 1 5 5 7 0 5 */
  4698. 274, /* OBJ_id_mod_cmc 1 3 6 1 5 5 7 0 6 */
  4699. 275, /* OBJ_id_mod_kea_profile_88 1 3 6 1 5 5 7 0 7 */
  4700. 276, /* OBJ_id_mod_kea_profile_93 1 3 6 1 5 5 7 0 8 */
  4701. 277, /* OBJ_id_mod_cmp 1 3 6 1 5 5 7 0 9 */
  4702. 278, /* OBJ_id_mod_qualified_cert_88 1 3 6 1 5 5 7 0 10 */
  4703. 279, /* OBJ_id_mod_qualified_cert_93 1 3 6 1 5 5 7 0 11 */
  4704. 280, /* OBJ_id_mod_attribute_cert 1 3 6 1 5 5 7 0 12 */
  4705. 281, /* OBJ_id_mod_timestamp_protocol 1 3 6 1 5 5 7 0 13 */
  4706. 282, /* OBJ_id_mod_ocsp 1 3 6 1 5 5 7 0 14 */
  4707. 283, /* OBJ_id_mod_dvcs 1 3 6 1 5 5 7 0 15 */
  4708. 284, /* OBJ_id_mod_cmp2000 1 3 6 1 5 5 7 0 16 */
  4709. 177, /* OBJ_info_access 1 3 6 1 5 5 7 1 1 */
  4710. 285, /* OBJ_biometricInfo 1 3 6 1 5 5 7 1 2 */
  4711. 286, /* OBJ_qcStatements 1 3 6 1 5 5 7 1 3 */
  4712. 287, /* OBJ_ac_auditEntity 1 3 6 1 5 5 7 1 4 */
  4713. 288, /* OBJ_ac_targeting 1 3 6 1 5 5 7 1 5 */
  4714. 289, /* OBJ_aaControls 1 3 6 1 5 5 7 1 6 */
  4715. 290, /* OBJ_sbgp_ipAddrBlock 1 3 6 1 5 5 7 1 7 */
  4716. 291, /* OBJ_sbgp_autonomousSysNum 1 3 6 1 5 5 7 1 8 */
  4717. 292, /* OBJ_sbgp_routerIdentifier 1 3 6 1 5 5 7 1 9 */
  4718. 397, /* OBJ_ac_proxying 1 3 6 1 5 5 7 1 10 */
  4719. 398, /* OBJ_sinfo_access 1 3 6 1 5 5 7 1 11 */
  4720. 663, /* OBJ_proxyCertInfo 1 3 6 1 5 5 7 1 14 */
  4721. 164, /* OBJ_id_qt_cps 1 3 6 1 5 5 7 2 1 */
  4722. 165, /* OBJ_id_qt_unotice 1 3 6 1 5 5 7 2 2 */
  4723. 293, /* OBJ_textNotice 1 3 6 1 5 5 7 2 3 */
  4724. 129, /* OBJ_server_auth 1 3 6 1 5 5 7 3 1 */
  4725. 130, /* OBJ_client_auth 1 3 6 1 5 5 7 3 2 */
  4726. 131, /* OBJ_code_sign 1 3 6 1 5 5 7 3 3 */
  4727. 132, /* OBJ_email_protect 1 3 6 1 5 5 7 3 4 */
  4728. 294, /* OBJ_ipsecEndSystem 1 3 6 1 5 5 7 3 5 */
  4729. 295, /* OBJ_ipsecTunnel 1 3 6 1 5 5 7 3 6 */
  4730. 296, /* OBJ_ipsecUser 1 3 6 1 5 5 7 3 7 */
  4731. 133, /* OBJ_time_stamp 1 3 6 1 5 5 7 3 8 */
  4732. 180, /* OBJ_OCSP_sign 1 3 6 1 5 5 7 3 9 */
  4733. 297, /* OBJ_dvcs 1 3 6 1 5 5 7 3 10 */
  4734. 298, /* OBJ_id_it_caProtEncCert 1 3 6 1 5 5 7 4 1 */
  4735. 299, /* OBJ_id_it_signKeyPairTypes 1 3 6 1 5 5 7 4 2 */
  4736. 300, /* OBJ_id_it_encKeyPairTypes 1 3 6 1 5 5 7 4 3 */
  4737. 301, /* OBJ_id_it_preferredSymmAlg 1 3 6 1 5 5 7 4 4 */
  4738. 302, /* OBJ_id_it_caKeyUpdateInfo 1 3 6 1 5 5 7 4 5 */
  4739. 303, /* OBJ_id_it_currentCRL 1 3 6 1 5 5 7 4 6 */
  4740. 304, /* OBJ_id_it_unsupportedOIDs 1 3 6 1 5 5 7 4 7 */
  4741. 305, /* OBJ_id_it_subscriptionRequest 1 3 6 1 5 5 7 4 8 */
  4742. 306, /* OBJ_id_it_subscriptionResponse 1 3 6 1 5 5 7 4 9 */
  4743. 307, /* OBJ_id_it_keyPairParamReq 1 3 6 1 5 5 7 4 10 */
  4744. 308, /* OBJ_id_it_keyPairParamRep 1 3 6 1 5 5 7 4 11 */
  4745. 309, /* OBJ_id_it_revPassphrase 1 3 6 1 5 5 7 4 12 */
  4746. 310, /* OBJ_id_it_implicitConfirm 1 3 6 1 5 5 7 4 13 */
  4747. 311, /* OBJ_id_it_confirmWaitTime 1 3 6 1 5 5 7 4 14 */
  4748. 312, /* OBJ_id_it_origPKIMessage 1 3 6 1 5 5 7 4 15 */
  4749. 784, /* OBJ_id_it_suppLangTags 1 3 6 1 5 5 7 4 16 */
  4750. 313, /* OBJ_id_regCtrl 1 3 6 1 5 5 7 5 1 */
  4751. 314, /* OBJ_id_regInfo 1 3 6 1 5 5 7 5 2 */
  4752. 323, /* OBJ_id_alg_des40 1 3 6 1 5 5 7 6 1 */
  4753. 324, /* OBJ_id_alg_noSignature 1 3 6 1 5 5 7 6 2 */
  4754. 325, /* OBJ_id_alg_dh_sig_hmac_sha1 1 3 6 1 5 5 7 6 3 */
  4755. 326, /* OBJ_id_alg_dh_pop 1 3 6 1 5 5 7 6 4 */
  4756. 327, /* OBJ_id_cmc_statusInfo 1 3 6 1 5 5 7 7 1 */
  4757. 328, /* OBJ_id_cmc_identification 1 3 6 1 5 5 7 7 2 */
  4758. 329, /* OBJ_id_cmc_identityProof 1 3 6 1 5 5 7 7 3 */
  4759. 330, /* OBJ_id_cmc_dataReturn 1 3 6 1 5 5 7 7 4 */
  4760. 331, /* OBJ_id_cmc_transactionId 1 3 6 1 5 5 7 7 5 */
  4761. 332, /* OBJ_id_cmc_senderNonce 1 3 6 1 5 5 7 7 6 */
  4762. 333, /* OBJ_id_cmc_recipientNonce 1 3 6 1 5 5 7 7 7 */
  4763. 334, /* OBJ_id_cmc_addExtensions 1 3 6 1 5 5 7 7 8 */
  4764. 335, /* OBJ_id_cmc_encryptedPOP 1 3 6 1 5 5 7 7 9 */
  4765. 336, /* OBJ_id_cmc_decryptedPOP 1 3 6 1 5 5 7 7 10 */
  4766. 337, /* OBJ_id_cmc_lraPOPWitness 1 3 6 1 5 5 7 7 11 */
  4767. 338, /* OBJ_id_cmc_getCert 1 3 6 1 5 5 7 7 15 */
  4768. 339, /* OBJ_id_cmc_getCRL 1 3 6 1 5 5 7 7 16 */
  4769. 340, /* OBJ_id_cmc_revokeRequest 1 3 6 1 5 5 7 7 17 */
  4770. 341, /* OBJ_id_cmc_regInfo 1 3 6 1 5 5 7 7 18 */
  4771. 342, /* OBJ_id_cmc_responseInfo 1 3 6 1 5 5 7 7 19 */
  4772. 343, /* OBJ_id_cmc_queryPending 1 3 6 1 5 5 7 7 21 */
  4773. 344, /* OBJ_id_cmc_popLinkRandom 1 3 6 1 5 5 7 7 22 */
  4774. 345, /* OBJ_id_cmc_popLinkWitness 1 3 6 1 5 5 7 7 23 */
  4775. 346, /* OBJ_id_cmc_confirmCertAcceptance 1 3 6 1 5 5 7 7 24 */
  4776. 347, /* OBJ_id_on_personalData 1 3 6 1 5 5 7 8 1 */
  4777. 858, /* OBJ_id_on_permanentIdentifier 1 3 6 1 5 5 7 8 3 */
  4778. 348, /* OBJ_id_pda_dateOfBirth 1 3 6 1 5 5 7 9 1 */
  4779. 349, /* OBJ_id_pda_placeOfBirth 1 3 6 1 5 5 7 9 2 */
  4780. 351, /* OBJ_id_pda_gender 1 3 6 1 5 5 7 9 3 */
  4781. 352, /* OBJ_id_pda_countryOfCitizenship 1 3 6 1 5 5 7 9 4 */
  4782. 353, /* OBJ_id_pda_countryOfResidence 1 3 6 1 5 5 7 9 5 */
  4783. 354, /* OBJ_id_aca_authenticationInfo 1 3 6 1 5 5 7 10 1 */
  4784. 355, /* OBJ_id_aca_accessIdentity 1 3 6 1 5 5 7 10 2 */
  4785. 356, /* OBJ_id_aca_chargingIdentity 1 3 6 1 5 5 7 10 3 */
  4786. 357, /* OBJ_id_aca_group 1 3 6 1 5 5 7 10 4 */
  4787. 358, /* OBJ_id_aca_role 1 3 6 1 5 5 7 10 5 */
  4788. 399, /* OBJ_id_aca_encAttrs 1 3 6 1 5 5 7 10 6 */
  4789. 359, /* OBJ_id_qcs_pkixQCSyntax_v1 1 3 6 1 5 5 7 11 1 */
  4790. 360, /* OBJ_id_cct_crs 1 3 6 1 5 5 7 12 1 */
  4791. 361, /* OBJ_id_cct_PKIData 1 3 6 1 5 5 7 12 2 */
  4792. 362, /* OBJ_id_cct_PKIResponse 1 3 6 1 5 5 7 12 3 */
  4793. 664, /* OBJ_id_ppl_anyLanguage 1 3 6 1 5 5 7 21 0 */
  4794. 665, /* OBJ_id_ppl_inheritAll 1 3 6 1 5 5 7 21 1 */
  4795. 667, /* OBJ_Independent 1 3 6 1 5 5 7 21 2 */
  4796. 178, /* OBJ_ad_OCSP 1 3 6 1 5 5 7 48 1 */
  4797. 179, /* OBJ_ad_ca_issuers 1 3 6 1 5 5 7 48 2 */
  4798. 363, /* OBJ_ad_timeStamping 1 3 6 1 5 5 7 48 3 */
  4799. 364, /* OBJ_ad_dvcs 1 3 6 1 5 5 7 48 4 */
  4800. 785, /* OBJ_caRepository 1 3 6 1 5 5 7 48 5 */
  4801. 780, /* OBJ_hmac_md5 1 3 6 1 5 5 8 1 1 */
  4802. 781, /* OBJ_hmac_sha1 1 3 6 1 5 5 8 1 2 */
  4803. 58, /* OBJ_netscape_cert_extension 2 16 840 1 113730 1 */
  4804. 59, /* OBJ_netscape_data_type 2 16 840 1 113730 2 */
  4805. 438, /* OBJ_pilotAttributeType 0 9 2342 19200300 100 1 */
  4806. 439, /* OBJ_pilotAttributeSyntax 0 9 2342 19200300 100 3 */
  4807. 440, /* OBJ_pilotObjectClass 0 9 2342 19200300 100 4 */
  4808. 441, /* OBJ_pilotGroups 0 9 2342 19200300 100 10 */
  4809. 108, /* OBJ_cast5_cbc 1 2 840 113533 7 66 10 */
  4810. 112, /* OBJ_pbeWithMD5AndCast5_CBC 1 2 840 113533 7 66 12 */
  4811. 782, /* OBJ_id_PasswordBasedMAC 1 2 840 113533 7 66 13 */
  4812. 783, /* OBJ_id_DHBasedMac 1 2 840 113533 7 66 30 */
  4813. 6, /* OBJ_rsaEncryption 1 2 840 113549 1 1 1 */
  4814. 7, /* OBJ_md2WithRSAEncryption 1 2 840 113549 1 1 2 */
  4815. 396, /* OBJ_md4WithRSAEncryption 1 2 840 113549 1 1 3 */
  4816. 8, /* OBJ_md5WithRSAEncryption 1 2 840 113549 1 1 4 */
  4817. 65, /* OBJ_sha1WithRSAEncryption 1 2 840 113549 1 1 5 */
  4818. 644, /* OBJ_rsaOAEPEncryptionSET 1 2 840 113549 1 1 6 */
  4819. 911, /* OBJ_mgf1 1 2 840 113549 1 1 8 */
  4820. 912, /* OBJ_rsassaPss 1 2 840 113549 1 1 10 */
  4821. 668, /* OBJ_sha256WithRSAEncryption 1 2 840 113549 1 1 11 */
  4822. 669, /* OBJ_sha384WithRSAEncryption 1 2 840 113549 1 1 12 */
  4823. 670, /* OBJ_sha512WithRSAEncryption 1 2 840 113549 1 1 13 */
  4824. 671, /* OBJ_sha224WithRSAEncryption 1 2 840 113549 1 1 14 */
  4825. 28, /* OBJ_dhKeyAgreement 1 2 840 113549 1 3 1 */
  4826. 9, /* OBJ_pbeWithMD2AndDES_CBC 1 2 840 113549 1 5 1 */
  4827. 10, /* OBJ_pbeWithMD5AndDES_CBC 1 2 840 113549 1 5 3 */
  4828. 168, /* OBJ_pbeWithMD2AndRC2_CBC 1 2 840 113549 1 5 4 */
  4829. 169, /* OBJ_pbeWithMD5AndRC2_CBC 1 2 840 113549 1 5 6 */
  4830. 170, /* OBJ_pbeWithSHA1AndDES_CBC 1 2 840 113549 1 5 10 */
  4831. 68, /* OBJ_pbeWithSHA1AndRC2_CBC 1 2 840 113549 1 5 11 */
  4832. 69, /* OBJ_id_pbkdf2 1 2 840 113549 1 5 12 */
  4833. 161, /* OBJ_pbes2 1 2 840 113549 1 5 13 */
  4834. 162, /* OBJ_pbmac1 1 2 840 113549 1 5 14 */
  4835. 21, /* OBJ_pkcs7_data 1 2 840 113549 1 7 1 */
  4836. 22, /* OBJ_pkcs7_signed 1 2 840 113549 1 7 2 */
  4837. 23, /* OBJ_pkcs7_enveloped 1 2 840 113549 1 7 3 */
  4838. 24, /* OBJ_pkcs7_signedAndEnveloped 1 2 840 113549 1 7 4 */
  4839. 25, /* OBJ_pkcs7_digest 1 2 840 113549 1 7 5 */
  4840. 26, /* OBJ_pkcs7_encrypted 1 2 840 113549 1 7 6 */
  4841. 48, /* OBJ_pkcs9_emailAddress 1 2 840 113549 1 9 1 */
  4842. 49, /* OBJ_pkcs9_unstructuredName 1 2 840 113549 1 9 2 */
  4843. 50, /* OBJ_pkcs9_contentType 1 2 840 113549 1 9 3 */
  4844. 51, /* OBJ_pkcs9_messageDigest 1 2 840 113549 1 9 4 */
  4845. 52, /* OBJ_pkcs9_signingTime 1 2 840 113549 1 9 5 */
  4846. 53, /* OBJ_pkcs9_countersignature 1 2 840 113549 1 9 6 */
  4847. 54, /* OBJ_pkcs9_challengePassword 1 2 840 113549 1 9 7 */
  4848. 55, /* OBJ_pkcs9_unstructuredAddress 1 2 840 113549 1 9 8 */
  4849. 56, /* OBJ_pkcs9_extCertAttributes 1 2 840 113549 1 9 9 */
  4850. 172, /* OBJ_ext_req 1 2 840 113549 1 9 14 */
  4851. 167, /* OBJ_SMIMECapabilities 1 2 840 113549 1 9 15 */
  4852. 188, /* OBJ_SMIME 1 2 840 113549 1 9 16 */
  4853. 156, /* OBJ_friendlyName 1 2 840 113549 1 9 20 */
  4854. 157, /* OBJ_localKeyID 1 2 840 113549 1 9 21 */
  4855. 681, /* OBJ_X9_62_onBasis 1 2 840 10045 1 2 3 1 */
  4856. 682, /* OBJ_X9_62_tpBasis 1 2 840 10045 1 2 3 2 */
  4857. 683, /* OBJ_X9_62_ppBasis 1 2 840 10045 1 2 3 3 */
  4858. 417, /* OBJ_ms_csp_name 1 3 6 1 4 1 311 17 1 */
  4859. 856, /* OBJ_LocalKeySet 1 3 6 1 4 1 311 17 2 */
  4860. 390, /* OBJ_dcObject 1 3 6 1 4 1 1466 344 */
  4861. 91, /* OBJ_bf_cbc 1 3 6 1 4 1 3029 1 2 */
  4862. 315, /* OBJ_id_regCtrl_regToken 1 3 6 1 5 5 7 5 1 1 */
  4863. 316, /* OBJ_id_regCtrl_authenticator 1 3 6 1 5 5 7 5 1 2 */
  4864. 317, /* OBJ_id_regCtrl_pkiPublicationInfo 1 3 6 1 5 5 7 5 1 3 */
  4865. 318, /* OBJ_id_regCtrl_pkiArchiveOptions 1 3 6 1 5 5 7 5 1 4 */
  4866. 319, /* OBJ_id_regCtrl_oldCertID 1 3 6 1 5 5 7 5 1 5 */
  4867. 320, /* OBJ_id_regCtrl_protocolEncrKey 1 3 6 1 5 5 7 5 1 6 */
  4868. 321, /* OBJ_id_regInfo_utf8Pairs 1 3 6 1 5 5 7 5 2 1 */
  4869. 322, /* OBJ_id_regInfo_certReq 1 3 6 1 5 5 7 5 2 2 */
  4870. 365, /* OBJ_id_pkix_OCSP_basic 1 3 6 1 5 5 7 48 1 1 */
  4871. 366, /* OBJ_id_pkix_OCSP_Nonce 1 3 6 1 5 5 7 48 1 2 */
  4872. 367, /* OBJ_id_pkix_OCSP_CrlID 1 3 6 1 5 5 7 48 1 3 */
  4873. 368, /* OBJ_id_pkix_OCSP_acceptableResponses 1 3 6 1 5 5 7 48 1 4 */
  4874. 369, /* OBJ_id_pkix_OCSP_noCheck 1 3 6 1 5 5 7 48 1 5 */
  4875. 370, /* OBJ_id_pkix_OCSP_archiveCutoff 1 3 6 1 5 5 7 48 1 6 */
  4876. 371, /* OBJ_id_pkix_OCSP_serviceLocator 1 3 6 1 5 5 7 48 1 7 */
  4877. 372, /* OBJ_id_pkix_OCSP_extendedStatus 1 3 6 1 5 5 7 48 1 8 */
  4878. 373, /* OBJ_id_pkix_OCSP_valid 1 3 6 1 5 5 7 48 1 9 */
  4879. 374, /* OBJ_id_pkix_OCSP_path 1 3 6 1 5 5 7 48 1 10 */
  4880. 375, /* OBJ_id_pkix_OCSP_trustRoot 1 3 6 1 5 5 7 48 1 11 */
  4881. 418, /* OBJ_aes_128_ecb 2 16 840 1 101 3 4 1 1 */
  4882. 419, /* OBJ_aes_128_cbc 2 16 840 1 101 3 4 1 2 */
  4883. 420, /* OBJ_aes_128_ofb128 2 16 840 1 101 3 4 1 3 */
  4884. 421, /* OBJ_aes_128_cfb128 2 16 840 1 101 3 4 1 4 */
  4885. 788, /* OBJ_id_aes128_wrap 2 16 840 1 101 3 4 1 5 */
  4886. 895, /* OBJ_aes_128_gcm 2 16 840 1 101 3 4 1 6 */
  4887. 896, /* OBJ_aes_128_ccm 2 16 840 1 101 3 4 1 7 */
  4888. 897, /* OBJ_id_aes128_wrap_pad 2 16 840 1 101 3 4 1 8 */
  4889. 422, /* OBJ_aes_192_ecb 2 16 840 1 101 3 4 1 21 */
  4890. 423, /* OBJ_aes_192_cbc 2 16 840 1 101 3 4 1 22 */
  4891. 424, /* OBJ_aes_192_ofb128 2 16 840 1 101 3 4 1 23 */
  4892. 425, /* OBJ_aes_192_cfb128 2 16 840 1 101 3 4 1 24 */
  4893. 789, /* OBJ_id_aes192_wrap 2 16 840 1 101 3 4 1 25 */
  4894. 898, /* OBJ_aes_192_gcm 2 16 840 1 101 3 4 1 26 */
  4895. 899, /* OBJ_aes_192_ccm 2 16 840 1 101 3 4 1 27 */
  4896. 900, /* OBJ_id_aes192_wrap_pad 2 16 840 1 101 3 4 1 28 */
  4897. 426, /* OBJ_aes_256_ecb 2 16 840 1 101 3 4 1 41 */
  4898. 427, /* OBJ_aes_256_cbc 2 16 840 1 101 3 4 1 42 */
  4899. 428, /* OBJ_aes_256_ofb128 2 16 840 1 101 3 4 1 43 */
  4900. 429, /* OBJ_aes_256_cfb128 2 16 840 1 101 3 4 1 44 */
  4901. 790, /* OBJ_id_aes256_wrap 2 16 840 1 101 3 4 1 45 */
  4902. 901, /* OBJ_aes_256_gcm 2 16 840 1 101 3 4 1 46 */
  4903. 902, /* OBJ_aes_256_ccm 2 16 840 1 101 3 4 1 47 */
  4904. 903, /* OBJ_id_aes256_wrap_pad 2 16 840 1 101 3 4 1 48 */
  4905. 672, /* OBJ_sha256 2 16 840 1 101 3 4 2 1 */
  4906. 673, /* OBJ_sha384 2 16 840 1 101 3 4 2 2 */
  4907. 674, /* OBJ_sha512 2 16 840 1 101 3 4 2 3 */
  4908. 675, /* OBJ_sha224 2 16 840 1 101 3 4 2 4 */
  4909. 802, /* OBJ_dsa_with_SHA224 2 16 840 1 101 3 4 3 1 */
  4910. 803, /* OBJ_dsa_with_SHA256 2 16 840 1 101 3 4 3 2 */
  4911. 71, /* OBJ_netscape_cert_type 2 16 840 1 113730 1 1 */
  4912. 72, /* OBJ_netscape_base_url 2 16 840 1 113730 1 2 */
  4913. 73, /* OBJ_netscape_revocation_url 2 16 840 1 113730 1 3 */
  4914. 74, /* OBJ_netscape_ca_revocation_url 2 16 840 1 113730 1 4 */
  4915. 75, /* OBJ_netscape_renewal_url 2 16 840 1 113730 1 7 */
  4916. 76, /* OBJ_netscape_ca_policy_url 2 16 840 1 113730 1 8 */
  4917. 77, /* OBJ_netscape_ssl_server_name 2 16 840 1 113730 1 12 */
  4918. 78, /* OBJ_netscape_comment 2 16 840 1 113730 1 13 */
  4919. 79, /* OBJ_netscape_cert_sequence 2 16 840 1 113730 2 5 */
  4920. 139, /* OBJ_ns_sgc 2 16 840 1 113730 4 1 */
  4921. 458, /* OBJ_userId 0 9 2342 19200300 100 1 1 */
  4922. 459, /* OBJ_textEncodedORAddress 0 9 2342 19200300 100 1 2 */
  4923. 460, /* OBJ_rfc822Mailbox 0 9 2342 19200300 100 1 3 */
  4924. 461, /* OBJ_info 0 9 2342 19200300 100 1 4 */
  4925. 462, /* OBJ_favouriteDrink 0 9 2342 19200300 100 1 5 */
  4926. 463, /* OBJ_roomNumber 0 9 2342 19200300 100 1 6 */
  4927. 464, /* OBJ_photo 0 9 2342 19200300 100 1 7 */
  4928. 465, /* OBJ_userClass 0 9 2342 19200300 100 1 8 */
  4929. 466, /* OBJ_host 0 9 2342 19200300 100 1 9 */
  4930. 467, /* OBJ_manager 0 9 2342 19200300 100 1 10 */
  4931. 468, /* OBJ_documentIdentifier 0 9 2342 19200300 100 1 11 */
  4932. 469, /* OBJ_documentTitle 0 9 2342 19200300 100 1 12 */
  4933. 470, /* OBJ_documentVersion 0 9 2342 19200300 100 1 13 */
  4934. 471, /* OBJ_documentAuthor 0 9 2342 19200300 100 1 14 */
  4935. 472, /* OBJ_documentLocation 0 9 2342 19200300 100 1 15 */
  4936. 473, /* OBJ_homeTelephoneNumber 0 9 2342 19200300 100 1 20 */
  4937. 474, /* OBJ_secretary 0 9 2342 19200300 100 1 21 */
  4938. 475, /* OBJ_otherMailbox 0 9 2342 19200300 100 1 22 */
  4939. 476, /* OBJ_lastModifiedTime 0 9 2342 19200300 100 1 23 */
  4940. 477, /* OBJ_lastModifiedBy 0 9 2342 19200300 100 1 24 */
  4941. 391, /* OBJ_domainComponent 0 9 2342 19200300 100 1 25 */
  4942. 478, /* OBJ_aRecord 0 9 2342 19200300 100 1 26 */
  4943. 479, /* OBJ_pilotAttributeType27 0 9 2342 19200300 100 1 27 */
  4944. 480, /* OBJ_mXRecord 0 9 2342 19200300 100 1 28 */
  4945. 481, /* OBJ_nSRecord 0 9 2342 19200300 100 1 29 */
  4946. 482, /* OBJ_sOARecord 0 9 2342 19200300 100 1 30 */
  4947. 483, /* OBJ_cNAMERecord 0 9 2342 19200300 100 1 31 */
  4948. 484, /* OBJ_associatedDomain 0 9 2342 19200300 100 1 37 */
  4949. 485, /* OBJ_associatedName 0 9 2342 19200300 100 1 38 */
  4950. 486, /* OBJ_homePostalAddress 0 9 2342 19200300 100 1 39 */
  4951. 487, /* OBJ_personalTitle 0 9 2342 19200300 100 1 40 */
  4952. 488, /* OBJ_mobileTelephoneNumber 0 9 2342 19200300 100 1 41 */
  4953. 489, /* OBJ_pagerTelephoneNumber 0 9 2342 19200300 100 1 42 */
  4954. 490, /* OBJ_friendlyCountryName 0 9 2342 19200300 100 1 43 */
  4955. 491, /* OBJ_organizationalStatus 0 9 2342 19200300 100 1 45 */
  4956. 492, /* OBJ_janetMailbox 0 9 2342 19200300 100 1 46 */
  4957. 493, /* OBJ_mailPreferenceOption 0 9 2342 19200300 100 1 47 */
  4958. 494, /* OBJ_buildingName 0 9 2342 19200300 100 1 48 */
  4959. 495, /* OBJ_dSAQuality 0 9 2342 19200300 100 1 49 */
  4960. 496, /* OBJ_singleLevelQuality 0 9 2342 19200300 100 1 50 */
  4961. 497, /* OBJ_subtreeMinimumQuality 0 9 2342 19200300 100 1 51 */
  4962. 498, /* OBJ_subtreeMaximumQuality 0 9 2342 19200300 100 1 52 */
  4963. 499, /* OBJ_personalSignature 0 9 2342 19200300 100 1 53 */
  4964. 500, /* OBJ_dITRedirect 0 9 2342 19200300 100 1 54 */
  4965. 501, /* OBJ_audio 0 9 2342 19200300 100 1 55 */
  4966. 502, /* OBJ_documentPublisher 0 9 2342 19200300 100 1 56 */
  4967. 442, /* OBJ_iA5StringSyntax 0 9 2342 19200300 100 3 4 */
  4968. 443, /* OBJ_caseIgnoreIA5StringSyntax 0 9 2342 19200300 100 3 5 */
  4969. 444, /* OBJ_pilotObject 0 9 2342 19200300 100 4 3 */
  4970. 445, /* OBJ_pilotPerson 0 9 2342 19200300 100 4 4 */
  4971. 446, /* OBJ_account 0 9 2342 19200300 100 4 5 */
  4972. 447, /* OBJ_document 0 9 2342 19200300 100 4 6 */
  4973. 448, /* OBJ_room 0 9 2342 19200300 100 4 7 */
  4974. 449, /* OBJ_documentSeries 0 9 2342 19200300 100 4 9 */
  4975. 392, /* OBJ_Domain 0 9 2342 19200300 100 4 13 */
  4976. 450, /* OBJ_rFC822localPart 0 9 2342 19200300 100 4 14 */
  4977. 451, /* OBJ_dNSDomain 0 9 2342 19200300 100 4 15 */
  4978. 452, /* OBJ_domainRelatedObject 0 9 2342 19200300 100 4 17 */
  4979. 453, /* OBJ_friendlyCountry 0 9 2342 19200300 100 4 18 */
  4980. 454, /* OBJ_simpleSecurityObject 0 9 2342 19200300 100 4 19 */
  4981. 455, /* OBJ_pilotOrganization 0 9 2342 19200300 100 4 20 */
  4982. 456, /* OBJ_pilotDSA 0 9 2342 19200300 100 4 21 */
  4983. 457, /* OBJ_qualityLabelledData 0 9 2342 19200300 100 4 22 */
  4984. 189, /* OBJ_id_smime_mod 1 2 840 113549 1 9 16 0 */
  4985. 190, /* OBJ_id_smime_ct 1 2 840 113549 1 9 16 1 */
  4986. 191, /* OBJ_id_smime_aa 1 2 840 113549 1 9 16 2 */
  4987. 192, /* OBJ_id_smime_alg 1 2 840 113549 1 9 16 3 */
  4988. 193, /* OBJ_id_smime_cd 1 2 840 113549 1 9 16 4 */
  4989. 194, /* OBJ_id_smime_spq 1 2 840 113549 1 9 16 5 */
  4990. 195, /* OBJ_id_smime_cti 1 2 840 113549 1 9 16 6 */
  4991. 158, /* OBJ_x509Certificate 1 2 840 113549 1 9 22 1 */
  4992. 159, /* OBJ_sdsiCertificate 1 2 840 113549 1 9 22 2 */
  4993. 160, /* OBJ_x509Crl 1 2 840 113549 1 9 23 1 */
  4994. 144, /* OBJ_pbe_WithSHA1And128BitRC4 1 2 840 113549 1 12 1 1 */
  4995. 145, /* OBJ_pbe_WithSHA1And40BitRC4 1 2 840 113549 1 12 1 2 */
  4996. 146, /* OBJ_pbe_WithSHA1And3_Key_TripleDES_CBC 1 2 840 113549 1 12 1 3 */
  4997. 147, /* OBJ_pbe_WithSHA1And2_Key_TripleDES_CBC 1 2 840 113549 1 12 1 4 */
  4998. 148, /* OBJ_pbe_WithSHA1And128BitRC2_CBC 1 2 840 113549 1 12 1 5 */
  4999. 149, /* OBJ_pbe_WithSHA1And40BitRC2_CBC 1 2 840 113549 1 12 1 6 */
  5000. 171, /* OBJ_ms_ext_req 1 3 6 1 4 1 311 2 1 14 */
  5001. 134, /* OBJ_ms_code_ind 1 3 6 1 4 1 311 2 1 21 */
  5002. 135, /* OBJ_ms_code_com 1 3 6 1 4 1 311 2 1 22 */
  5003. 136, /* OBJ_ms_ctl_sign 1 3 6 1 4 1 311 10 3 1 */
  5004. 137, /* OBJ_ms_sgc 1 3 6 1 4 1 311 10 3 3 */
  5005. 138, /* OBJ_ms_efs 1 3 6 1 4 1 311 10 3 4 */
  5006. 648, /* OBJ_ms_smartcard_login 1 3 6 1 4 1 311 20 2 2 */
  5007. 649, /* OBJ_ms_upn 1 3 6 1 4 1 311 20 2 3 */
  5008. 751, /* OBJ_camellia_128_cbc 1 2 392 200011 61 1 1 1 2 */
  5009. 752, /* OBJ_camellia_192_cbc 1 2 392 200011 61 1 1 1 3 */
  5010. 753, /* OBJ_camellia_256_cbc 1 2 392 200011 61 1 1 1 4 */
  5011. 907, /* OBJ_id_camellia128_wrap 1 2 392 200011 61 1 1 3 2 */
  5012. 908, /* OBJ_id_camellia192_wrap 1 2 392 200011 61 1 1 3 3 */
  5013. 909, /* OBJ_id_camellia256_wrap 1 2 392 200011 61 1 1 3 4 */
  5014. 196, /* OBJ_id_smime_mod_cms 1 2 840 113549 1 9 16 0 1 */
  5015. 197, /* OBJ_id_smime_mod_ess 1 2 840 113549 1 9 16 0 2 */
  5016. 198, /* OBJ_id_smime_mod_oid 1 2 840 113549 1 9 16 0 3 */
  5017. 199, /* OBJ_id_smime_mod_msg_v3 1 2 840 113549 1 9 16 0 4 */
  5018. 200, /* OBJ_id_smime_mod_ets_eSignature_88 1 2 840 113549 1 9 16 0 5 */
  5019. 201, /* OBJ_id_smime_mod_ets_eSignature_97 1 2 840 113549 1 9 16 0 6 */
  5020. 202, /* OBJ_id_smime_mod_ets_eSigPolicy_88 1 2 840 113549 1 9 16 0 7 */
  5021. 203, /* OBJ_id_smime_mod_ets_eSigPolicy_97 1 2 840 113549 1 9 16 0 8 */
  5022. 204, /* OBJ_id_smime_ct_receipt 1 2 840 113549 1 9 16 1 1 */
  5023. 205, /* OBJ_id_smime_ct_authData 1 2 840 113549 1 9 16 1 2 */
  5024. 206, /* OBJ_id_smime_ct_publishCert 1 2 840 113549 1 9 16 1 3 */
  5025. 207, /* OBJ_id_smime_ct_TSTInfo 1 2 840 113549 1 9 16 1 4 */
  5026. 208, /* OBJ_id_smime_ct_TDTInfo 1 2 840 113549 1 9 16 1 5 */
  5027. 209, /* OBJ_id_smime_ct_contentInfo 1 2 840 113549 1 9 16 1 6 */
  5028. 210, /* OBJ_id_smime_ct_DVCSRequestData 1 2 840 113549 1 9 16 1 7 */
  5029. 211, /* OBJ_id_smime_ct_DVCSResponseData 1 2 840 113549 1 9 16 1 8 */
  5030. 786, /* OBJ_id_smime_ct_compressedData 1 2 840 113549 1 9 16 1 9 */
  5031. 787, /* OBJ_id_ct_asciiTextWithCRLF 1 2 840 113549 1 9 16 1 27 */
  5032. 212, /* OBJ_id_smime_aa_receiptRequest 1 2 840 113549 1 9 16 2 1 */
  5033. 213, /* OBJ_id_smime_aa_securityLabel 1 2 840 113549 1 9 16 2 2 */
  5034. 214, /* OBJ_id_smime_aa_mlExpandHistory 1 2 840 113549 1 9 16 2 3 */
  5035. 215, /* OBJ_id_smime_aa_contentHint 1 2 840 113549 1 9 16 2 4 */
  5036. 216, /* OBJ_id_smime_aa_msgSigDigest 1 2 840 113549 1 9 16 2 5 */
  5037. 217, /* OBJ_id_smime_aa_encapContentType 1 2 840 113549 1 9 16 2 6 */
  5038. 218, /* OBJ_id_smime_aa_contentIdentifier 1 2 840 113549 1 9 16 2 7 */
  5039. 219, /* OBJ_id_smime_aa_macValue 1 2 840 113549 1 9 16 2 8 */
  5040. 220, /* OBJ_id_smime_aa_equivalentLabels 1 2 840 113549 1 9 16 2 9 */
  5041. 221, /* OBJ_id_smime_aa_contentReference 1 2 840 113549 1 9 16 2 10 */
  5042. 222, /* OBJ_id_smime_aa_encrypKeyPref 1 2 840 113549 1 9 16 2 11 */
  5043. 223, /* OBJ_id_smime_aa_signingCertificate 1 2 840 113549 1 9 16 2 12 */
  5044. 224, /* OBJ_id_smime_aa_smimeEncryptCerts 1 2 840 113549 1 9 16 2 13 */
  5045. 225, /* OBJ_id_smime_aa_timeStampToken 1 2 840 113549 1 9 16 2 14 */
  5046. 226, /* OBJ_id_smime_aa_ets_sigPolicyId 1 2 840 113549 1 9 16 2 15 */
  5047. 227, /* OBJ_id_smime_aa_ets_commitmentType 1 2 840 113549 1 9 16 2 16 */
  5048. 228, /* OBJ_id_smime_aa_ets_signerLocation 1 2 840 113549 1 9 16 2 17 */
  5049. 229, /* OBJ_id_smime_aa_ets_signerAttr 1 2 840 113549 1 9 16 2 18 */
  5050. 230, /* OBJ_id_smime_aa_ets_otherSigCert 1 2 840 113549 1 9 16 2 19 */
  5051. 231, /* OBJ_id_smime_aa_ets_contentTimestamp 1 2 840 113549 1 9 16 2 20 */
  5052. 232, /* OBJ_id_smime_aa_ets_CertificateRefs 1 2 840 113549 1 9 16 2 21 */
  5053. 233, /* OBJ_id_smime_aa_ets_RevocationRefs 1 2 840 113549 1 9 16 2 22 */
  5054. 234, /* OBJ_id_smime_aa_ets_certValues 1 2 840 113549 1 9 16 2 23 */
  5055. 235, /* OBJ_id_smime_aa_ets_revocationValues 1 2 840 113549 1 9 16 2 24 */
  5056. 236, /* OBJ_id_smime_aa_ets_escTimeStamp 1 2 840 113549 1 9 16 2 25 */
  5057. 237, /* OBJ_id_smime_aa_ets_certCRLTimestamp 1 2 840 113549 1 9 16 2 26 */
  5058. 238, /* OBJ_id_smime_aa_ets_archiveTimeStamp 1 2 840 113549 1 9 16 2 27 */
  5059. 239, /* OBJ_id_smime_aa_signatureType 1 2 840 113549 1 9 16 2 28 */
  5060. 240, /* OBJ_id_smime_aa_dvcs_dvc 1 2 840 113549 1 9 16 2 29 */
  5061. 241, /* OBJ_id_smime_alg_ESDHwith3DES 1 2 840 113549 1 9 16 3 1 */
  5062. 242, /* OBJ_id_smime_alg_ESDHwithRC2 1 2 840 113549 1 9 16 3 2 */
  5063. 243, /* OBJ_id_smime_alg_3DESwrap 1 2 840 113549 1 9 16 3 3 */
  5064. 244, /* OBJ_id_smime_alg_RC2wrap 1 2 840 113549 1 9 16 3 4 */
  5065. 245, /* OBJ_id_smime_alg_ESDH 1 2 840 113549 1 9 16 3 5 */
  5066. 246, /* OBJ_id_smime_alg_CMS3DESwrap 1 2 840 113549 1 9 16 3 6 */
  5067. 247, /* OBJ_id_smime_alg_CMSRC2wrap 1 2 840 113549 1 9 16 3 7 */
  5068. 125, /* OBJ_zlib_compression 1 2 840 113549 1 9 16 3 8 */
  5069. 893, /* OBJ_id_alg_PWRI_KEK 1 2 840 113549 1 9 16 3 9 */
  5070. 248, /* OBJ_id_smime_cd_ldap 1 2 840 113549 1 9 16 4 1 */
  5071. 249, /* OBJ_id_smime_spq_ets_sqt_uri 1 2 840 113549 1 9 16 5 1 */
  5072. 250, /* OBJ_id_smime_spq_ets_sqt_unotice 1 2 840 113549 1 9 16 5 2 */
  5073. 251, /* OBJ_id_smime_cti_ets_proofOfOrigin 1 2 840 113549 1 9 16 6 1 */
  5074. 252, /* OBJ_id_smime_cti_ets_proofOfReceipt 1 2 840 113549 1 9 16 6 2 */
  5075. 253, /* OBJ_id_smime_cti_ets_proofOfDelivery 1 2 840 113549 1 9 16 6 3 */
  5076. 254, /* OBJ_id_smime_cti_ets_proofOfSender 1 2 840 113549 1 9 16 6 4 */
  5077. 255, /* OBJ_id_smime_cti_ets_proofOfApproval 1 2 840 113549 1 9 16 6 5 */
  5078. 256, /* OBJ_id_smime_cti_ets_proofOfCreation 1 2 840 113549 1 9 16 6 6 */
  5079. 150, /* OBJ_keyBag 1 2 840 113549 1 12 10 1 1 */
  5080. 151, /* OBJ_pkcs8ShroudedKeyBag 1 2 840 113549 1 12 10 1 2 */
  5081. 152, /* OBJ_certBag 1 2 840 113549 1 12 10 1 3 */
  5082. 153, /* OBJ_crlBag 1 2 840 113549 1 12 10 1 4 */
  5083. 154, /* OBJ_secretBag 1 2 840 113549 1 12 10 1 5 */
  5084. 155, /* OBJ_safeContentsBag 1 2 840 113549 1 12 10 1 6 */
  5085. 34, /* OBJ_idea_cbc 1 3 6 1 4 1 188 7 1 1 2 */
  5086. };