ifapi_deserialization.3 108 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915
  1. .TH "ifapi_deserialization" 3 "Fri Oct 7 2022" "Version 3.2.0" "tpm2-tss" \" -*- nroff -*-
  2. .ad l
  3. .nh
  4. .SH NAME
  5. ifapi_deserialization
  6. .SH SYNOPSIS
  7. .br
  8. .PP
  9. .SS "Functions"
  10. .in +1c
  11. .ti -1c
  12. .RI "TSS2_RC \fBifapi_json_FAPI_QUOTE_INFO_deserialize\fP (json_object *jso, \fBFAPI_QUOTE_INFO\fP *out)"
  13. .br
  14. .ti -1c
  15. .RI "TSS2_RC \fBifapi_json_IFAPI_DUPLICATE_deserialize\fP (json_object *jso, \fBIFAPI_DUPLICATE\fP *out)"
  16. .br
  17. .ti -1c
  18. .RI "TSS2_RC \fBifapi_json_IFAPI_EVENT_TYPE_deserialize\fP (json_object *jso, IFAPI_EVENT_TYPE *out)"
  19. .br
  20. .ti -1c
  21. .RI "TSS2_RC \fBifapi_json_IFAPI_EVENT_TYPE_deserialize_txt\fP (json_object *jso, IFAPI_EVENT_TYPE *out)"
  22. .br
  23. .ti -1c
  24. .RI "TSS2_RC \fBifapi_json_IFAPI_EVENT_UNION_deserialize\fP (UINT32 selector, json_object *jso, \fBIFAPI_EVENT_UNION\fP *out)"
  25. .br
  26. .ti -1c
  27. .RI "TSS2_RC \fBifapi_json_IFAPI_EVENT_deserialize\fP (json_object *jso, \fBIFAPI_EVENT\fP *out)"
  28. .br
  29. .ti -1c
  30. .RI "TSS2_RC \fBifapi_json_IFAPI_EXT_PUB_KEY_deserialize\fP (json_object *jso, \fBIFAPI_EXT_PUB_KEY\fP *out)"
  31. .br
  32. .ti -1c
  33. .RI "TSS2_RC \fBifapi_json_IFAPI_HIERARCHY_deserialize\fP (json_object *jso, \fBIFAPI_HIERARCHY\fP *out)"
  34. .br
  35. .ti -1c
  36. .RI "TSS2_RC \fBifapi_json_IFAPI_IMA_EVENT_deserialize\fP (json_object *jso, \fBIFAPI_IMA_EVENT\fP *out)"
  37. .br
  38. .ti -1c
  39. .RI "TSS2_RC \fBifapi_json_IFAPI_KEY_deserialize\fP (json_object *jso, \fBIFAPI_KEY\fP *out)"
  40. .br
  41. .ti -1c
  42. .RI "TSS2_RC \fBifapi_json_IFAPI_NV_deserialize\fP (json_object *jso, \fBIFAPI_NV\fP *out)"
  43. .br
  44. .ti -1c
  45. .RI "TSS2_RC \fBifapi_json_IFAPI_OBJECT_TYPE_CONSTANT_deserialize\fP (json_object *jso, IFAPI_OBJECT_TYPE_CONSTANT *out)"
  46. .br
  47. .ti -1c
  48. .RI "TSS2_RC \fBifapi_json_IFAPI_OBJECT_deserialize\fP (json_object *jso, \fBIFAPI_OBJECT\fP *out)"
  49. .br
  50. .ti -1c
  51. .RI "TSS2_RC \fBifapi_json_IFAPI_TSS_EVENT_deserialize\fP (json_object *jso, \fBIFAPI_TSS_EVENT\fP *out)"
  52. .br
  53. .ti -1c
  54. .RI "TSS2_RC \fBifapi_json_char_deserialize\fP (json_object *jso, char **out)"
  55. .br
  56. .ti -1c
  57. .RI "bool \fBifapi_get_sub_object\fP (json_object *jso, char *name, json_object **sub_jso)"
  58. .br
  59. .ti -1c
  60. .RI "TSS2_RC \fBifapi_json_BYTE_array_deserialize\fP (size_t max, json_object *jso, BYTE *out)"
  61. .br
  62. .ti -1c
  63. .RI "TSS2_RC \fBifapi_json_BYTE_deserialize\fP (json_object *jso, BYTE *out)"
  64. .br
  65. .ti -1c
  66. .RI "TSS2_RC \fBifapi_json_TPM2B_CREATION_DATA_deserialize\fP (json_object *jso, TPM2B_CREATION_DATA *out)"
  67. .br
  68. .ti -1c
  69. .RI "TSS2_RC \fBifapi_json_TPM2B_DATA_deserialize\fP (json_object *jso, TPM2B_DATA *out)"
  70. .br
  71. .ti -1c
  72. .RI "TSS2_RC \fBifapi_json_TPM2B_DIGEST_deserialize\fP (json_object *jso, TPM2B_DIGEST *out)"
  73. .br
  74. .ti -1c
  75. .RI "TSS2_RC \fBifapi_json_TPM2B_ECC_PARAMETER_deserialize\fP (json_object *jso, TPM2B_ECC_PARAMETER *out)"
  76. .br
  77. .ti -1c
  78. .RI "TSS2_RC \fBifapi_json_TPM2B_ENCRYPTED_SECRET_deserialize\fP (json_object *jso, TPM2B_ENCRYPTED_SECRET *out)"
  79. .br
  80. .ti -1c
  81. .RI "TSS2_RC \fBifapi_json_TPM2B_EVENT_deserialize\fP (json_object *jso, TPM2B_EVENT *out)"
  82. .br
  83. .ti -1c
  84. .RI "TSS2_RC \fBifapi_json_TPM2B_MAX_NV_BUFFER_deserialize\fP (json_object *jso, TPM2B_MAX_NV_BUFFER *out)"
  85. .br
  86. .ti -1c
  87. .RI "TSS2_RC \fBifapi_json_TPM2B_NAME_deserialize\fP (json_object *jso, TPM2B_NAME *out)"
  88. .br
  89. .ti -1c
  90. .RI "TSS2_RC \fBifapi_json_TPM2B_NONCE_deserialize\fP (json_object *jso, TPM2B_NONCE *out)"
  91. .br
  92. .ti -1c
  93. .RI "TSS2_RC \fBifapi_json_TPM2B_NV_PUBLIC_deserialize\fP (json_object *jso, TPM2B_NV_PUBLIC *out)"
  94. .br
  95. .ti -1c
  96. .RI "TSS2_RC \fBifapi_json_TPM2B_OPERAND_deserialize\fP (json_object *jso, TPM2B_OPERAND *out)"
  97. .br
  98. .ti -1c
  99. .RI "TSS2_RC \fBifapi_json_TPM2B_PRIVATE_deserialize\fP (json_object *jso, TPM2B_PRIVATE *out)"
  100. .br
  101. .ti -1c
  102. .RI "TSS2_RC \fBifapi_json_TPM2B_PUBLIC_KEY_RSA_deserialize\fP (json_object *jso, TPM2B_PUBLIC_KEY_RSA *out)"
  103. .br
  104. .ti -1c
  105. .RI "TSS2_RC \fBifapi_json_TPM2B_PUBLIC_deserialize\fP (json_object *jso, TPM2B_PUBLIC *out)"
  106. .br
  107. .ti -1c
  108. .RI "TSS2_RC \fBifapi_json_TPM2_ALG_ID_deserialize\fP (json_object *jso, TPM2_ALG_ID *out)"
  109. .br
  110. .ti -1c
  111. .RI "TSS2_RC \fBifapi_json_TPM2_CC_deserialize\fP (json_object *jso, TPM2_CC *out)"
  112. .br
  113. .ti -1c
  114. .RI "TSS2_RC \fBifapi_json_TPM2_ECC_CURVE_deserialize\fP (json_object *jso, TPM2_ECC_CURVE *out)"
  115. .br
  116. .ti -1c
  117. .RI "TSS2_RC \fBifapi_json_TPM2_EO_deserialize\fP (json_object *jso, TPM2_EO *out)"
  118. .br
  119. .ti -1c
  120. .RI "TSS2_RC \fBifapi_json_TPM2_GENERATED_deserialize\fP (json_object *jso, TPM2_GENERATED *out)"
  121. .br
  122. .ti -1c
  123. .RI "TSS2_RC \fBifapi_json_TPM2_HANDLE_deserialize\fP (json_object *jso, TPM2_HANDLE *out)"
  124. .br
  125. .ti -1c
  126. .RI "TSS2_RC \fBifapi_json_TPM2_NT_deserialize\fP (json_object *jso, TPM2_NT *out)"
  127. .br
  128. .ti -1c
  129. .RI "TSS2_RC \fBifapi_json_TPM2_PT_PCR_deserialize\fP (json_object *jso, TPM2_PT_PCR *out)"
  130. .br
  131. .ti -1c
  132. .RI "TSS2_RC \fBifapi_json_TPM2_ST_deserialize\fP (json_object *jso, TPM2_ST *out)"
  133. .br
  134. .ti -1c
  135. .RI "TSS2_RC \fBifapi_json_TPMA_LOCALITY_deserialize\fP (json_object *jso, TPMA_LOCALITY *out)"
  136. .br
  137. .ti -1c
  138. .RI "TSS2_RC \fBifapi_json_TPMA_NV_deserialize\fP (json_object *jso, TPMA_NV *out)"
  139. .br
  140. .ti -1c
  141. .RI "TSS2_RC \fBifapi_json_TPMA_OBJECT_deserialize\fP (json_object *jso, TPMA_OBJECT *out)"
  142. .br
  143. .ti -1c
  144. .RI "TSS2_RC \fBifapi_json_TPMI_AES_KEY_BITS_deserialize\fP (json_object *jso, TPMI_AES_KEY_BITS *out)"
  145. .br
  146. .ti -1c
  147. .RI "TSS2_RC \fBifapi_json_TPMI_ALG_ECC_SCHEME_deserialize\fP (json_object *jso, TPMI_ALG_ECC_SCHEME *out)"
  148. .br
  149. .ti -1c
  150. .RI "TSS2_RC \fBifapi_json_TPMI_ALG_HASH_deserialize\fP (json_object *jso, TPMI_ALG_HASH *out)"
  151. .br
  152. .ti -1c
  153. .RI "TSS2_RC \fBifapi_json_TPMI_ALG_KDF_deserialize\fP (json_object *jso, TPMI_ALG_KDF *out)"
  154. .br
  155. .ti -1c
  156. .RI "TSS2_RC \fBifapi_json_TPMI_ALG_KEYEDHASH_SCHEME_deserialize\fP (json_object *jso, TPMI_ALG_KEYEDHASH_SCHEME *out)"
  157. .br
  158. .ti -1c
  159. .RI "TSS2_RC \fBifapi_json_TPMI_ALG_PUBLIC_deserialize\fP (json_object *jso, TPMI_ALG_PUBLIC *out)"
  160. .br
  161. .ti -1c
  162. .RI "TSS2_RC \fBifapi_json_TPMI_ALG_RSA_DECRYPT_deserialize\fP (json_object *jso, TPMI_ALG_RSA_DECRYPT *out)"
  163. .br
  164. .ti -1c
  165. .RI "TSS2_RC \fBifapi_json_TPMI_ALG_RSA_SCHEME_deserialize\fP (json_object *jso, TPMI_ALG_RSA_SCHEME *out)"
  166. .br
  167. .ti -1c
  168. .RI "TSS2_RC \fBifapi_json_TPMI_ALG_SIG_SCHEME_deserialize\fP (json_object *jso, TPMI_ALG_SIG_SCHEME *out)"
  169. .br
  170. .ti -1c
  171. .RI "TSS2_RC \fBifapi_json_TPMI_ALG_SYM_MODE_deserialize\fP (json_object *jso, TPMI_ALG_SYM_MODE *out)"
  172. .br
  173. .ti -1c
  174. .RI "TSS2_RC \fBifapi_json_TPMI_ALG_CIPHER_MODE_deserialize\fP (json_object *jso, TPMI_ALG_CIPHER_MODE *out)"
  175. .br
  176. .ti -1c
  177. .RI "TSS2_RC \fBifapi_json_TPMI_ALG_SYM_OBJECT_deserialize\fP (json_object *jso, TPMI_ALG_SYM_OBJECT *out)"
  178. .br
  179. .ti -1c
  180. .RI "TSS2_RC \fBifapi_json_TPMI_ALG_SYM_deserialize\fP (json_object *jso, TPMI_ALG_SYM *out)"
  181. .br
  182. .ti -1c
  183. .RI "TSS2_RC \fBifapi_json_TPMI_ECC_CURVE_deserialize\fP (json_object *jso, TPMI_ECC_CURVE *out)"
  184. .br
  185. .ti -1c
  186. .RI "TSS2_RC \fBifapi_json_TPMI_RH_HIERARCHY_deserialize\fP (json_object *jso, TPMI_RH_HIERARCHY *out)"
  187. .br
  188. .ti -1c
  189. .RI "TSS2_RC \fBifapi_json_TPMI_RH_NV_INDEX_deserialize\fP (json_object *jso, TPMI_RH_NV_INDEX *out)"
  190. .br
  191. .ti -1c
  192. .RI "TSS2_RC \fBifapi_json_TPMI_RSA_KEY_BITS_deserialize\fP (json_object *jso, TPMI_RSA_KEY_BITS *out)"
  193. .br
  194. .ti -1c
  195. .RI "TSS2_RC \fBifapi_json_TPMI_ST_ATTEST_deserialize\fP (json_object *jso, TPMI_ST_ATTEST *out)"
  196. .br
  197. .ti -1c
  198. .RI "TSS2_RC \fBifapi_json_TPMI_YES_NO_deserialize\fP (json_object *jso, TPMI_YES_NO *out)"
  199. .br
  200. .ti -1c
  201. .RI "TSS2_RC \fBifapi_json_TPML_DIGEST_VALUES_deserialize\fP (json_object *jso, TPML_DIGEST_VALUES *out)"
  202. .br
  203. .ti -1c
  204. .RI "TSS2_RC \fBifapi_json_TPML_PCR_SELECTION_deserialize\fP (json_object *jso, TPML_PCR_SELECTION *out)"
  205. .br
  206. .ti -1c
  207. .RI "TSS2_RC \fBifapi_json_TPMS_ATTEST_deserialize\fP (json_object *jso, TPMS_ATTEST *out)"
  208. .br
  209. .ti -1c
  210. .RI "TSS2_RC \fBifapi_json_TPMS_CERTIFY_INFO_deserialize\fP (json_object *jso, TPMS_CERTIFY_INFO *out)"
  211. .br
  212. .ti -1c
  213. .RI "TSS2_RC \fBifapi_json_TPMS_CLOCK_INFO_deserialize\fP (json_object *jso, TPMS_CLOCK_INFO *out)"
  214. .br
  215. .ti -1c
  216. .RI "TSS2_RC \fBifapi_json_TPMS_COMMAND_AUDIT_INFO_deserialize\fP (json_object *jso, TPMS_COMMAND_AUDIT_INFO *out)"
  217. .br
  218. .ti -1c
  219. .RI "TSS2_RC \fBifapi_json_TPMS_CREATION_DATA_deserialize\fP (json_object *jso, TPMS_CREATION_DATA *out)"
  220. .br
  221. .ti -1c
  222. .RI "TSS2_RC \fBifapi_json_TPMS_CREATION_INFO_deserialize\fP (json_object *jso, TPMS_CREATION_INFO *out)"
  223. .br
  224. .ti -1c
  225. .RI "TSS2_RC \fBifapi_json_TPMS_ECC_PARMS_deserialize\fP (json_object *jso, TPMS_ECC_PARMS *out)"
  226. .br
  227. .ti -1c
  228. .RI "TSS2_RC \fBifapi_json_TPMS_ECC_POINT_deserialize\fP (json_object *jso, TPMS_ECC_POINT *out)"
  229. .br
  230. .ti -1c
  231. .RI "TSS2_RC \fBifapi_json_TPMS_EMPTY_deserialize\fP (json_object *jso, TPMS_EMPTY *out)"
  232. .br
  233. .ti -1c
  234. .RI "TSS2_RC \fBifapi_json_TPMS_ENC_SCHEME_OAEP_deserialize\fP (json_object *jso, TPMS_ENC_SCHEME_OAEP *out)"
  235. .br
  236. .ti -1c
  237. .RI "TSS2_RC \fBifapi_json_TPMS_ENC_SCHEME_RSAES_deserialize\fP (json_object *jso, TPMS_ENC_SCHEME_RSAES *out)"
  238. .br
  239. .ti -1c
  240. .RI "TSS2_RC \fBifapi_json_TPMS_KEYEDHASH_PARMS_deserialize\fP (json_object *jso, TPMS_KEYEDHASH_PARMS *out)"
  241. .br
  242. .ti -1c
  243. .RI "TSS2_RC \fBifapi_json_TPMS_KEY_SCHEME_ECDH_deserialize\fP (json_object *jso, TPMS_KEY_SCHEME_ECDH *out)"
  244. .br
  245. .ti -1c
  246. .RI "TSS2_RC \fBifapi_json_TPMS_NV_CERTIFY_INFO_deserialize\fP (json_object *jso, TPMS_NV_CERTIFY_INFO *out)"
  247. .br
  248. .ti -1c
  249. .RI "TSS2_RC \fBifapi_json_TPMS_NV_PUBLIC_deserialize\fP (json_object *jso, TPMS_NV_PUBLIC *out)"
  250. .br
  251. .ti -1c
  252. .RI "TSS2_RC \fBifapi_json_TPMS_PCR_SELECTION_deserialize\fP (json_object *jso, TPMS_PCR_SELECTION *out)"
  253. .br
  254. .ti -1c
  255. .RI "TSS2_RC \fBifapi_json_TPMS_PCR_SELECT_deserialize\fP (json_object *jso, TPMS_PCR_SELECT *out)"
  256. .br
  257. .ti -1c
  258. .RI "TSS2_RC \fBifapi_json_TPMS_QUOTE_INFO_deserialize\fP (json_object *jso, TPMS_QUOTE_INFO *out)"
  259. .br
  260. .ti -1c
  261. .RI "TSS2_RC \fBifapi_json_TPMS_RSA_PARMS_deserialize\fP (json_object *jso, TPMS_RSA_PARMS *out)"
  262. .br
  263. .ti -1c
  264. .RI "TSS2_RC \fBifapi_json_TPMS_SCHEME_ECDAA_deserialize\fP (json_object *jso, TPMS_SCHEME_ECDAA *out)"
  265. .br
  266. .ti -1c
  267. .RI "TSS2_RC \fBifapi_json_TPMS_SCHEME_HASH_deserialize\fP (json_object *jso, TPMS_SCHEME_HASH *out)"
  268. .br
  269. .ti -1c
  270. .RI "TSS2_RC \fBifapi_json_TPMS_SCHEME_HMAC_deserialize\fP (json_object *jso, TPMS_SCHEME_HMAC *out)"
  271. .br
  272. .ti -1c
  273. .RI "TSS2_RC \fBifapi_json_TPMS_SCHEME_KDF1_SP800_108_deserialize\fP (json_object *jso, TPMS_SCHEME_KDF1_SP800_108 *out)"
  274. .br
  275. .ti -1c
  276. .RI "TSS2_RC \fBifapi_json_TPMS_SCHEME_KDF1_SP800_56A_deserialize\fP (json_object *jso, TPMS_SCHEME_KDF1_SP800_56A *out)"
  277. .br
  278. .ti -1c
  279. .RI "TSS2_RC \fBifapi_json_TPMS_SCHEME_MGF1_deserialize\fP (json_object *jso, TPMS_SCHEME_MGF1 *out)"
  280. .br
  281. .ti -1c
  282. .RI "TSS2_RC \fBifapi_json_TPMS_SCHEME_XOR_deserialize\fP (json_object *jso, TPMS_SCHEME_XOR *out)"
  283. .br
  284. .ti -1c
  285. .RI "TSS2_RC \fBifapi_json_TPMS_SESSION_AUDIT_INFO_deserialize\fP (json_object *jso, TPMS_SESSION_AUDIT_INFO *out)"
  286. .br
  287. .ti -1c
  288. .RI "TSS2_RC \fBifapi_json_TPMS_SIGNATURE_ECC_deserialize\fP (json_object *jso, TPMS_SIGNATURE_ECC *out)"
  289. .br
  290. .ti -1c
  291. .RI "TSS2_RC \fBifapi_json_TPMS_SIGNATURE_ECDAA_deserialize\fP (json_object *jso, TPMS_SIGNATURE_ECDAA *out)"
  292. .br
  293. .ti -1c
  294. .RI "TSS2_RC \fBifapi_json_TPMS_SIGNATURE_ECDSA_deserialize\fP (json_object *jso, TPMS_SIGNATURE_ECDSA *out)"
  295. .br
  296. .ti -1c
  297. .RI "TSS2_RC \fBifapi_json_TPMS_SIGNATURE_ECSCHNORR_deserialize\fP (json_object *jso, TPMS_SIGNATURE_ECSCHNORR *out)"
  298. .br
  299. .ti -1c
  300. .RI "TSS2_RC \fBifapi_json_TPMS_SIGNATURE_RSAPSS_deserialize\fP (json_object *jso, TPMS_SIGNATURE_RSAPSS *out)"
  301. .br
  302. .ti -1c
  303. .RI "TSS2_RC \fBifapi_json_TPMS_SIGNATURE_RSASSA_deserialize\fP (json_object *jso, TPMS_SIGNATURE_RSASSA *out)"
  304. .br
  305. .ti -1c
  306. .RI "TSS2_RC \fBifapi_json_TPMS_SIGNATURE_RSA_deserialize\fP (json_object *jso, TPMS_SIGNATURE_RSA *out)"
  307. .br
  308. .ti -1c
  309. .RI "TSS2_RC \fBifapi_json_TPMS_SIGNATURE_SM2_deserialize\fP (json_object *jso, TPMS_SIGNATURE_SM2 *out)"
  310. .br
  311. .ti -1c
  312. .RI "TSS2_RC \fBifapi_json_TPMS_SIG_SCHEME_ECDAA_deserialize\fP (json_object *jso, TPMS_SIG_SCHEME_ECDAA *out)"
  313. .br
  314. .ti -1c
  315. .RI "TSS2_RC \fBifapi_json_TPMS_SIG_SCHEME_ECDSA_deserialize\fP (json_object *jso, TPMS_SIG_SCHEME_ECDSA *out)"
  316. .br
  317. .ti -1c
  318. .RI "TSS2_RC \fBifapi_json_TPMS_SIG_SCHEME_ECSCHNORR_deserialize\fP (json_object *jso, TPMS_SIG_SCHEME_ECSCHNORR *out)"
  319. .br
  320. .ti -1c
  321. .RI "TSS2_RC \fBifapi_json_TPMS_SIG_SCHEME_RSAPSS_deserialize\fP (json_object *jso, TPMS_SIG_SCHEME_RSAPSS *out)"
  322. .br
  323. .ti -1c
  324. .RI "TSS2_RC \fBifapi_json_TPMS_SIG_SCHEME_RSASSA_deserialize\fP (json_object *jso, TPMS_SIG_SCHEME_RSASSA *out)"
  325. .br
  326. .ti -1c
  327. .RI "TSS2_RC \fBifapi_json_TPMS_SIG_SCHEME_SM2_deserialize\fP (json_object *jso, TPMS_SIG_SCHEME_SM2 *out)"
  328. .br
  329. .ti -1c
  330. .RI "TSS2_RC \fBifapi_json_TPMS_SYMCIPHER_PARMS_deserialize\fP (json_object *jso, TPMS_SYMCIPHER_PARMS *out)"
  331. .br
  332. .ti -1c
  333. .RI "TSS2_RC \fBifapi_json_TPMS_TIME_ATTEST_INFO_deserialize\fP (json_object *jso, TPMS_TIME_ATTEST_INFO *out)"
  334. .br
  335. .ti -1c
  336. .RI "TSS2_RC \fBifapi_json_TPMS_TIME_INFO_deserialize\fP (json_object *jso, TPMS_TIME_INFO *out)"
  337. .br
  338. .ti -1c
  339. .RI "TSS2_RC \fBifapi_json_TPMT_ECC_SCHEME_deserialize\fP (json_object *jso, TPMT_ECC_SCHEME *out)"
  340. .br
  341. .ti -1c
  342. .RI "TSS2_RC \fBifapi_json_TPMT_HA_deserialize\fP (json_object *jso, TPMT_HA *out)"
  343. .br
  344. .ti -1c
  345. .RI "TSS2_RC \fBifapi_json_TPMT_KDF_SCHEME_deserialize\fP (json_object *jso, TPMT_KDF_SCHEME *out)"
  346. .br
  347. .ti -1c
  348. .RI "TSS2_RC \fBifapi_json_TPMT_KEYEDHASH_SCHEME_deserialize\fP (json_object *jso, TPMT_KEYEDHASH_SCHEME *out)"
  349. .br
  350. .ti -1c
  351. .RI "TSS2_RC \fBifapi_json_TPMT_PUBLIC_deserialize\fP (json_object *jso, TPMT_PUBLIC *out)"
  352. .br
  353. .ti -1c
  354. .RI "TSS2_RC \fBifapi_json_TPMT_RSA_DECRYPT_deserialize\fP (json_object *jso, TPMT_RSA_DECRYPT *out)"
  355. .br
  356. .ti -1c
  357. .RI "TSS2_RC \fBifapi_json_TPMT_RSA_SCHEME_deserialize\fP (json_object *jso, TPMT_RSA_SCHEME *out)"
  358. .br
  359. .ti -1c
  360. .RI "TSS2_RC \fBifapi_json_TPMT_SIGNATURE_deserialize\fP (json_object *jso, TPMT_SIGNATURE *out)"
  361. .br
  362. .ti -1c
  363. .RI "TSS2_RC \fBifapi_json_TPMT_SIG_SCHEME_deserialize\fP (json_object *jso, TPMT_SIG_SCHEME *out)"
  364. .br
  365. .ti -1c
  366. .RI "TSS2_RC \fBifapi_json_TPMT_SYM_DEF_OBJECT_deserialize\fP (json_object *jso, TPMT_SYM_DEF_OBJECT *out)"
  367. .br
  368. .ti -1c
  369. .RI "TSS2_RC \fBifapi_json_TPMT_SYM_DEF_deserialize\fP (json_object *jso, TPMT_SYM_DEF *out)"
  370. .br
  371. .ti -1c
  372. .RI "TSS2_RC \fBifapi_json_TPMT_TK_CREATION_deserialize\fP (json_object *jso, TPMT_TK_CREATION *out)"
  373. .br
  374. .ti -1c
  375. .RI "TSS2_RC \fBifapi_json_TPMU_ASYM_SCHEME_deserialize\fP (UINT32 selector, json_object *jso, TPMU_ASYM_SCHEME *out)"
  376. .br
  377. .ti -1c
  378. .RI "TSS2_RC \fBifapi_json_TPMU_ATTEST_deserialize\fP (UINT32 selector, json_object *jso, TPMU_ATTEST *out)"
  379. .br
  380. .ti -1c
  381. .RI "TSS2_RC \fBifapi_json_TPMU_HA_deserialize\fP (UINT32 selector, json_object *jso, TPMU_HA *out)"
  382. .br
  383. .ti -1c
  384. .RI "TSS2_RC \fBifapi_json_TPMU_KDF_SCHEME_deserialize\fP (UINT32 selector, json_object *jso, TPMU_KDF_SCHEME *out)"
  385. .br
  386. .ti -1c
  387. .RI "TSS2_RC \fBifapi_json_TPMU_PUBLIC_ID_deserialize\fP (UINT32 selector, json_object *jso, TPMU_PUBLIC_ID *out)"
  388. .br
  389. .ti -1c
  390. .RI "TSS2_RC \fBifapi_json_TPMU_PUBLIC_PARMS_deserialize\fP (UINT32 selector, json_object *jso, TPMU_PUBLIC_PARMS *out)"
  391. .br
  392. .ti -1c
  393. .RI "TSS2_RC \fBifapi_json_TPMU_SCHEME_KEYEDHASH_deserialize\fP (UINT32 selector, json_object *jso, TPMU_SCHEME_KEYEDHASH *out)"
  394. .br
  395. .ti -1c
  396. .RI "TSS2_RC \fBifapi_json_TPMU_SIGNATURE_deserialize\fP (UINT32 selector, json_object *jso, TPMU_SIGNATURE *out)"
  397. .br
  398. .ti -1c
  399. .RI "TSS2_RC \fBifapi_json_TPMU_SIG_SCHEME_deserialize\fP (UINT32 selector, json_object *jso, TPMU_SIG_SCHEME *out)"
  400. .br
  401. .ti -1c
  402. .RI "TSS2_RC \fBifapi_json_TPMU_SYM_KEY_BITS_deserialize\fP (UINT32 selector, json_object *jso, TPMU_SYM_KEY_BITS *out)"
  403. .br
  404. .ti -1c
  405. .RI "TSS2_RC \fBifapi_json_TPMU_SYM_MODE_deserialize\fP (UINT32 selector, json_object *jso, TPMU_SYM_MODE *out)"
  406. .br
  407. .ti -1c
  408. .RI "TSS2_RC \fBifapi_json_UINT16_deserialize\fP (json_object *jso, UINT16 *out)"
  409. .br
  410. .ti -1c
  411. .RI "TSS2_RC \fBifapi_json_UINT32_deserialize\fP (json_object *jso, UINT32 *out)"
  412. .br
  413. .ti -1c
  414. .RI "TSS2_RC \fBifapi_json_UINT64_deserialize\fP (json_object *jso, UINT64 *out)"
  415. .br
  416. .ti -1c
  417. .RI "TSS2_RC \fBifapi_json_UINT8_ARY_deserialize\fP (json_object *jso, \fBUINT8_ARY\fP *out)"
  418. .br
  419. .ti -1c
  420. .RI "TSS2_RC \fBifapi_json_UINT8_deserialize\fP (json_object *jso, UINT8 *out)"
  421. .br
  422. .ti -1c
  423. .RI "TSS2_RC \fBifapi_json_byte_deserialize\fP (json_object *jso, UINT32 max, BYTE *out, UINT16 *out_size)"
  424. .br
  425. .ti -1c
  426. .RI "TSS2_RC \fBifapi_json_pcr_selection_deserialize\fP (json_object *jso, UINT8 *sizeofSelect, BYTE pcrSelect[])"
  427. .br
  428. .ti -1c
  429. .RI "TSS2_RC \fBifapi_json_TPMI_POLICYTYPE_deserialize\fP (json_object *jso, TPMI_POLICYTYPE *out)"
  430. .br
  431. .ti -1c
  432. .RI "TSS2_RC \fBifapi_json_TPMI_POLICYTYPE_deserialize_txt\fP (json_object *jso, TPMI_POLICYTYPE *out)"
  433. .br
  434. .ti -1c
  435. .RI "TSS2_RC \fBifapi_json_TPML_PCRVALUES_deserialize\fP (json_object *jso, \fBTPML_PCRVALUES\fP **out)"
  436. .br
  437. .ti -1c
  438. .RI "TSS2_RC \fBifapi_json_TPML_POLICYAUTHORIZATIONS_deserialize\fP (json_object *jso, \fBTPML_POLICYAUTHORIZATIONS\fP **out)"
  439. .br
  440. .ti -1c
  441. .RI "TSS2_RC \fBifapi_json_TPML_POLICYBRANCHES_deserialize\fP (json_object *jso, \fBTPML_POLICYBRANCHES\fP **out)"
  442. .br
  443. .ti -1c
  444. .RI "TSS2_RC \fBifapi_json_TPML_POLICYELEMENTS_deserialize\fP (json_object *jso, \fBTPML_POLICYELEMENTS\fP **out)"
  445. .br
  446. .ti -1c
  447. .RI "TSS2_RC \fBifapi_json_TPMS_PCRVALUE_deserialize\fP (json_object *jso, \fBTPMS_PCRVALUE\fP *out)"
  448. .br
  449. .ti -1c
  450. .RI "TSS2_RC \fBifapi_json_TPMS_POLICYACTION_deserialize\fP (json_object *jso, \fBTPMS_POLICYACTION\fP *out)"
  451. .br
  452. .ti -1c
  453. .RI "TSS2_RC \fBifapi_json_TPMS_POLICYAUTHORIZATION_deserialize\fP (json_object *jso, \fBTPMS_POLICYAUTHORIZATION\fP *out)"
  454. .br
  455. .ti -1c
  456. .RI "TSS2_RC \fBifapi_json_TPMS_POLICYAUTHORIZENV_deserialize\fP (json_object *jso, \fBTPMS_POLICYAUTHORIZENV\fP *out)"
  457. .br
  458. .ti -1c
  459. .RI "TSS2_RC \fBifapi_json_TPMS_POLICYAUTHORIZE_deserialize\fP (json_object *jso, \fBTPMS_POLICYAUTHORIZE\fP *out)"
  460. .br
  461. .ti -1c
  462. .RI "TSS2_RC \fBifapi_json_TPMS_POLICYAUTHVALUE_deserialize\fP (json_object *jso, \fBTPMS_POLICYAUTHVALUE\fP *out)"
  463. .br
  464. .ti -1c
  465. .RI "TSS2_RC \fBifapi_json_TPMS_POLICYBRANCH_deserialize\fP (json_object *jso, \fBTPMS_POLICYBRANCH\fP *out)"
  466. .br
  467. .ti -1c
  468. .RI "TSS2_RC \fBifapi_json_TPMS_POLICYCOMMANDCODE_deserialize\fP (json_object *jso, \fBTPMS_POLICYCOMMANDCODE\fP *out)"
  469. .br
  470. .ti -1c
  471. .RI "TSS2_RC \fBifapi_json_TPMS_POLICYCOUNTERTIMER_deserialize\fP (json_object *jso, \fBTPMS_POLICYCOUNTERTIMER\fP *out)"
  472. .br
  473. .ti -1c
  474. .RI "TSS2_RC \fBifapi_json_TPMS_POLICYCPHASH_deserialize\fP (json_object *jso, \fBTPMS_POLICYCPHASH\fP *out)"
  475. .br
  476. .ti -1c
  477. .RI "TSS2_RC \fBifapi_json_TPMS_POLICYDUPLICATIONSELECT_deserialize\fP (json_object *jso, \fBTPMS_POLICYDUPLICATIONSELECT\fP *out)"
  478. .br
  479. .ti -1c
  480. .RI "TSS2_RC \fBifapi_json_TPMS_POLICYLOCALITY_deserialize\fP (json_object *jso, \fBTPMS_POLICYLOCALITY\fP *out)"
  481. .br
  482. .ti -1c
  483. .RI "TSS2_RC \fBifapi_json_TPMS_POLICYNAMEHASH_deserialize\fP (json_object *jso, \fBTPMS_POLICYNAMEHASH\fP *out)"
  484. .br
  485. .ti -1c
  486. .RI "TSS2_RC \fBifapi_json_TPMS_POLICYNVWRITTEN_deserialize\fP (json_object *jso, \fBTPMS_POLICYNVWRITTEN\fP *out)"
  487. .br
  488. .ti -1c
  489. .RI "TSS2_RC \fBifapi_json_TPMS_POLICYNV_deserialize\fP (json_object *jso, \fBTPMS_POLICYNV\fP *out)"
  490. .br
  491. .ti -1c
  492. .RI "TSS2_RC \fBifapi_json_TPMS_POLICYOR_deserialize\fP (json_object *jso, \fBTPMS_POLICYOR\fP *out)"
  493. .br
  494. .ti -1c
  495. .RI "TSS2_RC \fBifapi_json_TPMS_POLICYPASSWORD_deserialize\fP (json_object *jso, \fBTPMS_POLICYPASSWORD\fP *out)"
  496. .br
  497. .ti -1c
  498. .RI "TSS2_RC \fBifapi_json_TPMS_POLICYPCR_deserialize\fP (json_object *jso, \fBTPMS_POLICYPCR\fP *out)"
  499. .br
  500. .ti -1c
  501. .RI "TSS2_RC \fBifapi_json_TPMS_POLICYPHYSICALPRESENCE_deserialize\fP (json_object *jso, \fBTPMS_POLICYPHYSICALPRESENCE\fP *out)"
  502. .br
  503. .ti -1c
  504. .RI "TSS2_RC \fBifapi_json_TPMS_POLICYSECRET_deserialize\fP (json_object *jso, \fBTPMS_POLICYSECRET\fP *out)"
  505. .br
  506. .ti -1c
  507. .RI "TSS2_RC \fBifapi_json_TPMS_POLICYSIGNED_deserialize\fP (json_object *jso, \fBTPMS_POLICYSIGNED\fP *out)"
  508. .br
  509. .ti -1c
  510. .RI "TSS2_RC \fBifapi_json_TPMS_POLICYTEMPLATE_deserialize\fP (json_object *jso, \fBTPMS_POLICYTEMPLATE\fP *out)"
  511. .br
  512. .ti -1c
  513. .RI "TSS2_RC \fBifapi_json_TPMS_POLICY_deserialize\fP (json_object *jso, \fBTPMS_POLICY\fP *out)"
  514. .br
  515. .ti -1c
  516. .RI "TSS2_RC \fBifapi_json_TPMT_POLICYELEMENT_deserialize\fP (json_object *jso, \fBTPMT_POLICYELEMENT\fP *out)"
  517. .br
  518. .ti -1c
  519. .RI "TSS2_RC \fBifapi_json_TPMU_POLICYELEMENT_deserialize\fP (UINT32 selector, json_object *jso, \fBTPMU_POLICYELEMENT\fP *out)"
  520. .br
  521. .ti -1c
  522. .RI "TSS2_RC \fBifapi_json_import_IFAPI_KEY_deserialize\fP (json_object *jso, \fBIFAPI_KEY\fP *out)"
  523. .br
  524. .in -1c
  525. .SH "Detailed Description"
  526. .PP
  527. Provides functions for the deserialization from JSON to FAPI objects\&.
  528. .SH "Function Documentation"
  529. .PP
  530. .SS "bool ifapi_get_sub_object (json_object * jso, char * name, json_object ** sub_jso)"
  531. Get sub object from a json object\&.
  532. .PP
  533. A sub object with a certain name stored in the passed object is returned\&. If the sub object is not found e second trial with the lower case version of the name will be performed\&.
  534. .PP
  535. param[in] jso the object with the sub object\&. param[in] name the name of the stored sub object\&. param[out] sub_jso the pointer to the sub object\&.
  536. .PP
  537. \fBReturn values:\fP
  538. .RS 4
  539. \fItrue\fP if object was found\&.
  540. .br
  541. \fIfalse\fP if the object was not found\&.
  542. .RE
  543. .PP
  544. .SS "TSS2_RC ifapi_json_BYTE_array_deserialize (size_t max, json_object * jso, BYTE * out)"
  545. Deserialize an array of BYTE structures\&.
  546. .PP
  547. \fBParameters:\fP
  548. .RS 4
  549. \fImax\fP the maximal number of bytess to be deserialized\&.
  550. .br
  551. \fIjso\fP the JSON object with the byte array\&.
  552. .br
  553. \fIout\fP the byte array for deserialization\&.
  554. .RE
  555. .PP
  556. \fBReturn values:\fP
  557. .RS 4
  558. \fITSS2_FAPI_RC_BAD_VALUE\fP if an invalid value was passed into the function\&.
  559. .RE
  560. .PP
  561. .SS "TSS2_RC ifapi_json_byte_deserialize (json_object * jso, UINT32 max, BYTE * out, UINT16 * out_size)"
  562. Deserialize a json array of bytes\&.
  563. .PP
  564. \fBParameters:\fP
  565. .RS 4
  566. \fIjso\fP the parent object of the json byte array\&.
  567. .br
  568. \fImax\fP maximal size of the deserialized object\&.
  569. .br
  570. \fIout*\fP Pointer to the deserialized byte array\&.
  571. .br
  572. \fIout_size\fP the length of the deserialized byte array\&.
  573. .RE
  574. .PP
  575. \fBReturn values:\fP
  576. .RS 4
  577. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  578. .br
  579. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  580. .RE
  581. .PP
  582. .SS "TSS2_RC ifapi_json_BYTE_deserialize (json_object * jso, BYTE * out)"
  583. Deserialize a BYTE json object\&.
  584. .PP
  585. \fBParameters:\fP
  586. .RS 4
  587. \fIjso\fP the json object to be deserialized\&.
  588. .br
  589. \fIout\fP the deserialzed binary object\&.
  590. .RE
  591. .PP
  592. \fBReturn values:\fP
  593. .RS 4
  594. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  595. .br
  596. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  597. .RE
  598. .PP
  599. .SS "TSS2_RC ifapi_json_char_deserialize (json_object * jso, char ** out)"
  600. Deserialize a character string\&.
  601. .PP
  602. \fBParameters:\fP
  603. .RS 4
  604. \fIjso\fP json string object\&.
  605. .br
  606. \fIout\fP the pointer to the created string\&.
  607. .RE
  608. .PP
  609. \fBReturn values:\fP
  610. .RS 4
  611. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  612. .br
  613. \fITSS2_FAPI_RC_MEMORY\fP if not enough memory can be allocated\&.
  614. .RE
  615. .PP
  616. .SS "TSS2_RC ifapi_json_FAPI_QUOTE_INFO_deserialize (json_object * jso, \fBFAPI_QUOTE_INFO\fP * out)"
  617. Deserialize a \fBFAPI_QUOTE_INFO\fP json object\&.
  618. .PP
  619. \fBParameters:\fP
  620. .RS 4
  621. \fIjso\fP the json object to be deserialized\&.
  622. .br
  623. \fIout\fP the deserialzed binary object\&.
  624. .RE
  625. .PP
  626. \fBReturn values:\fP
  627. .RS 4
  628. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  629. .br
  630. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  631. .br
  632. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  633. .RE
  634. .PP
  635. .SS "TSS2_RC ifapi_json_IFAPI_DUPLICATE_deserialize (json_object * jso, \fBIFAPI_DUPLICATE\fP * out)"
  636. Deserialize a \fBIFAPI_DUPLICATE\fP json object\&.
  637. .PP
  638. \fBParameters:\fP
  639. .RS 4
  640. \fIjso\fP the json object to be deserialized\&.
  641. .br
  642. \fIout\fP the deserialzed binary object\&.
  643. .RE
  644. .PP
  645. \fBReturn values:\fP
  646. .RS 4
  647. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  648. .br
  649. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  650. .br
  651. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  652. .br
  653. \fITSS2_FAPI_RC_MEMORY\fP if not enough memory can be allocated\&.
  654. .RE
  655. .PP
  656. .SS "TSS2_RC ifapi_json_IFAPI_EVENT_deserialize (json_object * jso, \fBIFAPI_EVENT\fP * out)"
  657. Deserialize a \fBIFAPI_EVENT\fP json object\&.
  658. .PP
  659. \fBParameters:\fP
  660. .RS 4
  661. \fIjso\fP the json object to be deserialized\&.
  662. .br
  663. \fIout\fP the deserialzed binary object\&.
  664. .RE
  665. .PP
  666. \fBReturn values:\fP
  667. .RS 4
  668. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  669. .br
  670. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  671. .br
  672. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  673. .br
  674. \fITSS2_FAPI_RC_MEMORY\fP if not enough memory can be allocated\&.
  675. .RE
  676. .PP
  677. .SS "TSS2_RC ifapi_json_IFAPI_EVENT_TYPE_deserialize (json_object * jso, IFAPI_EVENT_TYPE * out)"
  678. Deserialize a IFAPI_EVENT_TYPE json object\&.
  679. .PP
  680. \fBParameters:\fP
  681. .RS 4
  682. \fIjso\fP the json object to be deserialized\&.
  683. .br
  684. \fIout\fP the deserialzed binary object\&.
  685. .RE
  686. .PP
  687. \fBReturn values:\fP
  688. .RS 4
  689. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  690. .br
  691. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  692. .RE
  693. .PP
  694. .SS "TSS2_RC ifapi_json_IFAPI_EVENT_TYPE_deserialize_txt (json_object * jso, IFAPI_EVENT_TYPE * out)"
  695. Deserialize a json object of type IFAPI_EVENT_TYPE\&.
  696. .PP
  697. \fBParameters:\fP
  698. .RS 4
  699. \fIjso\fP the json object to be deserialized\&.
  700. .br
  701. \fIout\fP the deserialzed binary object\&.
  702. .RE
  703. .PP
  704. \fBReturn values:\fP
  705. .RS 4
  706. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  707. .br
  708. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  709. .RE
  710. .PP
  711. .SS "TSS2_RC ifapi_json_IFAPI_EVENT_UNION_deserialize (UINT32 selector, json_object * jso, \fBIFAPI_EVENT_UNION\fP * out)"
  712. Deserialize a \fBIFAPI_EVENT_UNION\fP json object\&.
  713. .PP
  714. This functions expects the Bitfield to be encoded as unsigned int in host-endianess\&.
  715. .PP
  716. \fBParameters:\fP
  717. .RS 4
  718. \fIjso\fP the json object to be deserialized\&.
  719. .br
  720. \fIselector\fP the event type\&.
  721. .br
  722. \fIout\fP the deserialzed binary object\&.
  723. .RE
  724. .PP
  725. \fBReturn values:\fP
  726. .RS 4
  727. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  728. .br
  729. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  730. .br
  731. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  732. .br
  733. \fITSS2_FAPI_RC_MEMORY\fP if not enough memory can be allocated\&.
  734. .RE
  735. .PP
  736. .SS "TSS2_RC ifapi_json_IFAPI_EXT_PUB_KEY_deserialize (json_object * jso, \fBIFAPI_EXT_PUB_KEY\fP * out)"
  737. Deserialize a \fBIFAPI_EXT_PUB_KEY\fP json object\&.
  738. .PP
  739. \fBParameters:\fP
  740. .RS 4
  741. \fIjso\fP the json object to be deserialized\&.
  742. .br
  743. \fIout\fP the deserialzed binary object\&.
  744. .RE
  745. .PP
  746. \fBReturn values:\fP
  747. .RS 4
  748. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  749. .br
  750. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  751. .br
  752. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  753. .br
  754. \fITSS2_FAPI_RC_MEMORY\fP if not enough memory can be allocated\&.
  755. .RE
  756. .PP
  757. .SS "TSS2_RC ifapi_json_IFAPI_HIERARCHY_deserialize (json_object * jso, \fBIFAPI_HIERARCHY\fP * out)"
  758. Deserialize a \fBIFAPI_NV\fP json object\&.
  759. .PP
  760. \fBParameters:\fP
  761. .RS 4
  762. \fIjso\fP the json object to be deserialized\&.
  763. .br
  764. \fIout\fP the deserialzed binary object\&.
  765. .RE
  766. .PP
  767. \fBReturn values:\fP
  768. .RS 4
  769. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  770. .br
  771. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  772. .br
  773. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  774. .br
  775. \fITSS2_FAPI_RC_MEMORY\fP if not enough memory can be allocated\&.
  776. .RE
  777. .PP
  778. .SS "TSS2_RC ifapi_json_IFAPI_IMA_EVENT_deserialize (json_object * jso, \fBIFAPI_IMA_EVENT\fP * out)"
  779. Deserialize a \fBIFAPI_IMA_EVENT\fP json object\&.
  780. .PP
  781. \fBParameters:\fP
  782. .RS 4
  783. \fIjso\fP the json object to be deserialized\&.
  784. .br
  785. \fIout\fP the deserialzed binary object\&.
  786. .RE
  787. .PP
  788. \fBReturn values:\fP
  789. .RS 4
  790. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  791. .br
  792. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  793. .br
  794. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  795. .br
  796. \fITSS2_FAPI_RC_MEMORY\fP if not enough memory can be allocated\&.
  797. .RE
  798. .PP
  799. .SS "TSS2_RC ifapi_json_IFAPI_KEY_deserialize (json_object * jso, \fBIFAPI_KEY\fP * out)"
  800. Deserialize a \fBIFAPI_KEY\fP json object\&.
  801. .PP
  802. \fBParameters:\fP
  803. .RS 4
  804. \fIjso\fP the json object to be deserialized\&.
  805. .br
  806. \fIout\fP the deserialzed binary object\&.
  807. .RE
  808. .PP
  809. \fBReturn values:\fP
  810. .RS 4
  811. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  812. .br
  813. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  814. .br
  815. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  816. .br
  817. \fITSS2_FAPI_RC_MEMORY\fP if not enough memory can be allocated\&.
  818. .RE
  819. .PP
  820. .SS "TSS2_RC ifapi_json_IFAPI_NV_deserialize (json_object * jso, \fBIFAPI_NV\fP * out)"
  821. Deserialize a \fBIFAPI_NV\fP json object\&.
  822. .PP
  823. \fBParameters:\fP
  824. .RS 4
  825. \fIjso\fP the json object to be deserialized\&.
  826. .br
  827. \fIout\fP the deserialzed binary object\&.
  828. .RE
  829. .PP
  830. \fBReturn values:\fP
  831. .RS 4
  832. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  833. .br
  834. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  835. .br
  836. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  837. .br
  838. \fITSS2_FAPI_RC_MEMORY\fP if not enough memory can be allocated\&.
  839. .RE
  840. .PP
  841. .SS "TSS2_RC ifapi_json_IFAPI_OBJECT_deserialize (json_object * jso, \fBIFAPI_OBJECT\fP * out)"
  842. Deserialize a IFAPI_OBJECT json object\&.
  843. .PP
  844. \fBParameters:\fP
  845. .RS 4
  846. \fIjso\fP the json object to be deserialized\&.
  847. .br
  848. \fIout\fP the deserialzed binary object\&.
  849. .RE
  850. .PP
  851. \fBReturn values:\fP
  852. .RS 4
  853. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  854. .br
  855. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  856. .br
  857. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  858. .br
  859. \fITSS2_FAPI_RC_GENERAL_FAILURE\fP if an internal error occurred\&.
  860. .br
  861. \fITSS2_FAPI_RC_MEMORY\fP if not enough memory can be allocated\&.
  862. .RE
  863. .PP
  864. .SS "TSS2_RC ifapi_json_IFAPI_OBJECT_TYPE_CONSTANT_deserialize (json_object * jso, IFAPI_OBJECT_TYPE_CONSTANT * out)"
  865. Deserialize a IFAPI_OBJECT_TYPE_CONSTANT json object\&.
  866. .PP
  867. \fBParameters:\fP
  868. .RS 4
  869. \fIjso\fP the json object to be deserialized\&.
  870. .br
  871. \fIout\fP the deserialzed binary object\&.
  872. .RE
  873. .PP
  874. \fBReturn values:\fP
  875. .RS 4
  876. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  877. .br
  878. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  879. .RE
  880. .PP
  881. .SS "TSS2_RC ifapi_json_IFAPI_TSS_EVENT_deserialize (json_object * jso, \fBIFAPI_TSS_EVENT\fP * out)"
  882. Deserialize a \fBIFAPI_TSS_EVENT\fP json object\&.
  883. .PP
  884. \fBParameters:\fP
  885. .RS 4
  886. \fIjso\fP the json object to be deserialized\&.
  887. .br
  888. \fIout\fP the deserialzed binary object\&.
  889. .RE
  890. .PP
  891. \fBReturn values:\fP
  892. .RS 4
  893. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  894. .br
  895. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  896. .br
  897. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  898. .br
  899. \fITSS2_FAPI_RC_MEMORY\fP if not enough memory can be allocated\&.
  900. .RE
  901. .PP
  902. .SS "ifapi_json_import_IFAPI_KEY_deserialize (json_object * jso, \fBIFAPI_KEY\fP * out)"
  903. Deserialize a import data to create a \fBIFAPI_KEY\fP json object\&.
  904. .PP
  905. \fBParameters:\fP
  906. .RS 4
  907. \fIjso\fP the json object to be deserialized\&.
  908. .br
  909. \fIout\fP the deserialzed binary object\&.
  910. .RE
  911. .PP
  912. \fBReturn values:\fP
  913. .RS 4
  914. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  915. .br
  916. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  917. .br
  918. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  919. .br
  920. \fITSS2_FAPI_RC_MEMORY\fP if not enough memory can be allocated\&.
  921. .RE
  922. .PP
  923. .SS "TSS2_RC ifapi_json_pcr_selection_deserialize (json_object * jso, UINT8 * sizeofSelect, BYTE pcrSelect[])"
  924. Deserialize json object which represents a pcr selection\&.
  925. .PP
  926. \fBParameters:\fP
  927. .RS 4
  928. \fIjso\fP json array of pcr registers\&.
  929. .br
  930. \fIsizeofSelect\fP size of bit mask for used pcr registers\&.
  931. .br
  932. \fIpcrSelect\fP byte array with bit mask\&.
  933. .RE
  934. .PP
  935. \fBReturn values:\fP
  936. .RS 4
  937. \fITSS2_FAPI_RC_BAD_VALUE\fP if an invalid value was passed into the function\&.
  938. .RE
  939. .PP
  940. .SS "TSS2_RC ifapi_json_TPM2_ALG_ID_deserialize (json_object * jso, TPM2_ALG_ID * out)"
  941. Deserialize a TPM2_ALG_ID json object\&.
  942. .PP
  943. \fBParameters:\fP
  944. .RS 4
  945. \fIjso\fP the json object to be deserialized\&.
  946. .br
  947. \fIout\fP the deserialzed binary object\&.
  948. .RE
  949. .PP
  950. \fBReturn values:\fP
  951. .RS 4
  952. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  953. .br
  954. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  955. .RE
  956. .PP
  957. .SS "TSS2_RC ifapi_json_TPM2_CC_deserialize (json_object * jso, TPM2_CC * out)"
  958. Deserialize a TPM2_CC json object\&.
  959. .PP
  960. \fBParameters:\fP
  961. .RS 4
  962. \fIjso\fP the json object to be deserialized\&.
  963. .br
  964. \fIout\fP the deserialzed binary object\&.
  965. .RE
  966. .PP
  967. \fBReturn values:\fP
  968. .RS 4
  969. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  970. .br
  971. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  972. .RE
  973. .PP
  974. .SS "TSS2_RC ifapi_json_TPM2_ECC_CURVE_deserialize (json_object * jso, TPM2_ECC_CURVE * out)"
  975. Deserialize a TPM2_ECC_CURVE json object\&.
  976. .PP
  977. \fBParameters:\fP
  978. .RS 4
  979. \fIjso\fP the json object to be deserialized\&.
  980. .br
  981. \fIout\fP the deserialzed binary object\&.
  982. .RE
  983. .PP
  984. \fBReturn values:\fP
  985. .RS 4
  986. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  987. .br
  988. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  989. .RE
  990. .PP
  991. .SS "TSS2_RC ifapi_json_TPM2_EO_deserialize (json_object * jso, TPM2_EO * out)"
  992. Deserialize a TPM2_EO json object\&.
  993. .PP
  994. \fBParameters:\fP
  995. .RS 4
  996. \fIjso\fP the json object to be deserialized\&.
  997. .br
  998. \fIout\fP the deserialzed binary object\&.
  999. .RE
  1000. .PP
  1001. \fBReturn values:\fP
  1002. .RS 4
  1003. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1004. .br
  1005. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1006. .RE
  1007. .PP
  1008. .SS "TSS2_RC ifapi_json_TPM2_GENERATED_deserialize (json_object * jso, TPM2_GENERATED * out)"
  1009. Deserialize a TPM2_GENERATED json object\&.
  1010. .PP
  1011. \fBParameters:\fP
  1012. .RS 4
  1013. \fIjso\fP the json object to be deserialized\&.
  1014. .br
  1015. \fIout\fP the deserialzed binary object\&.
  1016. .RE
  1017. .PP
  1018. \fBReturn values:\fP
  1019. .RS 4
  1020. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1021. .br
  1022. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1023. .RE
  1024. .PP
  1025. .SS "TSS2_RC ifapi_json_TPM2_HANDLE_deserialize (json_object * jso, TPM2_HANDLE * out)"
  1026. Deserialize a TPM2_HANDLE json object\&.
  1027. .PP
  1028. \fBParameters:\fP
  1029. .RS 4
  1030. \fIjso\fP the json object to be deserialized\&.
  1031. .br
  1032. \fIout\fP the deserialzed binary object\&.
  1033. .RE
  1034. .PP
  1035. \fBReturn values:\fP
  1036. .RS 4
  1037. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1038. .br
  1039. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1040. .RE
  1041. .PP
  1042. .SS "TSS2_RC ifapi_json_TPM2_NT_deserialize (json_object * jso, TPM2_NT * out)"
  1043. Deserialize a TPM2_NT json object\&.
  1044. .PP
  1045. \fBParameters:\fP
  1046. .RS 4
  1047. \fIjso\fP the json object to be deserialized\&.
  1048. .br
  1049. \fIout\fP the deserialzed binary object\&.
  1050. .RE
  1051. .PP
  1052. \fBReturn values:\fP
  1053. .RS 4
  1054. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1055. .br
  1056. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1057. .br
  1058. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  1059. .RE
  1060. .PP
  1061. .SS "TSS2_RC ifapi_json_TPM2_PT_PCR_deserialize (json_object * jso, TPM2_PT_PCR * out)"
  1062. Deserialize a TPM2_PT_PCR json object\&.
  1063. .PP
  1064. \fBParameters:\fP
  1065. .RS 4
  1066. \fIjso\fP the json object to be deserialized\&.
  1067. .br
  1068. \fIout\fP the deserialzed binary object\&.
  1069. .RE
  1070. .PP
  1071. \fBReturn values:\fP
  1072. .RS 4
  1073. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1074. .br
  1075. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1076. .RE
  1077. .PP
  1078. .SS "TSS2_RC ifapi_json_TPM2_ST_deserialize (json_object * jso, TPM2_ST * out)"
  1079. Deserialize a TPM2_ST json object\&.
  1080. .PP
  1081. \fBParameters:\fP
  1082. .RS 4
  1083. \fIjso\fP the json object to be deserialized\&.
  1084. .br
  1085. \fIout\fP the deserialzed binary object\&.
  1086. .RE
  1087. .PP
  1088. \fBReturn values:\fP
  1089. .RS 4
  1090. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1091. .br
  1092. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1093. .RE
  1094. .PP
  1095. .SS "TSS2_RC ifapi_json_TPM2B_CREATION_DATA_deserialize (json_object * jso, TPM2B_CREATION_DATA * out)"
  1096. Deserialize a TPM2B_CREATION_DATA json object\&.
  1097. .PP
  1098. \fBParameters:\fP
  1099. .RS 4
  1100. \fIjso\fP the json object to be deserialized\&.
  1101. .br
  1102. \fIout\fP the deserialzed binary object\&.
  1103. .RE
  1104. .PP
  1105. \fBReturn values:\fP
  1106. .RS 4
  1107. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1108. .br
  1109. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1110. .br
  1111. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  1112. .RE
  1113. .PP
  1114. .SS "TSS2_RC ifapi_json_TPM2B_DATA_deserialize (json_object * jso, TPM2B_DATA * out)"
  1115. Deserialize a TPM2B_DATA json object\&.
  1116. .PP
  1117. \fBParameters:\fP
  1118. .RS 4
  1119. \fIjso\fP the json object to be deserialized\&.
  1120. .br
  1121. \fIout\fP the deserialzed binary object\&.
  1122. .RE
  1123. .PP
  1124. \fBReturn values:\fP
  1125. .RS 4
  1126. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1127. .br
  1128. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1129. .br
  1130. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  1131. .RE
  1132. .PP
  1133. .SS "TSS2_RC ifapi_json_TPM2B_DIGEST_deserialize (json_object * jso, TPM2B_DIGEST * out)"
  1134. Deserialize a TPM2B_DIGEST json object\&.
  1135. .PP
  1136. \fBParameters:\fP
  1137. .RS 4
  1138. \fIjso\fP the json object to be deserialized\&.
  1139. .br
  1140. \fIout\fP the deserialzed binary object\&.
  1141. .RE
  1142. .PP
  1143. \fBReturn values:\fP
  1144. .RS 4
  1145. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1146. .br
  1147. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1148. .br
  1149. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  1150. .RE
  1151. .PP
  1152. .SS "TSS2_RC ifapi_json_TPM2B_ECC_PARAMETER_deserialize (json_object * jso, TPM2B_ECC_PARAMETER * out)"
  1153. Deserialize a TPM2B_ECC_PARAMETER json object\&.
  1154. .PP
  1155. \fBParameters:\fP
  1156. .RS 4
  1157. \fIjso\fP the json object to be deserialized\&.
  1158. .br
  1159. \fIout\fP the deserialzed binary object\&.
  1160. .RE
  1161. .PP
  1162. \fBReturn values:\fP
  1163. .RS 4
  1164. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1165. .br
  1166. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1167. .br
  1168. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  1169. .RE
  1170. .PP
  1171. .SS "TSS2_RC ifapi_json_TPM2B_ENCRYPTED_SECRET_deserialize (json_object * jso, TPM2B_ENCRYPTED_SECRET * out)"
  1172. Deserialize a TPM2B_ENCRYPTED_SECRET json object\&.
  1173. .PP
  1174. \fBParameters:\fP
  1175. .RS 4
  1176. \fIjso\fP the json object to be deserialized\&.
  1177. .br
  1178. \fIout\fP the deserialzed binary object\&.
  1179. .RE
  1180. .PP
  1181. \fBReturn values:\fP
  1182. .RS 4
  1183. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1184. .br
  1185. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1186. .br
  1187. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  1188. .RE
  1189. .PP
  1190. .SS "TSS2_RC ifapi_json_TPM2B_EVENT_deserialize (json_object * jso, TPM2B_EVENT * out)"
  1191. Deserialize a TPM2B_EVENT json object\&.
  1192. .PP
  1193. \fBParameters:\fP
  1194. .RS 4
  1195. \fIjso\fP the json object to be deserialized\&.
  1196. .br
  1197. \fIout\fP the deserialzed binary object\&.
  1198. .RE
  1199. .PP
  1200. \fBReturn values:\fP
  1201. .RS 4
  1202. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1203. .br
  1204. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1205. .br
  1206. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  1207. .RE
  1208. .PP
  1209. .SS "TSS2_RC ifapi_json_TPM2B_MAX_NV_BUFFER_deserialize (json_object * jso, TPM2B_MAX_NV_BUFFER * out)"
  1210. Deserialize a TPM2B_MAX_NV_BUFFER json object\&.
  1211. .PP
  1212. \fBParameters:\fP
  1213. .RS 4
  1214. \fIjso\fP the json object to be deserialized\&.
  1215. .br
  1216. \fIout\fP the deserialzed binary object\&.
  1217. .RE
  1218. .PP
  1219. \fBReturn values:\fP
  1220. .RS 4
  1221. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1222. .br
  1223. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1224. .br
  1225. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  1226. .RE
  1227. .PP
  1228. .SS "TSS2_RC ifapi_json_TPM2B_NAME_deserialize (json_object * jso, TPM2B_NAME * out)"
  1229. Deserialize a TPM2B_NAME json object\&.
  1230. .PP
  1231. \fBParameters:\fP
  1232. .RS 4
  1233. \fIjso\fP the json object to be deserialized\&.
  1234. .br
  1235. \fIout\fP the deserialzed binary object\&.
  1236. .RE
  1237. .PP
  1238. \fBReturn values:\fP
  1239. .RS 4
  1240. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1241. .br
  1242. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1243. .br
  1244. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  1245. .RE
  1246. .PP
  1247. .SS "TSS2_RC ifapi_json_TPM2B_NONCE_deserialize (json_object * jso, TPM2B_NONCE * out)"
  1248. Deserialize a TPM2B_NONCE json object\&.
  1249. .PP
  1250. \fBParameters:\fP
  1251. .RS 4
  1252. \fIjso\fP the json object to be deserialized\&.
  1253. .br
  1254. \fIout\fP the deserialzed binary object\&.
  1255. .RE
  1256. .PP
  1257. \fBReturn values:\fP
  1258. .RS 4
  1259. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1260. .br
  1261. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1262. .br
  1263. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  1264. .RE
  1265. .PP
  1266. .SS "TSS2_RC ifapi_json_TPM2B_NV_PUBLIC_deserialize (json_object * jso, TPM2B_NV_PUBLIC * out)"
  1267. Deserialize a TPM2B_NV_PUBLIC json object\&.
  1268. .PP
  1269. \fBParameters:\fP
  1270. .RS 4
  1271. \fIjso\fP the json object to be deserialized\&.
  1272. .br
  1273. \fIout\fP the deserialzed binary object\&.
  1274. .RE
  1275. .PP
  1276. \fBReturn values:\fP
  1277. .RS 4
  1278. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1279. .br
  1280. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1281. .br
  1282. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  1283. .RE
  1284. .PP
  1285. .SS "TSS2_RC ifapi_json_TPM2B_OPERAND_deserialize (json_object * jso, TPM2B_OPERAND * out)"
  1286. Deserialize a TPM2B_OPERAND json object\&.
  1287. .PP
  1288. \fBParameters:\fP
  1289. .RS 4
  1290. \fIjso\fP the json object to be deserialized\&.
  1291. .br
  1292. \fIout\fP the deserialzed binary object\&.
  1293. .RE
  1294. .PP
  1295. \fBReturn values:\fP
  1296. .RS 4
  1297. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1298. .br
  1299. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1300. .br
  1301. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  1302. .RE
  1303. .PP
  1304. .SS "TSS2_RC ifapi_json_TPM2B_PRIVATE_deserialize (json_object * jso, TPM2B_PRIVATE * out)"
  1305. Deserialize a TPM2B_PRIVATE json object\&.
  1306. .PP
  1307. \fBParameters:\fP
  1308. .RS 4
  1309. \fIjso\fP the json object to be deserialized\&.
  1310. .br
  1311. \fIout\fP the deserialzed binary object\&.
  1312. .RE
  1313. .PP
  1314. \fBReturn values:\fP
  1315. .RS 4
  1316. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1317. .br
  1318. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1319. .br
  1320. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  1321. .RE
  1322. .PP
  1323. .SS "TSS2_RC ifapi_json_TPM2B_PUBLIC_deserialize (json_object * jso, TPM2B_PUBLIC * out)"
  1324. Deserialize a TPM2B_PUBLIC json object\&.
  1325. .PP
  1326. \fBParameters:\fP
  1327. .RS 4
  1328. \fIjso\fP the json object to be deserialized\&.
  1329. .br
  1330. \fIout\fP the deserialzed binary object\&.
  1331. .RE
  1332. .PP
  1333. \fBReturn values:\fP
  1334. .RS 4
  1335. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1336. .br
  1337. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1338. .br
  1339. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  1340. .RE
  1341. .PP
  1342. .SS "TSS2_RC ifapi_json_TPM2B_PUBLIC_KEY_RSA_deserialize (json_object * jso, TPM2B_PUBLIC_KEY_RSA * out)"
  1343. Deserialize a TPM2B_PUBLIC_KEY_RSA json object\&.
  1344. .PP
  1345. \fBParameters:\fP
  1346. .RS 4
  1347. \fIjso\fP the json object to be deserialized\&.
  1348. .br
  1349. \fIout\fP the deserialzed binary object\&.
  1350. .RE
  1351. .PP
  1352. \fBReturn values:\fP
  1353. .RS 4
  1354. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1355. .br
  1356. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1357. .br
  1358. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  1359. .RE
  1360. .PP
  1361. .SS "TSS2_RC ifapi_json_TPMA_LOCALITY_deserialize (json_object * jso, TPMA_LOCALITY * out)"
  1362. Deserialize a TPMA_LOCALITY json object\&.
  1363. .PP
  1364. \fBParameters:\fP
  1365. .RS 4
  1366. \fIjso\fP the json object to be deserialized\&.
  1367. .br
  1368. \fIout\fP the deserialzed binary object\&.
  1369. .RE
  1370. .PP
  1371. \fBReturn values:\fP
  1372. .RS 4
  1373. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1374. .br
  1375. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1376. .RE
  1377. .PP
  1378. .SS "TSS2_RC ifapi_json_TPMA_NV_deserialize (json_object * jso, TPMA_NV * out)"
  1379. Deserialize a TPMA_NV json object\&.
  1380. .PP
  1381. \fBParameters:\fP
  1382. .RS 4
  1383. \fIjso\fP the json object to be deserialized\&.
  1384. .br
  1385. \fIout\fP the deserialzed binary object\&.
  1386. .RE
  1387. .PP
  1388. \fBReturn values:\fP
  1389. .RS 4
  1390. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1391. .br
  1392. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1393. .br
  1394. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  1395. .RE
  1396. .PP
  1397. .SS "TSS2_RC ifapi_json_TPMA_OBJECT_deserialize (json_object * jso, TPMA_OBJECT * out)"
  1398. Deserialize a TPMA_OBJECT json object\&.
  1399. .PP
  1400. \fBParameters:\fP
  1401. .RS 4
  1402. \fIjso\fP the json object to be deserialized\&.
  1403. .br
  1404. \fIout\fP the deserialzed binary object\&.
  1405. .RE
  1406. .PP
  1407. \fBReturn values:\fP
  1408. .RS 4
  1409. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1410. .br
  1411. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1412. .RE
  1413. .PP
  1414. .SS "TSS2_RC ifapi_json_TPMI_AES_KEY_BITS_deserialize (json_object * jso, TPMI_AES_KEY_BITS * out)"
  1415. Deserialize a TPMI_AES_KEY_BITS json object\&.
  1416. .PP
  1417. \fBReturn values:\fP
  1418. .RS 4
  1419. \fITSS2_FAPI_RC_BAD_VALUE\fP if an invalid value was passed into the function\&.
  1420. .RE
  1421. .PP
  1422. .SS "TSS2_RC ifapi_json_TPMI_ALG_CIPHER_MODE_deserialize (json_object * jso, TPMI_ALG_CIPHER_MODE * out)"
  1423. Deserialize a TPMI_ALG_CIPHER_MODE json object\&.
  1424. .PP
  1425. \fBParameters:\fP
  1426. .RS 4
  1427. \fIjso\fP the json object to be deserialized\&.
  1428. .br
  1429. \fIout\fP the deserialzed binary object\&.
  1430. .RE
  1431. .PP
  1432. \fBReturn values:\fP
  1433. .RS 4
  1434. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1435. .br
  1436. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1437. .RE
  1438. .PP
  1439. .SS "TSS2_RC ifapi_json_TPMI_ALG_ECC_SCHEME_deserialize (json_object * jso, TPMI_ALG_ECC_SCHEME * out)"
  1440. Deserialize a TPMI_ALG_ECC_SCHEME json object\&.
  1441. .PP
  1442. \fBParameters:\fP
  1443. .RS 4
  1444. \fIjso\fP the json object to be deserialized\&.
  1445. .br
  1446. \fIout\fP the deserialzed binary object\&.
  1447. .RE
  1448. .PP
  1449. \fBReturn values:\fP
  1450. .RS 4
  1451. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1452. .br
  1453. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1454. .RE
  1455. .PP
  1456. .SS "TSS2_RC ifapi_json_TPMI_ALG_HASH_deserialize (json_object * jso, TPMI_ALG_HASH * out)"
  1457. Deserialize a TPMI_ALG_HASH json object\&.
  1458. .PP
  1459. \fBParameters:\fP
  1460. .RS 4
  1461. \fIjso\fP the json object to be deserialized\&.
  1462. .br
  1463. \fIout\fP the deserialzed binary object\&.
  1464. .RE
  1465. .PP
  1466. \fBReturn values:\fP
  1467. .RS 4
  1468. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1469. .br
  1470. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1471. .RE
  1472. .PP
  1473. .SS "TSS2_RC ifapi_json_TPMI_ALG_KDF_deserialize (json_object * jso, TPMI_ALG_KDF * out)"
  1474. Deserialize a TPMI_ALG_KDF json object\&.
  1475. .PP
  1476. \fBParameters:\fP
  1477. .RS 4
  1478. \fIjso\fP the json object to be deserialized\&.
  1479. .br
  1480. \fIout\fP the deserialzed binary object\&.
  1481. .RE
  1482. .PP
  1483. \fBReturn values:\fP
  1484. .RS 4
  1485. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1486. .br
  1487. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1488. .RE
  1489. .PP
  1490. .SS "TSS2_RC ifapi_json_TPMI_ALG_KEYEDHASH_SCHEME_deserialize (json_object * jso, TPMI_ALG_KEYEDHASH_SCHEME * out)"
  1491. Deserialize a TPMI_ALG_KEYEDHASH_SCHEME json object\&.
  1492. .PP
  1493. \fBParameters:\fP
  1494. .RS 4
  1495. \fIjso\fP the json object to be deserialized\&.
  1496. .br
  1497. \fIout\fP the deserialzed binary object\&.
  1498. .RE
  1499. .PP
  1500. \fBReturn values:\fP
  1501. .RS 4
  1502. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1503. .br
  1504. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1505. .RE
  1506. .PP
  1507. .SS "TSS2_RC ifapi_json_TPMI_ALG_PUBLIC_deserialize (json_object * jso, TPMI_ALG_PUBLIC * out)"
  1508. Deserialize a TPMI_ALG_PUBLIC json object\&.
  1509. .PP
  1510. \fBParameters:\fP
  1511. .RS 4
  1512. \fIjso\fP the json object to be deserialized\&.
  1513. .br
  1514. \fIout\fP the deserialzed binary object\&.
  1515. .RE
  1516. .PP
  1517. \fBReturn values:\fP
  1518. .RS 4
  1519. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1520. .br
  1521. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1522. .RE
  1523. .PP
  1524. .SS "TSS2_RC ifapi_json_TPMI_ALG_RSA_DECRYPT_deserialize (json_object * jso, TPMI_ALG_RSA_DECRYPT * out)"
  1525. Deserialize a TPMI_ALG_RSA_DECRYPT json object\&.
  1526. .PP
  1527. \fBParameters:\fP
  1528. .RS 4
  1529. \fIjso\fP the json object to be deserialized\&.
  1530. .br
  1531. \fIout\fP the deserialzed binary object\&.
  1532. .RE
  1533. .PP
  1534. \fBReturn values:\fP
  1535. .RS 4
  1536. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1537. .br
  1538. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1539. .RE
  1540. .PP
  1541. .SS "TSS2_RC ifapi_json_TPMI_ALG_RSA_SCHEME_deserialize (json_object * jso, TPMI_ALG_RSA_SCHEME * out)"
  1542. Deserialize a TPMI_ALG_RSA_SCHEME json object\&.
  1543. .PP
  1544. \fBParameters:\fP
  1545. .RS 4
  1546. \fIjso\fP the json object to be deserialized\&.
  1547. .br
  1548. \fIout\fP the deserialzed binary object\&.
  1549. .RE
  1550. .PP
  1551. \fBReturn values:\fP
  1552. .RS 4
  1553. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1554. .br
  1555. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1556. .RE
  1557. .PP
  1558. .SS "TSS2_RC ifapi_json_TPMI_ALG_SIG_SCHEME_deserialize (json_object * jso, TPMI_ALG_SIG_SCHEME * out)"
  1559. Deserialize a TPMI_ALG_SIG_SCHEME json object\&.
  1560. .PP
  1561. \fBParameters:\fP
  1562. .RS 4
  1563. \fIjso\fP the json object to be deserialized\&.
  1564. .br
  1565. \fIout\fP the deserialzed binary object\&.
  1566. .RE
  1567. .PP
  1568. \fBReturn values:\fP
  1569. .RS 4
  1570. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1571. .br
  1572. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1573. .RE
  1574. .PP
  1575. .SS "TSS2_RC ifapi_json_TPMI_ALG_SYM_deserialize (json_object * jso, TPMI_ALG_SYM * out)"
  1576. Deserialize a TPMI_ALG_SYM json object\&.
  1577. .PP
  1578. \fBParameters:\fP
  1579. .RS 4
  1580. \fIjso\fP the json object to be deserialized\&.
  1581. .br
  1582. \fIout\fP the deserialzed binary object\&.
  1583. .RE
  1584. .PP
  1585. \fBReturn values:\fP
  1586. .RS 4
  1587. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1588. .br
  1589. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1590. .RE
  1591. .PP
  1592. .SS "TSS2_RC ifapi_json_TPMI_ALG_SYM_MODE_deserialize (json_object * jso, TPMI_ALG_SYM_MODE * out)"
  1593. Deserialize a TPMI_ALG_SYM_MODE json object\&.
  1594. .PP
  1595. \fBParameters:\fP
  1596. .RS 4
  1597. \fIjso\fP the json object to be deserialized\&.
  1598. .br
  1599. \fIout\fP the deserialzed binary object\&.
  1600. .RE
  1601. .PP
  1602. \fBReturn values:\fP
  1603. .RS 4
  1604. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1605. .br
  1606. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1607. .RE
  1608. .PP
  1609. .SS "TSS2_RC ifapi_json_TPMI_ALG_SYM_OBJECT_deserialize (json_object * jso, TPMI_ALG_SYM_OBJECT * out)"
  1610. Deserialize a TPMI_ALG_SYM_OBJECT json object\&.
  1611. .PP
  1612. \fBParameters:\fP
  1613. .RS 4
  1614. \fIjso\fP the json object to be deserialized\&.
  1615. .br
  1616. \fIout\fP the deserialzed binary object\&.
  1617. .RE
  1618. .PP
  1619. \fBReturn values:\fP
  1620. .RS 4
  1621. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1622. .br
  1623. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1624. .RE
  1625. .PP
  1626. .SS "TSS2_RC ifapi_json_TPMI_ECC_CURVE_deserialize (json_object * jso, TPMI_ECC_CURVE * out)"
  1627. Deserialize a TPMI_ECC_CURVE json object\&.
  1628. .PP
  1629. \fBReturn values:\fP
  1630. .RS 4
  1631. \fITSS2_FAPI_RC_BAD_VALUE\fP if an invalid value was passed into the function\&.
  1632. .RE
  1633. .PP
  1634. .SS "TSS2_RC ifapi_json_TPMI_POLICYTYPE_deserialize (json_object * jso, TPMI_POLICYTYPE * out)"
  1635. Deserialize a TPMI_POLICYTYPE json object\&.
  1636. .PP
  1637. \fBParameters:\fP
  1638. .RS 4
  1639. \fIjso\fP the json object to be deserialized\&.
  1640. .br
  1641. \fIout\fP the deserialzed binary object\&.
  1642. .RE
  1643. .PP
  1644. \fBReturn values:\fP
  1645. .RS 4
  1646. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1647. .br
  1648. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1649. .RE
  1650. .PP
  1651. .SS "TSS2_RC ifapi_json_TPMI_POLICYTYPE_deserialize_txt (json_object * jso, TPMI_POLICYTYPE * out)"
  1652. Deserialize a json object of type TPMI_POLICYTYPE\&.
  1653. .PP
  1654. \fBParameters:\fP
  1655. .RS 4
  1656. \fIjso\fP the json object to be deserialized\&.
  1657. .br
  1658. \fIout\fP the deserialzed binary object\&.
  1659. .RE
  1660. .PP
  1661. \fBReturn values:\fP
  1662. .RS 4
  1663. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1664. .br
  1665. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1666. .RE
  1667. .PP
  1668. .SS "TSS2_RC ifapi_json_TPMI_RH_HIERARCHY_deserialize (json_object * jso, TPMI_RH_HIERARCHY * out)"
  1669. Deserialize a TPMI_RH_HIERARCHY json object\&.
  1670. .PP
  1671. \fBParameters:\fP
  1672. .RS 4
  1673. \fIjso\fP the json object to be deserialized\&.
  1674. .br
  1675. \fIout\fP the deserialzed binary object\&.
  1676. .RE
  1677. .PP
  1678. \fBReturn values:\fP
  1679. .RS 4
  1680. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1681. .br
  1682. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1683. .RE
  1684. .PP
  1685. .SS "TSS2_RC ifapi_json_TPMI_RH_NV_INDEX_deserialize (json_object * jso, TPMI_RH_NV_INDEX * out)"
  1686. Deserialize a TPMI_RH_NV_INDEX json object\&.
  1687. .PP
  1688. \fBReturn values:\fP
  1689. .RS 4
  1690. \fITSS2_FAPI_RC_BAD_VALUE\fP if an invalid value was passed into the function\&.
  1691. .RE
  1692. .PP
  1693. .SS "TSS2_RC ifapi_json_TPMI_RSA_KEY_BITS_deserialize (json_object * jso, TPMI_RSA_KEY_BITS * out)"
  1694. Deserialize a TPMI_RSA_KEY_BITS json object\&.
  1695. .PP
  1696. \fBReturn values:\fP
  1697. .RS 4
  1698. \fITSS2_FAPI_RC_BAD_VALUE\fP if an invalid value was passed into the function\&.
  1699. .RE
  1700. .PP
  1701. .SS "TSS2_RC ifapi_json_TPMI_ST_ATTEST_deserialize (json_object * jso, TPMI_ST_ATTEST * out)"
  1702. Deserialize a TPMI_ST_ATTEST json object\&.
  1703. .PP
  1704. \fBParameters:\fP
  1705. .RS 4
  1706. \fIjso\fP the json object to be deserialized\&.
  1707. .br
  1708. \fIout\fP the deserialzed binary object\&.
  1709. .RE
  1710. .PP
  1711. \fBReturn values:\fP
  1712. .RS 4
  1713. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1714. .br
  1715. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1716. .RE
  1717. .PP
  1718. .SS "TSS2_RC ifapi_json_TPMI_YES_NO_deserialize (json_object * jso, TPMI_YES_NO * out)"
  1719. Deserialize a TPMI_YES_NO json object\&.
  1720. .PP
  1721. \fBParameters:\fP
  1722. .RS 4
  1723. \fIjso\fP the json object to be deserialized\&.
  1724. .br
  1725. \fIout\fP the deserialzed binary object\&.
  1726. .RE
  1727. .PP
  1728. \fBReturn values:\fP
  1729. .RS 4
  1730. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1731. .br
  1732. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1733. .RE
  1734. .PP
  1735. .SS "TSS2_RC ifapi_json_TPML_DIGEST_VALUES_deserialize (json_object * jso, TPML_DIGEST_VALUES * out)"
  1736. Deserialize a TPML_DIGEST_VALUES json object\&.
  1737. .PP
  1738. \fBParameters:\fP
  1739. .RS 4
  1740. \fIjso\fP the json object to be deserialized\&.
  1741. .br
  1742. \fIout\fP the deserialzed binary object\&.
  1743. .RE
  1744. .PP
  1745. \fBReturn values:\fP
  1746. .RS 4
  1747. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1748. .br
  1749. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1750. .br
  1751. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  1752. .RE
  1753. .PP
  1754. .SS "TSS2_RC ifapi_json_TPML_PCR_SELECTION_deserialize (json_object * jso, TPML_PCR_SELECTION * out)"
  1755. Deserialize a TPML_PCR_SELECTION json object\&.
  1756. .PP
  1757. \fBParameters:\fP
  1758. .RS 4
  1759. \fIjso\fP the json object to be deserialized\&.
  1760. .br
  1761. \fIout\fP the deserialzed binary object\&.
  1762. .RE
  1763. .PP
  1764. \fBReturn values:\fP
  1765. .RS 4
  1766. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1767. .br
  1768. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1769. .br
  1770. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  1771. .RE
  1772. .PP
  1773. .SS "TSS2_RC ifapi_json_TPML_PCRVALUES_deserialize (json_object * jso, \fBTPML_PCRVALUES\fP ** out)"
  1774. Deserialize a \fBTPML_PCRVALUES\fP json object\&.
  1775. .PP
  1776. \fBParameters:\fP
  1777. .RS 4
  1778. \fIjso\fP the json object to be deserialized\&.
  1779. .br
  1780. \fIout\fP the deserialzed binary object\&.
  1781. .RE
  1782. .PP
  1783. \fBReturn values:\fP
  1784. .RS 4
  1785. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1786. .br
  1787. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1788. .br
  1789. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  1790. .br
  1791. \fITSS2_FAPI_RC_MEMORY\fP if not enough memory can be allocated\&.
  1792. .RE
  1793. .PP
  1794. .SS "TSS2_RC ifapi_json_TPML_POLICYAUTHORIZATIONS_deserialize (json_object * jso, \fBTPML_POLICYAUTHORIZATIONS\fP ** out)"
  1795. Deserialize a \fBTPML_POLICYAUTHORIZATIONS\fP json object\&.
  1796. .PP
  1797. \fBParameters:\fP
  1798. .RS 4
  1799. \fIjso\fP the json object to be deserialized\&.
  1800. .br
  1801. \fIout\fP the deserialzed binary object\&.
  1802. .RE
  1803. .PP
  1804. \fBReturn values:\fP
  1805. .RS 4
  1806. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1807. .br
  1808. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1809. .br
  1810. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  1811. .br
  1812. \fITSS2_FAPI_RC_MEMORY\fP if not enough memory can be allocated\&.
  1813. .RE
  1814. .PP
  1815. .SS "TSS2_RC ifapi_json_TPML_POLICYBRANCHES_deserialize (json_object * jso, \fBTPML_POLICYBRANCHES\fP ** out)"
  1816. Deserialize a \fBTPML_POLICYBRANCHES\fP json object\&.
  1817. .PP
  1818. \fBParameters:\fP
  1819. .RS 4
  1820. \fIjso\fP the json object to be deserialized\&.
  1821. .br
  1822. \fIout\fP the deserialzed binary object\&.
  1823. .RE
  1824. .PP
  1825. \fBReturn values:\fP
  1826. .RS 4
  1827. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1828. .br
  1829. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1830. .br
  1831. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  1832. .br
  1833. \fITSS2_FAPI_RC_MEMORY\fP if not enough memory can be allocated\&.
  1834. .RE
  1835. .PP
  1836. .SS "TSS2_RC ifapi_json_TPML_POLICYELEMENTS_deserialize (json_object * jso, \fBTPML_POLICYELEMENTS\fP ** out)"
  1837. Deserialize a \fBTPML_POLICYELEMENTS\fP json object\&.
  1838. .PP
  1839. \fBParameters:\fP
  1840. .RS 4
  1841. \fIjso\fP the json object to be deserialized\&.
  1842. .br
  1843. \fIout\fP the deserialzed binary object\&.
  1844. .RE
  1845. .PP
  1846. \fBReturn values:\fP
  1847. .RS 4
  1848. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1849. .br
  1850. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1851. .br
  1852. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  1853. .br
  1854. \fITSS2_FAPI_RC_MEMORY\fP if not enough memory can be allocated\&.
  1855. .RE
  1856. .PP
  1857. .SS "TSS2_RC ifapi_json_TPMS_ATTEST_deserialize (json_object * jso, TPMS_ATTEST * out)"
  1858. Deserialize a TPMS_ATTEST json object\&.
  1859. .PP
  1860. \fBParameters:\fP
  1861. .RS 4
  1862. \fIjso\fP the json object to be deserialized\&.
  1863. .br
  1864. \fIout\fP the deserialzed binary object\&.
  1865. .RE
  1866. .PP
  1867. \fBReturn values:\fP
  1868. .RS 4
  1869. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1870. .br
  1871. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1872. .br
  1873. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  1874. .RE
  1875. .PP
  1876. .SS "TSS2_RC ifapi_json_TPMS_CERTIFY_INFO_deserialize (json_object * jso, TPMS_CERTIFY_INFO * out)"
  1877. Deserialize a TPMS_CERTIFY_INFO json object\&.
  1878. .PP
  1879. \fBParameters:\fP
  1880. .RS 4
  1881. \fIjso\fP the json object to be deserialized\&.
  1882. .br
  1883. \fIout\fP the deserialzed binary object\&.
  1884. .RE
  1885. .PP
  1886. \fBReturn values:\fP
  1887. .RS 4
  1888. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1889. .br
  1890. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1891. .br
  1892. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  1893. .RE
  1894. .PP
  1895. .SS "TSS2_RC ifapi_json_TPMS_CLOCK_INFO_deserialize (json_object * jso, TPMS_CLOCK_INFO * out)"
  1896. Deserialize a TPMS_CLOCK_INFO json object\&.
  1897. .PP
  1898. \fBParameters:\fP
  1899. .RS 4
  1900. \fIjso\fP the json object to be deserialized\&.
  1901. .br
  1902. \fIout\fP the deserialzed binary object\&.
  1903. .RE
  1904. .PP
  1905. \fBReturn values:\fP
  1906. .RS 4
  1907. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1908. .br
  1909. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1910. .br
  1911. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  1912. .RE
  1913. .PP
  1914. .SS "TSS2_RC ifapi_json_TPMS_COMMAND_AUDIT_INFO_deserialize (json_object * jso, TPMS_COMMAND_AUDIT_INFO * out)"
  1915. Deserialize a TPMS_COMMAND_AUDIT_INFO json object\&.
  1916. .PP
  1917. \fBParameters:\fP
  1918. .RS 4
  1919. \fIjso\fP the json object to be deserialized\&.
  1920. .br
  1921. \fIout\fP the deserialzed binary object\&.
  1922. .RE
  1923. .PP
  1924. \fBReturn values:\fP
  1925. .RS 4
  1926. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1927. .br
  1928. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1929. .br
  1930. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  1931. .RE
  1932. .PP
  1933. .SS "TSS2_RC ifapi_json_TPMS_CREATION_DATA_deserialize (json_object * jso, TPMS_CREATION_DATA * out)"
  1934. Deserialize a TPMS_CREATION_DATA json object\&.
  1935. .PP
  1936. \fBParameters:\fP
  1937. .RS 4
  1938. \fIjso\fP the json object to be deserialized\&.
  1939. .br
  1940. \fIout\fP the deserialzed binary object\&.
  1941. .RE
  1942. .PP
  1943. \fBReturn values:\fP
  1944. .RS 4
  1945. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1946. .br
  1947. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1948. .br
  1949. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  1950. .RE
  1951. .PP
  1952. .SS "TSS2_RC ifapi_json_TPMS_CREATION_INFO_deserialize (json_object * jso, TPMS_CREATION_INFO * out)"
  1953. Deserialize a TPMS_CREATION_INFO json object\&.
  1954. .PP
  1955. \fBParameters:\fP
  1956. .RS 4
  1957. \fIjso\fP the json object to be deserialized\&.
  1958. .br
  1959. \fIout\fP the deserialzed binary object\&.
  1960. .RE
  1961. .PP
  1962. \fBReturn values:\fP
  1963. .RS 4
  1964. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1965. .br
  1966. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1967. .br
  1968. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  1969. .RE
  1970. .PP
  1971. .SS "TSS2_RC ifapi_json_TPMS_ECC_PARMS_deserialize (json_object * jso, TPMS_ECC_PARMS * out)"
  1972. Deserialize a TPMS_ECC_PARMS json object\&.
  1973. .PP
  1974. \fBParameters:\fP
  1975. .RS 4
  1976. \fIjso\fP the json object to be deserialized\&.
  1977. .br
  1978. \fIout\fP the deserialzed binary object\&.
  1979. .RE
  1980. .PP
  1981. \fBReturn values:\fP
  1982. .RS 4
  1983. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  1984. .br
  1985. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  1986. .br
  1987. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  1988. .RE
  1989. .PP
  1990. .SS "TSS2_RC ifapi_json_TPMS_ECC_POINT_deserialize (json_object * jso, TPMS_ECC_POINT * out)"
  1991. Deserialize a TPMS_ECC_POINT json object\&.
  1992. .PP
  1993. \fBParameters:\fP
  1994. .RS 4
  1995. \fIjso\fP the json object to be deserialized\&.
  1996. .br
  1997. \fIout\fP the deserialzed binary object\&.
  1998. .RE
  1999. .PP
  2000. \fBReturn values:\fP
  2001. .RS 4
  2002. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2003. .br
  2004. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2005. .br
  2006. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2007. .RE
  2008. .PP
  2009. .SS "TSS2_RC ifapi_json_TPMS_EMPTY_deserialize (json_object * jso, TPMS_EMPTY * out)"
  2010. Deserialize a TPMS_EMPTY \&.
  2011. .PP
  2012. \fBParameters:\fP
  2013. .RS 4
  2014. \fIout\fP not used\&.
  2015. .br
  2016. \fIjso\fP not used\&.
  2017. .RE
  2018. .PP
  2019. .SS "TSS2_RC ifapi_json_TPMS_ENC_SCHEME_OAEP_deserialize (json_object * jso, TPMS_ENC_SCHEME_OAEP * out)"
  2020. Deserialize a TPMS_ENC_SCHEME_OAEP json object\&.
  2021. .PP
  2022. \fBParameters:\fP
  2023. .RS 4
  2024. \fIjso\fP the json object to be deserialized\&.
  2025. .br
  2026. \fIout\fP the deserialzed binary object\&.
  2027. .RE
  2028. .PP
  2029. \fBReturn values:\fP
  2030. .RS 4
  2031. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2032. .br
  2033. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2034. .br
  2035. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2036. .RE
  2037. .PP
  2038. .SS "TSS2_RC ifapi_json_TPMS_ENC_SCHEME_RSAES_deserialize (json_object * jso, TPMS_ENC_SCHEME_RSAES * out)"
  2039. Deserialize a TPMS_ENC_SCHEME_RSAES json object\&.
  2040. .PP
  2041. \fBParameters:\fP
  2042. .RS 4
  2043. \fIjso\fP the json object to be deserialized\&.
  2044. .br
  2045. \fIout\fP the deserialzed binary object\&.
  2046. .RE
  2047. .PP
  2048. \fBReturn values:\fP
  2049. .RS 4
  2050. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2051. .br
  2052. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2053. .RE
  2054. .PP
  2055. .SS "TSS2_RC ifapi_json_TPMS_KEY_SCHEME_ECDH_deserialize (json_object * jso, TPMS_KEY_SCHEME_ECDH * out)"
  2056. Deserialize a TPMS_KEY_SCHEME_ECDH json object\&.
  2057. .PP
  2058. \fBParameters:\fP
  2059. .RS 4
  2060. \fIjso\fP the json object to be deserialized\&.
  2061. .br
  2062. \fIout\fP the deserialzed binary object\&.
  2063. .RE
  2064. .PP
  2065. \fBReturn values:\fP
  2066. .RS 4
  2067. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2068. .br
  2069. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2070. .br
  2071. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2072. .RE
  2073. .PP
  2074. .SS "TSS2_RC ifapi_json_TPMS_KEYEDHASH_PARMS_deserialize (json_object * jso, TPMS_KEYEDHASH_PARMS * out)"
  2075. Deserialize a TPMS_KEYEDHASH_PARMS json object\&.
  2076. .PP
  2077. \fBParameters:\fP
  2078. .RS 4
  2079. \fIjso\fP the json object to be deserialized\&.
  2080. .br
  2081. \fIout\fP the deserialzed binary object\&.
  2082. .RE
  2083. .PP
  2084. \fBReturn values:\fP
  2085. .RS 4
  2086. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2087. .br
  2088. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2089. .br
  2090. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2091. .RE
  2092. .PP
  2093. .SS "TSS2_RC ifapi_json_TPMS_NV_CERTIFY_INFO_deserialize (json_object * jso, TPMS_NV_CERTIFY_INFO * out)"
  2094. Deserialize a TPMS_NV_CERTIFY_INFO json object\&.
  2095. .PP
  2096. \fBParameters:\fP
  2097. .RS 4
  2098. \fIjso\fP the json object to be deserialized\&.
  2099. .br
  2100. \fIout\fP the deserialzed binary object\&.
  2101. .RE
  2102. .PP
  2103. \fBReturn values:\fP
  2104. .RS 4
  2105. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2106. .br
  2107. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2108. .br
  2109. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2110. .RE
  2111. .PP
  2112. .SS "TSS2_RC ifapi_json_TPMS_NV_PUBLIC_deserialize (json_object * jso, TPMS_NV_PUBLIC * out)"
  2113. Deserialize a TPMS_NV_PUBLIC json object\&.
  2114. .PP
  2115. \fBParameters:\fP
  2116. .RS 4
  2117. \fIjso\fP the json object to be deserialized\&.
  2118. .br
  2119. \fIout\fP the deserialzed binary object\&.
  2120. .RE
  2121. .PP
  2122. \fBReturn values:\fP
  2123. .RS 4
  2124. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2125. .br
  2126. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2127. .br
  2128. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2129. .RE
  2130. .PP
  2131. .SS "TSS2_RC ifapi_json_TPMS_PCR_SELECT_deserialize (json_object * jso, TPMS_PCR_SELECT * out)"
  2132. Deserialize a TPMS_PCR_SELECT variable\&.
  2133. .PP
  2134. \fBParameters:\fP
  2135. .RS 4
  2136. \fIjso\fP json object to be deserialized\&.
  2137. .br
  2138. \fIout\fP the deserialized object\&.
  2139. .RE
  2140. .PP
  2141. \fBReturn values:\fP
  2142. .RS 4
  2143. \fITSS2_FAPI_RC_BAD_VALUE\fP if an invalid value was passed into the function\&.
  2144. .RE
  2145. .PP
  2146. .SS "TSS2_RC ifapi_json_TPMS_PCR_SELECTION_deserialize (json_object * jso, TPMS_PCR_SELECTION * out)"
  2147. Deserialize a TPMS_PCR_SELECTION variable\&.
  2148. .PP
  2149. \fBParameters:\fP
  2150. .RS 4
  2151. \fIjso\fP json object to be deserialized\&.
  2152. .br
  2153. \fIout\fP the deserialized object\&.
  2154. .RE
  2155. .PP
  2156. \fBReturn values:\fP
  2157. .RS 4
  2158. \fITSS2_FAPI_RC_BAD_VALUE\fP if an invalid value was passed into the function\&.
  2159. .RE
  2160. .PP
  2161. .SS "TSS2_RC ifapi_json_TPMS_PCRVALUE_deserialize (json_object * jso, \fBTPMS_PCRVALUE\fP * out)"
  2162. Deserialize a \fBTPMS_PCRVALUE\fP json object\&.
  2163. .PP
  2164. \fBParameters:\fP
  2165. .RS 4
  2166. \fIjso\fP the json object to be deserialized\&.
  2167. .br
  2168. \fIout\fP the deserialzed binary object\&.
  2169. .RE
  2170. .PP
  2171. \fBReturn values:\fP
  2172. .RS 4
  2173. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2174. .br
  2175. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2176. .br
  2177. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2178. .RE
  2179. .PP
  2180. .SS "TSS2_RC ifapi_json_TPMS_POLICY_deserialize (json_object * jso, \fBTPMS_POLICY\fP * out)"
  2181. Deserialize a \fBTPMS_POLICY\fP json object\&.
  2182. .PP
  2183. \fBParameters:\fP
  2184. .RS 4
  2185. \fIjso\fP the json object to be deserialized\&.
  2186. .br
  2187. \fIout\fP the deserialzed binary object\&.
  2188. .RE
  2189. .PP
  2190. \fBReturn values:\fP
  2191. .RS 4
  2192. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2193. .br
  2194. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2195. .br
  2196. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2197. .br
  2198. \fITSS2_FAPI_RC_MEMORY\fP if not enough memory can be allocated\&.
  2199. .RE
  2200. .PP
  2201. .SS "TSS2_RC ifapi_json_TPMS_POLICYACTION_deserialize (json_object * jso, \fBTPMS_POLICYACTION\fP * out)"
  2202. Deserialize a \fBTPMS_POLICYACTION\fP json object\&.
  2203. .PP
  2204. \fBParameters:\fP
  2205. .RS 4
  2206. \fIjso\fP the json object to be deserialized\&.
  2207. .br
  2208. \fIout\fP the deserialzed binary object\&.
  2209. .RE
  2210. .PP
  2211. \fBReturn values:\fP
  2212. .RS 4
  2213. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2214. .br
  2215. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2216. .br
  2217. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2218. .br
  2219. \fITSS2_FAPI_RC_MEMORY\fP if not enough memory can be allocated\&.
  2220. .RE
  2221. .PP
  2222. .SS "TSS2_RC ifapi_json_TPMS_POLICYAUTHORIZATION_deserialize (json_object * jso, \fBTPMS_POLICYAUTHORIZATION\fP * out)"
  2223. Deserialize a \fBTPMS_POLICYAUTHORIZATION\fP json object\&.
  2224. .PP
  2225. \fBParameters:\fP
  2226. .RS 4
  2227. \fIjso\fP the json object to be deserialized\&.
  2228. .br
  2229. \fIout\fP the deserialzed binary object\&.
  2230. .RE
  2231. .PP
  2232. \fBReturn values:\fP
  2233. .RS 4
  2234. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2235. .br
  2236. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2237. .br
  2238. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2239. .br
  2240. \fITSS2_FAPI_RC_MEMORY\fP if not enough memory can be allocated\&.
  2241. .RE
  2242. .PP
  2243. .SS "TSS2_RC ifapi_json_TPMS_POLICYAUTHORIZE_deserialize (json_object * jso, \fBTPMS_POLICYAUTHORIZE\fP * out)"
  2244. Deserialize a \fBTPMS_POLICYAUTHORIZE\fP json object\&.
  2245. .PP
  2246. \fBParameters:\fP
  2247. .RS 4
  2248. \fIjso\fP the json object to be deserialized\&.
  2249. .br
  2250. \fIout\fP the deserialzed binary object\&.
  2251. .RE
  2252. .PP
  2253. \fBReturn values:\fP
  2254. .RS 4
  2255. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2256. .br
  2257. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2258. .br
  2259. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2260. .br
  2261. \fITSS2_FAPI_RC_MEMORY\fP if not enough memory can be allocated\&.
  2262. .RE
  2263. .PP
  2264. < counter for conditional fields
  2265. .SS "TSS2_RC ifapi_json_TPMS_POLICYAUTHORIZENV_deserialize (json_object * jso, \fBTPMS_POLICYAUTHORIZENV\fP * out)"
  2266. Deserialize a \fBTPMS_POLICYAUTHORIZENV\fP json object\&.
  2267. .PP
  2268. \fBParameters:\fP
  2269. .RS 4
  2270. \fIjso\fP the json object to be deserialized\&.
  2271. .br
  2272. \fIout\fP the deserialzed binary object\&.
  2273. .RE
  2274. .PP
  2275. \fBReturn values:\fP
  2276. .RS 4
  2277. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2278. .br
  2279. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2280. .br
  2281. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2282. .br
  2283. \fITSS2_FAPI_RC_MEMORY\fP if not enough memory can be allocated\&.
  2284. .RE
  2285. .PP
  2286. < counter for conditional fields
  2287. .SS "TSS2_RC ifapi_json_TPMS_POLICYAUTHVALUE_deserialize (json_object * jso, \fBTPMS_POLICYAUTHVALUE\fP * out)"
  2288. Deserialize a \fBTPMS_POLICYAUTHVALUE\fP json object\&.
  2289. .PP
  2290. \fBParameters:\fP
  2291. .RS 4
  2292. \fIjso\fP the json object to be deserialized\&.
  2293. .br
  2294. \fIout\fP the deserialzed binary object\&.
  2295. .RE
  2296. .PP
  2297. \fBReturn values:\fP
  2298. .RS 4
  2299. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2300. .br
  2301. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2302. .RE
  2303. .PP
  2304. .SS "TSS2_RC ifapi_json_TPMS_POLICYBRANCH_deserialize (json_object * jso, \fBTPMS_POLICYBRANCH\fP * out)"
  2305. Deserialize a \fBTPMS_POLICYBRANCH\fP json object\&.
  2306. .PP
  2307. \fBParameters:\fP
  2308. .RS 4
  2309. \fIjso\fP the json object to be deserialized\&.
  2310. .br
  2311. \fIout\fP the deserialzed binary object\&.
  2312. .RE
  2313. .PP
  2314. \fBReturn values:\fP
  2315. .RS 4
  2316. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2317. .br
  2318. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2319. .br
  2320. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2321. .br
  2322. \fITSS2_FAPI_RC_MEMORY\fP if not enough memory can be allocated\&.
  2323. .RE
  2324. .PP
  2325. .SS "TSS2_RC ifapi_json_TPMS_POLICYCOMMANDCODE_deserialize (json_object * jso, \fBTPMS_POLICYCOMMANDCODE\fP * out)"
  2326. Deserialize a \fBTPMS_POLICYCOMMANDCODE\fP json object\&.
  2327. .PP
  2328. \fBParameters:\fP
  2329. .RS 4
  2330. \fIjso\fP the json object to be deserialized\&.
  2331. .br
  2332. \fIout\fP the deserialzed binary object\&.
  2333. .RE
  2334. .PP
  2335. \fBReturn values:\fP
  2336. .RS 4
  2337. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2338. .br
  2339. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2340. .br
  2341. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2342. .RE
  2343. .PP
  2344. .SS "TSS2_RC ifapi_json_TPMS_POLICYCOUNTERTIMER_deserialize (json_object * jso, \fBTPMS_POLICYCOUNTERTIMER\fP * out)"
  2345. Deserialize a \fBTPMS_POLICYCOUNTERTIMER\fP json object\&.
  2346. .PP
  2347. \fBParameters:\fP
  2348. .RS 4
  2349. \fIjso\fP the json object to be deserialized\&.
  2350. .br
  2351. \fIout\fP the deserialzed binary object\&.
  2352. .RE
  2353. .PP
  2354. \fBReturn values:\fP
  2355. .RS 4
  2356. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2357. .br
  2358. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2359. .br
  2360. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2361. .RE
  2362. .PP
  2363. .SS "TSS2_RC ifapi_json_TPMS_POLICYCPHASH_deserialize (json_object * jso, \fBTPMS_POLICYCPHASH\fP * out)"
  2364. Deserialize a \fBTPMS_POLICYCPHASH\fP json object\&.
  2365. .PP
  2366. \fBParameters:\fP
  2367. .RS 4
  2368. \fIjso\fP the json object to be deserialized\&.
  2369. .br
  2370. \fIout\fP the deserialzed binary object\&.
  2371. .RE
  2372. .PP
  2373. \fBReturn values:\fP
  2374. .RS 4
  2375. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2376. .br
  2377. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2378. .br
  2379. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2380. .RE
  2381. .PP
  2382. .SS "TSS2_RC ifapi_json_TPMS_POLICYDUPLICATIONSELECT_deserialize (json_object * jso, \fBTPMS_POLICYDUPLICATIONSELECT\fP * out)"
  2383. Deserialize a \fBTPMS_POLICYDUPLICATIONSELECT\fP json object\&.
  2384. .PP
  2385. \fBParameters:\fP
  2386. .RS 4
  2387. \fIjso\fP the json object to be deserialized\&.
  2388. .br
  2389. \fIout\fP the deserialzed binary object\&.
  2390. .RE
  2391. .PP
  2392. \fBReturn values:\fP
  2393. .RS 4
  2394. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2395. .br
  2396. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2397. .br
  2398. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2399. .br
  2400. \fITSS2_FAPI_RC_MEMORY\fP if not enough memory can be allocated\&.
  2401. .RE
  2402. .PP
  2403. < counter for conditional fields
  2404. .SS "TSS2_RC ifapi_json_TPMS_POLICYLOCALITY_deserialize (json_object * jso, \fBTPMS_POLICYLOCALITY\fP * out)"
  2405. Deserialize a \fBTPMS_POLICYLOCALITY\fP json object\&.
  2406. .PP
  2407. \fBParameters:\fP
  2408. .RS 4
  2409. \fIjso\fP the json object to be deserialized\&.
  2410. .br
  2411. \fIout\fP the deserialzed binary object\&.
  2412. .RE
  2413. .PP
  2414. \fBReturn values:\fP
  2415. .RS 4
  2416. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2417. .br
  2418. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2419. .br
  2420. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2421. .RE
  2422. .PP
  2423. .SS "TSS2_RC ifapi_json_TPMS_POLICYNAMEHASH_deserialize (json_object * jso, \fBTPMS_POLICYNAMEHASH\fP * out)"
  2424. Deserialize a \fBTPMS_POLICYNAMEHASH\fP json object\&.
  2425. .PP
  2426. \fBParameters:\fP
  2427. .RS 4
  2428. \fIjso\fP the json object to be deserialized\&.
  2429. .br
  2430. \fIout\fP the deserialzed binary object\&.
  2431. .RE
  2432. .PP
  2433. \fBReturn values:\fP
  2434. .RS 4
  2435. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2436. .br
  2437. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2438. .br
  2439. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2440. .br
  2441. \fITSS2_FAPI_RC_MEMORY\fP if not enough memory can be allocated\&.
  2442. .RE
  2443. .PP
  2444. < counter for conditional fields
  2445. .SS "TSS2_RC ifapi_json_TPMS_POLICYNV_deserialize (json_object * jso, \fBTPMS_POLICYNV\fP * out)"
  2446. Deserialize a \fBTPMS_POLICYNV\fP json object\&.
  2447. .PP
  2448. \fBParameters:\fP
  2449. .RS 4
  2450. \fIjso\fP the json object to be deserialized\&.
  2451. .br
  2452. \fIout\fP the deserialzed binary object\&.
  2453. .RE
  2454. .PP
  2455. \fBReturn values:\fP
  2456. .RS 4
  2457. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2458. .br
  2459. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2460. .br
  2461. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2462. .br
  2463. \fITSS2_FAPI_RC_MEMORY\fP if not enough memory can be allocated\&.
  2464. .RE
  2465. .PP
  2466. < counter for conditional fields
  2467. .SS "TSS2_RC ifapi_json_TPMS_POLICYNVWRITTEN_deserialize (json_object * jso, \fBTPMS_POLICYNVWRITTEN\fP * out)"
  2468. Deserialize a \fBTPMS_POLICYNVWRITTEN\fP json object\&.
  2469. .PP
  2470. \fBParameters:\fP
  2471. .RS 4
  2472. \fIjso\fP the json object to be deserialized\&.
  2473. .br
  2474. \fIout\fP the deserialzed binary object\&.
  2475. .RE
  2476. .PP
  2477. \fBReturn values:\fP
  2478. .RS 4
  2479. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2480. .br
  2481. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2482. .br
  2483. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2484. .RE
  2485. .PP
  2486. .SS "TSS2_RC ifapi_json_TPMS_POLICYOR_deserialize (json_object * jso, \fBTPMS_POLICYOR\fP * out)"
  2487. Deserialize a \fBTPMS_POLICYOR\fP json object\&.
  2488. .PP
  2489. \fBParameters:\fP
  2490. .RS 4
  2491. \fIjso\fP the json object to be deserialized\&.
  2492. .br
  2493. \fIout\fP the deserialzed binary object\&.
  2494. .RE
  2495. .PP
  2496. \fBReturn values:\fP
  2497. .RS 4
  2498. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2499. .br
  2500. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2501. .br
  2502. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2503. .br
  2504. \fITSS2_FAPI_RC_MEMORY\fP if not enough memory can be allocated\&.
  2505. .RE
  2506. .PP
  2507. .SS "TSS2_RC ifapi_json_TPMS_POLICYPASSWORD_deserialize (json_object * jso, \fBTPMS_POLICYPASSWORD\fP * out)"
  2508. Deserialize a \fBTPMS_POLICYPASSWORD\fP json object\&.
  2509. .PP
  2510. \fBParameters:\fP
  2511. .RS 4
  2512. \fIjso\fP the json object to be deserialized\&.
  2513. .br
  2514. \fIout\fP the deserialzed binary object\&.
  2515. .RE
  2516. .PP
  2517. \fBReturn values:\fP
  2518. .RS 4
  2519. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2520. .br
  2521. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2522. .RE
  2523. .PP
  2524. .SS "TSS2_RC ifapi_json_TPMS_POLICYPCR_deserialize (json_object * jso, \fBTPMS_POLICYPCR\fP * out)"
  2525. Deserialize a \fBTPMS_POLICYPCR\fP json object\&.
  2526. .PP
  2527. \fBParameters:\fP
  2528. .RS 4
  2529. \fIjso\fP the json object to be deserialized\&.
  2530. .br
  2531. \fIout\fP the deserialzed binary object\&.
  2532. .RE
  2533. .PP
  2534. \fBReturn values:\fP
  2535. .RS 4
  2536. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2537. .br
  2538. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2539. .br
  2540. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2541. .br
  2542. \fITSS2_FAPI_RC_MEMORY\fP if not enough memory can be allocated\&.
  2543. .RE
  2544. .PP
  2545. < counter for conditional fields
  2546. .SS "TSS2_RC ifapi_json_TPMS_POLICYPHYSICALPRESENCE_deserialize (json_object * jso, \fBTPMS_POLICYPHYSICALPRESENCE\fP * out)"
  2547. Deserialize a \fBTPMS_POLICYPHYSICALPRESENCE\fP json object\&.
  2548. .PP
  2549. \fBParameters:\fP
  2550. .RS 4
  2551. \fIjso\fP the json object to be deserialized\&.
  2552. .br
  2553. \fIout\fP the deserialzed binary object\&.
  2554. .RE
  2555. .PP
  2556. \fBReturn values:\fP
  2557. .RS 4
  2558. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2559. .br
  2560. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2561. .RE
  2562. .PP
  2563. .SS "TSS2_RC ifapi_json_TPMS_POLICYSECRET_deserialize (json_object * jso, \fBTPMS_POLICYSECRET\fP * out)"
  2564. Deserialize a \fBTPMS_POLICYSECRET\fP json object\&.
  2565. .PP
  2566. \fBParameters:\fP
  2567. .RS 4
  2568. \fIjso\fP the json object to be deserialized\&.
  2569. .br
  2570. \fIout\fP the deserialzed binary object\&.
  2571. .RE
  2572. .PP
  2573. \fBReturn values:\fP
  2574. .RS 4
  2575. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2576. .br
  2577. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2578. .br
  2579. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2580. .br
  2581. \fITSS2_FAPI_RC_MEMORY\fP if not enough memory can be allocated\&.
  2582. .RE
  2583. .PP
  2584. < counter for conditional fields
  2585. .SS "TSS2_RC ifapi_json_TPMS_POLICYSIGNED_deserialize (json_object * jso, \fBTPMS_POLICYSIGNED\fP * out)"
  2586. Deserialize a \fBTPMS_POLICYSIGNED\fP json object\&.
  2587. .PP
  2588. \fBParameters:\fP
  2589. .RS 4
  2590. \fIjso\fP the json object to be deserialized\&.
  2591. .br
  2592. \fIout\fP the deserialzed binary object\&.
  2593. .RE
  2594. .PP
  2595. \fBReturn values:\fP
  2596. .RS 4
  2597. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2598. .br
  2599. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2600. .br
  2601. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2602. .br
  2603. \fITSS2_FAPI_RC_MEMORY\fP if not enough memory can be allocated\&.
  2604. .RE
  2605. .PP
  2606. < counter for conditional fields
  2607. .SS "TSS2_RC ifapi_json_TPMS_POLICYTEMPLATE_deserialize (json_object * jso, \fBTPMS_POLICYTEMPLATE\fP * out)"
  2608. Deserialize a \fBTPMS_POLICYTEMPLATE\fP json object\&.
  2609. .PP
  2610. \fBParameters:\fP
  2611. .RS 4
  2612. \fIjso\fP the json object to be deserialized\&.
  2613. .br
  2614. \fIout\fP the deserialzed binary object\&.
  2615. .RE
  2616. .PP
  2617. \fBReturn values:\fP
  2618. .RS 4
  2619. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2620. .br
  2621. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2622. .br
  2623. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2624. .br
  2625. \fITSS2_FAPI_RC_MEMORY\fP if not enough memory can be allocated\&.
  2626. .RE
  2627. .PP
  2628. < counter for conditional fields
  2629. .SS "TSS2_RC ifapi_json_TPMS_QUOTE_INFO_deserialize (json_object * jso, TPMS_QUOTE_INFO * out)"
  2630. Deserialize a TPMS_QUOTE_INFO json object\&.
  2631. .PP
  2632. \fBParameters:\fP
  2633. .RS 4
  2634. \fIjso\fP the json object to be deserialized\&.
  2635. .br
  2636. \fIout\fP the deserialzed binary object\&.
  2637. .RE
  2638. .PP
  2639. \fBReturn values:\fP
  2640. .RS 4
  2641. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2642. .br
  2643. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2644. .br
  2645. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2646. .RE
  2647. .PP
  2648. .SS "TSS2_RC ifapi_json_TPMS_RSA_PARMS_deserialize (json_object * jso, TPMS_RSA_PARMS * out)"
  2649. Deserialize a TPMS_RSA_PARMS json object\&.
  2650. .PP
  2651. \fBParameters:\fP
  2652. .RS 4
  2653. \fIjso\fP the json object to be deserialized\&.
  2654. .br
  2655. \fIout\fP the deserialzed binary object\&.
  2656. .RE
  2657. .PP
  2658. \fBReturn values:\fP
  2659. .RS 4
  2660. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2661. .br
  2662. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2663. .br
  2664. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2665. .RE
  2666. .PP
  2667. .SS "TSS2_RC ifapi_json_TPMS_SCHEME_ECDAA_deserialize (json_object * jso, TPMS_SCHEME_ECDAA * out)"
  2668. Deserialize a TPMS_SCHEME_ECDAA json object\&.
  2669. .PP
  2670. \fBParameters:\fP
  2671. .RS 4
  2672. \fIjso\fP the json object to be deserialized\&.
  2673. .br
  2674. \fIout\fP the deserialzed binary object\&.
  2675. .RE
  2676. .PP
  2677. \fBReturn values:\fP
  2678. .RS 4
  2679. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2680. .br
  2681. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2682. .br
  2683. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2684. .RE
  2685. .PP
  2686. .SS "TSS2_RC ifapi_json_TPMS_SCHEME_HASH_deserialize (json_object * jso, TPMS_SCHEME_HASH * out)"
  2687. Deserialize a TPMS_SCHEME_HASH json object\&.
  2688. .PP
  2689. \fBParameters:\fP
  2690. .RS 4
  2691. \fIjso\fP the json object to be deserialized\&.
  2692. .br
  2693. \fIout\fP the deserialzed binary object\&.
  2694. .RE
  2695. .PP
  2696. \fBReturn values:\fP
  2697. .RS 4
  2698. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2699. .br
  2700. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2701. .br
  2702. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2703. .RE
  2704. .PP
  2705. .SS "TSS2_RC ifapi_json_TPMS_SCHEME_HMAC_deserialize (json_object * jso, TPMS_SCHEME_HMAC * out)"
  2706. Deserialize a TPMS_SCHEME_HMAC json object\&.
  2707. .PP
  2708. \fBParameters:\fP
  2709. .RS 4
  2710. \fIjso\fP the json object to be deserialized\&.
  2711. .br
  2712. \fIout\fP the deserialzed binary object\&.
  2713. .RE
  2714. .PP
  2715. \fBReturn values:\fP
  2716. .RS 4
  2717. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2718. .br
  2719. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2720. .br
  2721. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2722. .RE
  2723. .PP
  2724. .SS "TSS2_RC ifapi_json_TPMS_SCHEME_KDF1_SP800_108_deserialize (json_object * jso, TPMS_SCHEME_KDF1_SP800_108 * out)"
  2725. Deserialize a TPMS_SCHEME_KDF1_SP800_108 json object\&.
  2726. .PP
  2727. \fBParameters:\fP
  2728. .RS 4
  2729. \fIjso\fP the json object to be deserialized\&.
  2730. .br
  2731. \fIout\fP the deserialzed binary object\&.
  2732. .RE
  2733. .PP
  2734. \fBReturn values:\fP
  2735. .RS 4
  2736. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2737. .br
  2738. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2739. .br
  2740. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2741. .RE
  2742. .PP
  2743. .SS "TSS2_RC ifapi_json_TPMS_SCHEME_KDF1_SP800_56A_deserialize (json_object * jso, TPMS_SCHEME_KDF1_SP800_56A * out)"
  2744. Deserialize a TPMS_SCHEME_KDF1_SP800_56A json object\&.
  2745. .PP
  2746. \fBParameters:\fP
  2747. .RS 4
  2748. \fIjso\fP the json object to be deserialized\&.
  2749. .br
  2750. \fIout\fP the deserialzed binary object\&.
  2751. .RE
  2752. .PP
  2753. \fBReturn values:\fP
  2754. .RS 4
  2755. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2756. .br
  2757. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2758. .br
  2759. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2760. .RE
  2761. .PP
  2762. .SS "TSS2_RC ifapi_json_TPMS_SCHEME_MGF1_deserialize (json_object * jso, TPMS_SCHEME_MGF1 * out)"
  2763. Deserialize a TPMS_SCHEME_MGF1 json object\&.
  2764. .PP
  2765. \fBParameters:\fP
  2766. .RS 4
  2767. \fIjso\fP the json object to be deserialized\&.
  2768. .br
  2769. \fIout\fP the deserialzed binary object\&.
  2770. .RE
  2771. .PP
  2772. \fBReturn values:\fP
  2773. .RS 4
  2774. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2775. .br
  2776. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2777. .br
  2778. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2779. .RE
  2780. .PP
  2781. .SS "TSS2_RC ifapi_json_TPMS_SCHEME_XOR_deserialize (json_object * jso, TPMS_SCHEME_XOR * out)"
  2782. Deserialize a TPMS_SCHEME_XOR json object\&.
  2783. .PP
  2784. \fBParameters:\fP
  2785. .RS 4
  2786. \fIjso\fP the json object to be deserialized\&.
  2787. .br
  2788. \fIout\fP the deserialzed binary object\&.
  2789. .RE
  2790. .PP
  2791. \fBReturn values:\fP
  2792. .RS 4
  2793. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2794. .br
  2795. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2796. .br
  2797. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2798. .RE
  2799. .PP
  2800. .SS "TSS2_RC ifapi_json_TPMS_SESSION_AUDIT_INFO_deserialize (json_object * jso, TPMS_SESSION_AUDIT_INFO * out)"
  2801. Deserialize a TPMS_SESSION_AUDIT_INFO json object\&.
  2802. .PP
  2803. \fBParameters:\fP
  2804. .RS 4
  2805. \fIjso\fP the json object to be deserialized\&.
  2806. .br
  2807. \fIout\fP the deserialzed binary object\&.
  2808. .RE
  2809. .PP
  2810. \fBReturn values:\fP
  2811. .RS 4
  2812. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2813. .br
  2814. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2815. .br
  2816. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2817. .RE
  2818. .PP
  2819. .SS "TSS2_RC ifapi_json_TPMS_SIG_SCHEME_ECDAA_deserialize (json_object * jso, TPMS_SIG_SCHEME_ECDAA * out)"
  2820. Deserialize a TPMS_SIG_SCHEME_ECDAA json object\&.
  2821. .PP
  2822. \fBParameters:\fP
  2823. .RS 4
  2824. \fIjso\fP the json object to be deserialized\&.
  2825. .br
  2826. \fIout\fP the deserialzed binary object\&.
  2827. .RE
  2828. .PP
  2829. \fBReturn values:\fP
  2830. .RS 4
  2831. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2832. .br
  2833. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2834. .br
  2835. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2836. .RE
  2837. .PP
  2838. .SS "TSS2_RC ifapi_json_TPMS_SIG_SCHEME_ECDSA_deserialize (json_object * jso, TPMS_SIG_SCHEME_ECDSA * out)"
  2839. Deserialize a TPMS_SIG_SCHEME_ECDSA json object\&.
  2840. .PP
  2841. \fBParameters:\fP
  2842. .RS 4
  2843. \fIjso\fP the json object to be deserialized\&.
  2844. .br
  2845. \fIout\fP the deserialzed binary object\&.
  2846. .RE
  2847. .PP
  2848. \fBReturn values:\fP
  2849. .RS 4
  2850. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2851. .br
  2852. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2853. .br
  2854. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2855. .RE
  2856. .PP
  2857. .SS "TSS2_RC ifapi_json_TPMS_SIG_SCHEME_ECSCHNORR_deserialize (json_object * jso, TPMS_SIG_SCHEME_ECSCHNORR * out)"
  2858. Deserialize a TPMS_SIG_SCHEME_ECSCHNORR json object\&.
  2859. .PP
  2860. \fBParameters:\fP
  2861. .RS 4
  2862. \fIjso\fP the json object to be deserialized\&.
  2863. .br
  2864. \fIout\fP the deserialzed binary object\&.
  2865. .RE
  2866. .PP
  2867. \fBReturn values:\fP
  2868. .RS 4
  2869. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2870. .br
  2871. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2872. .br
  2873. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2874. .RE
  2875. .PP
  2876. .SS "TSS2_RC ifapi_json_TPMS_SIG_SCHEME_RSAPSS_deserialize (json_object * jso, TPMS_SIG_SCHEME_RSAPSS * out)"
  2877. Deserialize a TPMS_SIG_SCHEME_RSAPSS json object\&.
  2878. .PP
  2879. \fBParameters:\fP
  2880. .RS 4
  2881. \fIjso\fP the json object to be deserialized\&.
  2882. .br
  2883. \fIout\fP the deserialzed binary object\&.
  2884. .RE
  2885. .PP
  2886. \fBReturn values:\fP
  2887. .RS 4
  2888. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2889. .br
  2890. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2891. .br
  2892. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2893. .RE
  2894. .PP
  2895. .SS "TSS2_RC ifapi_json_TPMS_SIG_SCHEME_RSASSA_deserialize (json_object * jso, TPMS_SIG_SCHEME_RSASSA * out)"
  2896. Deserialize a TPMS_SIG_SCHEME_RSASSA json object\&.
  2897. .PP
  2898. \fBParameters:\fP
  2899. .RS 4
  2900. \fIjso\fP the json object to be deserialized\&.
  2901. .br
  2902. \fIout\fP the deserialzed binary object\&.
  2903. .RE
  2904. .PP
  2905. \fBReturn values:\fP
  2906. .RS 4
  2907. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2908. .br
  2909. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2910. .br
  2911. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2912. .RE
  2913. .PP
  2914. .SS "TSS2_RC ifapi_json_TPMS_SIG_SCHEME_SM2_deserialize (json_object * jso, TPMS_SIG_SCHEME_SM2 * out)"
  2915. Deserialize a TPMS_SIG_SCHEME_SM2 json object\&.
  2916. .PP
  2917. \fBParameters:\fP
  2918. .RS 4
  2919. \fIjso\fP the json object to be deserialized\&.
  2920. .br
  2921. \fIout\fP the deserialzed binary object\&.
  2922. .RE
  2923. .PP
  2924. \fBReturn values:\fP
  2925. .RS 4
  2926. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2927. .br
  2928. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2929. .br
  2930. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2931. .RE
  2932. .PP
  2933. .SS "TSS2_RC ifapi_json_TPMS_SIGNATURE_ECC_deserialize (json_object * jso, TPMS_SIGNATURE_ECC * out)"
  2934. Deserialize a TPMS_SIGNATURE_ECC json object\&.
  2935. .PP
  2936. \fBParameters:\fP
  2937. .RS 4
  2938. \fIjso\fP the json object to be deserialized\&.
  2939. .br
  2940. \fIout\fP the deserialzed binary object\&.
  2941. .RE
  2942. .PP
  2943. \fBReturn values:\fP
  2944. .RS 4
  2945. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2946. .br
  2947. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2948. .br
  2949. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2950. .RE
  2951. .PP
  2952. .SS "TSS2_RC ifapi_json_TPMS_SIGNATURE_ECDAA_deserialize (json_object * jso, TPMS_SIGNATURE_ECDAA * out)"
  2953. Deserialize a TPMS_SIGNATURE_ECDAA json object\&.
  2954. .PP
  2955. \fBParameters:\fP
  2956. .RS 4
  2957. \fIjso\fP the json object to be deserialized\&.
  2958. .br
  2959. \fIout\fP the deserialzed binary object\&.
  2960. .RE
  2961. .PP
  2962. \fBReturn values:\fP
  2963. .RS 4
  2964. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2965. .br
  2966. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2967. .br
  2968. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2969. .RE
  2970. .PP
  2971. .SS "TSS2_RC ifapi_json_TPMS_SIGNATURE_ECDSA_deserialize (json_object * jso, TPMS_SIGNATURE_ECDSA * out)"
  2972. Deserialize a TPMS_SIGNATURE_ECDSA json object\&.
  2973. .PP
  2974. \fBParameters:\fP
  2975. .RS 4
  2976. \fIjso\fP the json object to be deserialized\&.
  2977. .br
  2978. \fIout\fP the deserialzed binary object\&.
  2979. .RE
  2980. .PP
  2981. \fBReturn values:\fP
  2982. .RS 4
  2983. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  2984. .br
  2985. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  2986. .br
  2987. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  2988. .RE
  2989. .PP
  2990. .SS "TSS2_RC ifapi_json_TPMS_SIGNATURE_ECSCHNORR_deserialize (json_object * jso, TPMS_SIGNATURE_ECSCHNORR * out)"
  2991. Deserialize a TPMS_SIGNATURE_ECSCHNORR json object\&.
  2992. .PP
  2993. \fBParameters:\fP
  2994. .RS 4
  2995. \fIjso\fP the json object to be deserialized\&.
  2996. .br
  2997. \fIout\fP the deserialzed binary object\&.
  2998. .RE
  2999. .PP
  3000. \fBReturn values:\fP
  3001. .RS 4
  3002. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  3003. .br
  3004. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  3005. .br
  3006. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  3007. .RE
  3008. .PP
  3009. .SS "TSS2_RC ifapi_json_TPMS_SIGNATURE_RSA_deserialize (json_object * jso, TPMS_SIGNATURE_RSA * out)"
  3010. Deserialize a TPMS_SIGNATURE_RSA json object\&.
  3011. .PP
  3012. \fBParameters:\fP
  3013. .RS 4
  3014. \fIjso\fP the json object to be deserialized\&.
  3015. .br
  3016. \fIout\fP the deserialzed binary object\&.
  3017. .RE
  3018. .PP
  3019. \fBReturn values:\fP
  3020. .RS 4
  3021. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  3022. .br
  3023. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  3024. .br
  3025. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  3026. .RE
  3027. .PP
  3028. .SS "TSS2_RC ifapi_json_TPMS_SIGNATURE_RSAPSS_deserialize (json_object * jso, TPMS_SIGNATURE_RSAPSS * out)"
  3029. Deserialize a TPMS_SIGNATURE_RSAPSS json object\&.
  3030. .PP
  3031. \fBParameters:\fP
  3032. .RS 4
  3033. \fIjso\fP the json object to be deserialized\&.
  3034. .br
  3035. \fIout\fP the deserialzed binary object\&.
  3036. .RE
  3037. .PP
  3038. \fBReturn values:\fP
  3039. .RS 4
  3040. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  3041. .br
  3042. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  3043. .br
  3044. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  3045. .RE
  3046. .PP
  3047. .SS "TSS2_RC ifapi_json_TPMS_SIGNATURE_RSASSA_deserialize (json_object * jso, TPMS_SIGNATURE_RSASSA * out)"
  3048. Deserialize a TPMS_SIGNATURE_RSASSA json object\&.
  3049. .PP
  3050. \fBParameters:\fP
  3051. .RS 4
  3052. \fIjso\fP the json object to be deserialized\&.
  3053. .br
  3054. \fIout\fP the deserialzed binary object\&.
  3055. .RE
  3056. .PP
  3057. \fBReturn values:\fP
  3058. .RS 4
  3059. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  3060. .br
  3061. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  3062. .br
  3063. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  3064. .RE
  3065. .PP
  3066. .SS "TSS2_RC ifapi_json_TPMS_SIGNATURE_SM2_deserialize (json_object * jso, TPMS_SIGNATURE_SM2 * out)"
  3067. Deserialize a TPMS_SIGNATURE_SM2 json object\&.
  3068. .PP
  3069. \fBParameters:\fP
  3070. .RS 4
  3071. \fIjso\fP the json object to be deserialized\&.
  3072. .br
  3073. \fIout\fP the deserialzed binary object\&.
  3074. .RE
  3075. .PP
  3076. \fBReturn values:\fP
  3077. .RS 4
  3078. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  3079. .br
  3080. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  3081. .br
  3082. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  3083. .RE
  3084. .PP
  3085. .SS "TSS2_RC ifapi_json_TPMS_SYMCIPHER_PARMS_deserialize (json_object * jso, TPMS_SYMCIPHER_PARMS * out)"
  3086. Deserialize a TPMS_SYMCIPHER_PARMS json object\&.
  3087. .PP
  3088. \fBParameters:\fP
  3089. .RS 4
  3090. \fIjso\fP the json object to be deserialized\&.
  3091. .br
  3092. \fIout\fP the deserialzed binary object\&.
  3093. .RE
  3094. .PP
  3095. \fBReturn values:\fP
  3096. .RS 4
  3097. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  3098. .br
  3099. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  3100. .br
  3101. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  3102. .RE
  3103. .PP
  3104. .SS "TSS2_RC ifapi_json_TPMS_TIME_ATTEST_INFO_deserialize (json_object * jso, TPMS_TIME_ATTEST_INFO * out)"
  3105. Deserialize a TPMS_TIME_ATTEST_INFO json object\&.
  3106. .PP
  3107. \fBParameters:\fP
  3108. .RS 4
  3109. \fIjso\fP the json object to be deserialized\&.
  3110. .br
  3111. \fIout\fP the deserialzed binary object\&.
  3112. .RE
  3113. .PP
  3114. \fBReturn values:\fP
  3115. .RS 4
  3116. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  3117. .br
  3118. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  3119. .br
  3120. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  3121. .RE
  3122. .PP
  3123. .SS "TSS2_RC ifapi_json_TPMS_TIME_INFO_deserialize (json_object * jso, TPMS_TIME_INFO * out)"
  3124. Deserialize a TPMS_TIME_INFO json object\&.
  3125. .PP
  3126. \fBParameters:\fP
  3127. .RS 4
  3128. \fIjso\fP the json object to be deserialized\&.
  3129. .br
  3130. \fIout\fP the deserialzed binary object\&.
  3131. .RE
  3132. .PP
  3133. \fBReturn values:\fP
  3134. .RS 4
  3135. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  3136. .br
  3137. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  3138. .br
  3139. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  3140. .RE
  3141. .PP
  3142. .SS "TSS2_RC ifapi_json_TPMT_ECC_SCHEME_deserialize (json_object * jso, TPMT_ECC_SCHEME * out)"
  3143. Deserialize a TPMT_ECC_SCHEME json object\&.
  3144. .PP
  3145. \fBParameters:\fP
  3146. .RS 4
  3147. \fIjso\fP the json object to be deserialized\&.
  3148. .br
  3149. \fIout\fP the deserialzed binary object\&.
  3150. .RE
  3151. .PP
  3152. \fBReturn values:\fP
  3153. .RS 4
  3154. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  3155. .br
  3156. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  3157. .br
  3158. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  3159. .RE
  3160. .PP
  3161. .SS "TSS2_RC ifapi_json_TPMT_HA_deserialize (json_object * jso, TPMT_HA * out)"
  3162. Deserialize a TPMT_HA json object\&.
  3163. .PP
  3164. \fBParameters:\fP
  3165. .RS 4
  3166. \fIjso\fP the json object to be deserialized\&.
  3167. .br
  3168. \fIout\fP the deserialzed binary object\&.
  3169. .RE
  3170. .PP
  3171. \fBReturn values:\fP
  3172. .RS 4
  3173. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  3174. .br
  3175. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  3176. .br
  3177. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  3178. .RE
  3179. .PP
  3180. .SS "TSS2_RC ifapi_json_TPMT_KDF_SCHEME_deserialize (json_object * jso, TPMT_KDF_SCHEME * out)"
  3181. Deserialize a TPMT_KDF_SCHEME json object\&.
  3182. .PP
  3183. \fBParameters:\fP
  3184. .RS 4
  3185. \fIjso\fP the json object to be deserialized\&.
  3186. .br
  3187. \fIout\fP the deserialzed binary object\&.
  3188. .RE
  3189. .PP
  3190. \fBReturn values:\fP
  3191. .RS 4
  3192. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  3193. .br
  3194. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  3195. .br
  3196. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  3197. .RE
  3198. .PP
  3199. .SS "TSS2_RC ifapi_json_TPMT_KEYEDHASH_SCHEME_deserialize (json_object * jso, TPMT_KEYEDHASH_SCHEME * out)"
  3200. Deserialize a TPMT_KEYEDHASH_SCHEME json object\&.
  3201. .PP
  3202. \fBParameters:\fP
  3203. .RS 4
  3204. \fIjso\fP the json object to be deserialized\&.
  3205. .br
  3206. \fIout\fP the deserialzed binary object\&.
  3207. .RE
  3208. .PP
  3209. \fBReturn values:\fP
  3210. .RS 4
  3211. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  3212. .br
  3213. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  3214. .br
  3215. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  3216. .RE
  3217. .PP
  3218. .SS "TSS2_RC ifapi_json_TPMT_POLICYELEMENT_deserialize (json_object * jso, \fBTPMT_POLICYELEMENT\fP * out)"
  3219. Deserialize a \fBTPMT_POLICYELEMENT\fP json object\&.
  3220. .PP
  3221. \fBParameters:\fP
  3222. .RS 4
  3223. \fIjso\fP the json object to be deserialized\&.
  3224. .br
  3225. \fIout\fP the deserialzed binary object\&.
  3226. .RE
  3227. .PP
  3228. \fBReturn values:\fP
  3229. .RS 4
  3230. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  3231. .br
  3232. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  3233. .br
  3234. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  3235. .br
  3236. \fITSS2_FAPI_RC_MEMORY\fP if not enough memory can be allocated\&.
  3237. .RE
  3238. .PP
  3239. .SS "TSS2_RC ifapi_json_TPMT_PUBLIC_deserialize (json_object * jso, TPMT_PUBLIC * out)"
  3240. Deserialize a TPMT_PUBLIC json object\&.
  3241. .PP
  3242. \fBParameters:\fP
  3243. .RS 4
  3244. \fIjso\fP the json object to be deserialized\&.
  3245. .br
  3246. \fIout\fP the deserialzed binary object\&.
  3247. .RE
  3248. .PP
  3249. \fBReturn values:\fP
  3250. .RS 4
  3251. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  3252. .br
  3253. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  3254. .br
  3255. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  3256. .RE
  3257. .PP
  3258. .SS "TSS2_RC ifapi_json_TPMT_RSA_DECRYPT_deserialize (json_object * jso, TPMT_RSA_DECRYPT * out)"
  3259. Deserialize a TPMT_RSA_DECRYPT json object\&.
  3260. .PP
  3261. \fBParameters:\fP
  3262. .RS 4
  3263. \fIjso\fP the json object to be deserialized\&.
  3264. .br
  3265. \fIout\fP the deserialzed binary object\&.
  3266. .RE
  3267. .PP
  3268. \fBReturn values:\fP
  3269. .RS 4
  3270. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  3271. .br
  3272. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  3273. .br
  3274. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  3275. .RE
  3276. .PP
  3277. .SS "TSS2_RC ifapi_json_TPMT_RSA_SCHEME_deserialize (json_object * jso, TPMT_RSA_SCHEME * out)"
  3278. Deserialize a TPMT_RSA_SCHEME json object\&.
  3279. .PP
  3280. \fBParameters:\fP
  3281. .RS 4
  3282. \fIjso\fP the json object to be deserialized\&.
  3283. .br
  3284. \fIout\fP the deserialzed binary object\&.
  3285. .RE
  3286. .PP
  3287. \fBReturn values:\fP
  3288. .RS 4
  3289. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  3290. .br
  3291. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  3292. .br
  3293. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  3294. .RE
  3295. .PP
  3296. .SS "TSS2_RC ifapi_json_TPMT_SIG_SCHEME_deserialize (json_object * jso, TPMT_SIG_SCHEME * out)"
  3297. Deserialize a TPMT_SIG_SCHEME json object\&.
  3298. .PP
  3299. \fBParameters:\fP
  3300. .RS 4
  3301. \fIjso\fP the json object to be deserialized\&.
  3302. .br
  3303. \fIout\fP the deserialzed binary object\&.
  3304. .RE
  3305. .PP
  3306. \fBReturn values:\fP
  3307. .RS 4
  3308. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  3309. .br
  3310. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  3311. .br
  3312. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  3313. .RE
  3314. .PP
  3315. .SS "TSS2_RC ifapi_json_TPMT_SIGNATURE_deserialize (json_object * jso, TPMT_SIGNATURE * out)"
  3316. Deserialize a TPMT_SIGNATURE json object\&.
  3317. .PP
  3318. \fBParameters:\fP
  3319. .RS 4
  3320. \fIjso\fP the json object to be deserialized\&.
  3321. .br
  3322. \fIout\fP the deserialzed binary object\&.
  3323. .RE
  3324. .PP
  3325. \fBReturn values:\fP
  3326. .RS 4
  3327. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  3328. .br
  3329. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  3330. .br
  3331. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  3332. .RE
  3333. .PP
  3334. .SS "TSS2_RC ifapi_json_TPMT_SYM_DEF_deserialize (json_object * jso, TPMT_SYM_DEF * out)"
  3335. Deserialize a TPMT_SYM_DEF json object\&.
  3336. .PP
  3337. \fBParameters:\fP
  3338. .RS 4
  3339. \fIjso\fP the json object to be deserialized\&.
  3340. .br
  3341. \fIout\fP the deserialzed binary object\&.
  3342. .RE
  3343. .PP
  3344. \fBReturn values:\fP
  3345. .RS 4
  3346. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  3347. .br
  3348. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  3349. .br
  3350. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  3351. .RE
  3352. .PP
  3353. .SS "TSS2_RC ifapi_json_TPMT_SYM_DEF_OBJECT_deserialize (json_object * jso, TPMT_SYM_DEF_OBJECT * out)"
  3354. Deserialize a TPMT_SYM_DEF_OBJECT json object\&.
  3355. .PP
  3356. \fBParameters:\fP
  3357. .RS 4
  3358. \fIjso\fP the json object to be deserialized\&.
  3359. .br
  3360. \fIout\fP the deserialzed binary object\&.
  3361. .RE
  3362. .PP
  3363. \fBReturn values:\fP
  3364. .RS 4
  3365. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  3366. .br
  3367. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  3368. .br
  3369. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  3370. .RE
  3371. .PP
  3372. .SS "TSS2_RC ifapi_json_TPMT_TK_CREATION_deserialize (json_object * jso, TPMT_TK_CREATION * out)"
  3373. Deserialize a TPMT_TK_CREATION json object\&.
  3374. .PP
  3375. \fBParameters:\fP
  3376. .RS 4
  3377. \fIjso\fP the json object to be deserialized\&.
  3378. .br
  3379. \fIout\fP the deserialzed binary object\&.
  3380. .RE
  3381. .PP
  3382. \fBReturn values:\fP
  3383. .RS 4
  3384. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  3385. .br
  3386. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  3387. .br
  3388. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  3389. .RE
  3390. .PP
  3391. .SS "TSS2_RC ifapi_json_TPMU_ASYM_SCHEME_deserialize (UINT32 selector, json_object * jso, TPMU_ASYM_SCHEME * out)"
  3392. Deserialize a TPMU_ASYM_SCHEME json object\&.
  3393. .PP
  3394. This functions expects the Bitfield to be encoded as unsigned int in host-endianess\&.
  3395. .PP
  3396. \fBParameters:\fP
  3397. .RS 4
  3398. \fIjso\fP the json object to be deserialized\&.
  3399. .br
  3400. \fIselector\fP The type the scheme\&.
  3401. .br
  3402. \fIout\fP the deserialzed binary object\&.
  3403. .RE
  3404. .PP
  3405. \fBReturn values:\fP
  3406. .RS 4
  3407. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  3408. .br
  3409. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  3410. .br
  3411. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  3412. .RE
  3413. .PP
  3414. .SS "TSS2_RC ifapi_json_TPMU_ATTEST_deserialize (UINT32 selector, json_object * jso, TPMU_ATTEST * out)"
  3415. Deserialize a TPMU_ATTEST json object\&.
  3416. .PP
  3417. This functions expects the Bitfield to be encoded as unsigned int in host-endianess\&.
  3418. .PP
  3419. \fBParameters:\fP
  3420. .RS 4
  3421. \fIselector\fP The type the attest\&.
  3422. .br
  3423. \fIjso\fP the json object to be deserialized\&.
  3424. .br
  3425. \fIout\fP the deserialzed binary object\&.
  3426. .RE
  3427. .PP
  3428. \fBReturn values:\fP
  3429. .RS 4
  3430. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  3431. .br
  3432. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  3433. .br
  3434. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  3435. .RE
  3436. .PP
  3437. .SS "TSS2_RC ifapi_json_TPMU_HA_deserialize (UINT32 selector, json_object * jso, TPMU_HA * out)"
  3438. Deserialize a TPMU_HA json object\&.
  3439. .PP
  3440. This functions expects the Bitfield to be encoded as unsigned int in host-endianess\&.
  3441. .PP
  3442. \fBParameters:\fP
  3443. .RS 4
  3444. \fIselector\fP The type of the HA object\&.
  3445. .br
  3446. \fIjso\fP the json object to be deserialized\&.
  3447. .br
  3448. \fIout\fP the deserialzed binary object\&.
  3449. .RE
  3450. .PP
  3451. \fBReturn values:\fP
  3452. .RS 4
  3453. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  3454. .br
  3455. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  3456. .br
  3457. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  3458. .RE
  3459. .PP
  3460. .SS "TSS2_RC ifapi_json_TPMU_KDF_SCHEME_deserialize (UINT32 selector, json_object * jso, TPMU_KDF_SCHEME * out)"
  3461. Deserialize a TPMU_KDF_SCHEME json object\&.
  3462. .PP
  3463. This functions expects the Bitfield to be encoded as unsigned int in host-endianess\&.
  3464. .PP
  3465. \fBParameters:\fP
  3466. .RS 4
  3467. \fIselector\fP The type the KDF scheme\&.
  3468. .br
  3469. \fIjso\fP the json object to be deserialized\&.
  3470. .br
  3471. \fIout\fP the deserialzed binary object\&.
  3472. .RE
  3473. .PP
  3474. \fBReturn values:\fP
  3475. .RS 4
  3476. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  3477. .br
  3478. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  3479. .br
  3480. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  3481. .RE
  3482. .PP
  3483. .SS "TSS2_RC ifapi_json_TPMU_POLICYELEMENT_deserialize (UINT32 selector, json_object * jso, \fBTPMU_POLICYELEMENT\fP * out)"
  3484. Deserialize a \fBTPMU_POLICYELEMENT\fP json object\&.
  3485. .PP
  3486. This functions expects the Bitfield to be encoded as unsigned int in host-endianess\&.
  3487. .PP
  3488. \fBParameters:\fP
  3489. .RS 4
  3490. \fIselector\fP The type the policy element\&.
  3491. .br
  3492. \fIjso\fP the json object to be deserialized\&.
  3493. .br
  3494. \fIout\fP the deserialzed binary object\&.
  3495. .RE
  3496. .PP
  3497. \fBReturn values:\fP
  3498. .RS 4
  3499. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  3500. .br
  3501. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  3502. .br
  3503. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  3504. .br
  3505. \fITSS2_FAPI_RC_MEMORY\fP if not enough memory can be allocated\&.
  3506. .RE
  3507. .PP
  3508. .SS "TSS2_RC ifapi_json_TPMU_PUBLIC_ID_deserialize (UINT32 selector, json_object * jso, TPMU_PUBLIC_ID * out)"
  3509. Deserialize a TPMU_PUBLIC_ID json object\&.
  3510. .PP
  3511. This functions expects the Bitfield to be encoded as unsigned int in host-endianess\&.
  3512. .PP
  3513. \fBParameters:\fP
  3514. .RS 4
  3515. \fIselector\fP The type the public ID\&.
  3516. .br
  3517. \fIjso\fP the json object to be deserialized\&.
  3518. .br
  3519. \fIout\fP the deserialzed binary object\&.
  3520. .RE
  3521. .PP
  3522. \fBReturn values:\fP
  3523. .RS 4
  3524. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  3525. .br
  3526. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  3527. .br
  3528. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  3529. .RE
  3530. .PP
  3531. .SS "TSS2_RC ifapi_json_TPMU_PUBLIC_PARMS_deserialize (UINT32 selector, json_object * jso, TPMU_PUBLIC_PARMS * out)"
  3532. Deserialize a TPMU_PUBLIC_PARMS json object\&.
  3533. .PP
  3534. This functions expects the Bitfield to be encoded as unsigned int in host-endianess\&.
  3535. .PP
  3536. \fBParameters:\fP
  3537. .RS 4
  3538. \fIselector\fP The type the public params\&.
  3539. .br
  3540. \fIjso\fP the json object to be deserialized\&.
  3541. .br
  3542. \fIout\fP the deserialzed binary object\&.
  3543. .RE
  3544. .PP
  3545. \fBReturn values:\fP
  3546. .RS 4
  3547. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  3548. .br
  3549. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  3550. .br
  3551. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  3552. .RE
  3553. .PP
  3554. .SS "TSS2_RC ifapi_json_TPMU_SCHEME_KEYEDHASH_deserialize (UINT32 selector, json_object * jso, TPMU_SCHEME_KEYEDHASH * out)"
  3555. Deserialize a TPMU_SCHEME_KEYEDHASH json object\&.
  3556. .PP
  3557. This functions expects the Bitfield to be encoded as unsigned int in host-endianess\&.
  3558. .PP
  3559. \fBParameters:\fP
  3560. .RS 4
  3561. \fIselector\fP The type the keyedhash scheme\&.
  3562. .br
  3563. \fIjso\fP the json object to be deserialized\&.
  3564. .br
  3565. \fIout\fP the deserialzed binary object\&.
  3566. .RE
  3567. .PP
  3568. \fBReturn values:\fP
  3569. .RS 4
  3570. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  3571. .br
  3572. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  3573. .br
  3574. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  3575. .RE
  3576. .PP
  3577. .SS "TSS2_RC ifapi_json_TPMU_SIG_SCHEME_deserialize (UINT32 selector, json_object * jso, TPMU_SIG_SCHEME * out)"
  3578. Deserialize a TPMU_SIG_SCHEME json object\&.
  3579. .PP
  3580. This functions expects the Bitfield to be encoded as unsigned int in host-endianess\&.
  3581. .PP
  3582. \fBParameters:\fP
  3583. .RS 4
  3584. \fIselector\fP The type the signature scheme\&.
  3585. .br
  3586. \fIjso\fP the json object to be deserialized\&.
  3587. .br
  3588. \fIout\fP the deserialzed binary object\&.
  3589. .RE
  3590. .PP
  3591. \fBReturn values:\fP
  3592. .RS 4
  3593. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  3594. .br
  3595. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  3596. .br
  3597. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  3598. .RE
  3599. .PP
  3600. .SS "TSS2_RC ifapi_json_TPMU_SIGNATURE_deserialize (UINT32 selector, json_object * jso, TPMU_SIGNATURE * out)"
  3601. Deserialize a TPMU_SIGNATURE json object\&.
  3602. .PP
  3603. This functions expects the Bitfield to be encoded as unsigned int in host-endianess\&.
  3604. .PP
  3605. \fBParameters:\fP
  3606. .RS 4
  3607. \fIselector\fP The type the signature\&.
  3608. .br
  3609. \fIjso\fP the json object to be deserialized\&.
  3610. .br
  3611. \fIout\fP the deserialzed binary object\&.
  3612. .RE
  3613. .PP
  3614. \fBReturn values:\fP
  3615. .RS 4
  3616. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  3617. .br
  3618. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  3619. .br
  3620. \fITSS2_FAPI_RC_BAD_REFERENCE\fP a invalid null pointer is passed\&.
  3621. .RE
  3622. .PP
  3623. .SS "TSS2_RC ifapi_json_TPMU_SYM_KEY_BITS_deserialize (UINT32 selector, json_object * jso, TPMU_SYM_KEY_BITS * out)"
  3624. Deserialize a TPMU_SYM_KEY_BITS json object\&.
  3625. .PP
  3626. This functions expects the Bitfield to be encoded as unsigned int in host-endianess\&.
  3627. .PP
  3628. \fBParameters:\fP
  3629. .RS 4
  3630. \fIselector\fP The type the symmetric algorithm\&.
  3631. .br
  3632. \fIjso\fP the json object to be deserialized\&.
  3633. .br
  3634. \fIout\fP the deserialzed binary object\&.
  3635. .RE
  3636. .PP
  3637. \fBReturn values:\fP
  3638. .RS 4
  3639. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  3640. .br
  3641. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  3642. .RE
  3643. .PP
  3644. .SS "TSS2_RC ifapi_json_TPMU_SYM_MODE_deserialize (UINT32 selector, json_object * jso, TPMU_SYM_MODE * out)"
  3645. Deserialize a TPMU_SYM_MODE json object\&.
  3646. .PP
  3647. This functions expects the Bitfield to be encoded as unsigned int in host-endianess\&.
  3648. .PP
  3649. \fBParameters:\fP
  3650. .RS 4
  3651. \fIselector\fP The type the symmetric algorithm\&.
  3652. .br
  3653. \fIjso\fP the json object to be deserialized\&.
  3654. .br
  3655. \fIout\fP the deserialzed binary object\&.
  3656. .RE
  3657. .PP
  3658. \fBReturn values:\fP
  3659. .RS 4
  3660. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  3661. .br
  3662. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  3663. .RE
  3664. .PP
  3665. .SS "TSS2_RC ifapi_json_UINT16_deserialize (json_object * jso, UINT16 * out)"
  3666. Deserialize a UINT16 json object\&.
  3667. .PP
  3668. \fBParameters:\fP
  3669. .RS 4
  3670. \fIjso\fP the json object to be deserialized\&.
  3671. .br
  3672. \fIout\fP the deserialzed binary object\&.
  3673. .RE
  3674. .PP
  3675. \fBReturn values:\fP
  3676. .RS 4
  3677. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  3678. .br
  3679. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  3680. .RE
  3681. .PP
  3682. .SS "TSS2_RC ifapi_json_UINT32_deserialize (json_object * jso, UINT32 * out)"
  3683. Deserialize a UINT32 json object\&.
  3684. .PP
  3685. \fBParameters:\fP
  3686. .RS 4
  3687. \fIjso\fP the json object to be deserialized\&.
  3688. .br
  3689. \fIout\fP the deserialzed binary object\&.
  3690. .RE
  3691. .PP
  3692. \fBReturn values:\fP
  3693. .RS 4
  3694. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  3695. .br
  3696. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  3697. .RE
  3698. .PP
  3699. .SS "TSS2_RC ifapi_json_UINT64_deserialize (json_object * jso, UINT64 * out)"
  3700. Deserialize a UINT64 json object\&.
  3701. .PP
  3702. \fBParameters:\fP
  3703. .RS 4
  3704. \fIjso\fP the json object to be deserialized\&.
  3705. .br
  3706. \fIout\fP the deserialzed binary object\&.
  3707. .RE
  3708. .PP
  3709. \fBReturn values:\fP
  3710. .RS 4
  3711. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  3712. .br
  3713. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  3714. .RE
  3715. .PP
  3716. .SS "TSS2_RC ifapi_json_UINT8_ARY_deserialize (json_object * jso, \fBUINT8_ARY\fP * out)"
  3717. Deserialize an array of UINT8\&.
  3718. .PP
  3719. \fBParameters:\fP
  3720. .RS 4
  3721. \fIjso\fP object to be deserialized\&.
  3722. .br
  3723. \fIout\fP the deserialized object\&.
  3724. .RE
  3725. .PP
  3726. \fBReturn values:\fP
  3727. .RS 4
  3728. \fITSS2_FAPI_RC_MEMORY\fP if not enough memory can be allocated\&.
  3729. .br
  3730. \fITSS2_FAPI_RC_BAD_VALUE\fP if an invalid value was passed into the function\&.
  3731. .RE
  3732. .PP
  3733. .SS "TSS2_RC ifapi_json_UINT8_deserialize (json_object * jso, UINT8 * out)"
  3734. Deserialize a UINT8 json object\&.
  3735. .PP
  3736. \fBParameters:\fP
  3737. .RS 4
  3738. \fIjso\fP the json object to be deserialized\&.
  3739. .br
  3740. \fIout\fP the deserialzed binary object\&.
  3741. .RE
  3742. .PP
  3743. \fBReturn values:\fP
  3744. .RS 4
  3745. \fITSS2_RC_SUCCESS\fP if the function call was a success\&.
  3746. .br
  3747. \fITSS2_FAPI_RC_BAD_VALUE\fP if the json object can't be deserialized\&.
  3748. .RE
  3749. .PP
  3750. .SH "Author"
  3751. .PP
  3752. Generated automatically by Doxygen for tpm2-tss from the source code\&.