2
0

libtomcrypt_VS2008.vcproj 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006
  1. <?xml version="1.0" encoding="Windows-1252"?>
  2. <VisualStudioProject
  3. ProjectType="Visual C++"
  4. Version="9,00"
  5. Name="libtomcrypt"
  6. ProjectGUID="{E3802982-DCB6-4D85-A2BD-6B08F0657E79}"
  7. RootNamespace="libtomcrypt"
  8. TargetFrameworkVersion="0"
  9. >
  10. <Platforms>
  11. <Platform
  12. Name="Win32"
  13. />
  14. <Platform
  15. Name="x64"
  16. />
  17. </Platforms>
  18. <ToolFiles>
  19. </ToolFiles>
  20. <Configurations>
  21. <Configuration
  22. Name="Debug|Win32"
  23. OutputDirectory="MSVC_$(PlatformName)_$(ConfigurationName)"
  24. IntermediateDirectory="MSVC_$(PlatformName)_$(ConfigurationName)\Intermediate"
  25. ConfigurationType="4"
  26. UseOfMFC="0"
  27. ATLMinimizesCRunTimeLibraryUsage="false"
  28. CharacterSet="0"
  29. >
  30. <Tool
  31. Name="VCPreBuildEventTool"
  32. />
  33. <Tool
  34. Name="VCCustomBuildTool"
  35. />
  36. <Tool
  37. Name="VCXMLDataGeneratorTool"
  38. />
  39. <Tool
  40. Name="VCWebServiceProxyGeneratorTool"
  41. />
  42. <Tool
  43. Name="VCMIDLTool"
  44. />
  45. <Tool
  46. Name="VCCLCompilerTool"
  47. Optimization="0"
  48. AdditionalIncludeDirectories="src\headers,..\libtommath"
  49. PreprocessorDefinitions="WIN32;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;LTM_DESC;LTC_NO_TEST;LTC_NO_PROTOTYPES"
  50. MinimalRebuild="true"
  51. ExceptionHandling="0"
  52. BasicRuntimeChecks="3"
  53. RuntimeLibrary="1"
  54. PrecompiledHeaderFile="$(IntDir)\libtomcrypt.pch"
  55. AssemblerListingLocation="$(IntDir)\"
  56. ObjectFile="$(IntDir)\"
  57. ProgramDataBaseFileName="$(IntDir)\"
  58. WarningLevel="3"
  59. SuppressStartupBanner="true"
  60. DebugInformationFormat="4"
  61. CompileAs="1"
  62. />
  63. <Tool
  64. Name="VCManagedResourceCompilerTool"
  65. />
  66. <Tool
  67. Name="VCResourceCompilerTool"
  68. PreprocessorDefinitions="_DEBUG"
  69. Culture="1033"
  70. />
  71. <Tool
  72. Name="VCPreLinkEventTool"
  73. />
  74. <Tool
  75. Name="VCLibrarianTool"
  76. OutputFile="$(OutDir)\tomcryptd.lib"
  77. SuppressStartupBanner="true"
  78. />
  79. <Tool
  80. Name="VCALinkTool"
  81. />
  82. <Tool
  83. Name="VCXDCMakeTool"
  84. />
  85. <Tool
  86. Name="VCBscMakeTool"
  87. SuppressStartupBanner="true"
  88. OutputFile=".\Debug/libtomcrypt.bsc"
  89. />
  90. <Tool
  91. Name="VCFxCopTool"
  92. />
  93. <Tool
  94. Name="VCPostBuildEventTool"
  95. />
  96. </Configuration>
  97. <Configuration
  98. Name="Release|Win32"
  99. OutputDirectory="MSVC_$(PlatformName)_$(ConfigurationName)"
  100. IntermediateDirectory="MSVC_$(PlatformName)_$(ConfigurationName)\Intermediate"
  101. ConfigurationType="4"
  102. UseOfMFC="0"
  103. ATLMinimizesCRunTimeLibraryUsage="false"
  104. CharacterSet="0"
  105. >
  106. <Tool
  107. Name="VCPreBuildEventTool"
  108. />
  109. <Tool
  110. Name="VCCustomBuildTool"
  111. />
  112. <Tool
  113. Name="VCXMLDataGeneratorTool"
  114. />
  115. <Tool
  116. Name="VCWebServiceProxyGeneratorTool"
  117. />
  118. <Tool
  119. Name="VCMIDLTool"
  120. />
  121. <Tool
  122. Name="VCCLCompilerTool"
  123. Optimization="2"
  124. InlineFunctionExpansion="1"
  125. AdditionalIncludeDirectories="src\headers,..\libtommath"
  126. PreprocessorDefinitions="WIN32;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;LTM_DESC;LTC_NO_TEST;LTC_NO_PROTOTYPES"
  127. StringPooling="true"
  128. ExceptionHandling="0"
  129. RuntimeLibrary="0"
  130. EnableFunctionLevelLinking="true"
  131. PrecompiledHeaderFile="$(IntDir)\libtomcrypt.pch"
  132. AssemblerListingLocation="$(IntDir)\"
  133. ObjectFile="$(IntDir)\"
  134. ProgramDataBaseFileName="$(IntDir)\"
  135. WarningLevel="3"
  136. SuppressStartupBanner="true"
  137. CompileAs="1"
  138. />
  139. <Tool
  140. Name="VCManagedResourceCompilerTool"
  141. />
  142. <Tool
  143. Name="VCResourceCompilerTool"
  144. PreprocessorDefinitions="NDEBUG"
  145. Culture="1033"
  146. />
  147. <Tool
  148. Name="VCPreLinkEventTool"
  149. />
  150. <Tool
  151. Name="VCLibrarianTool"
  152. OutputFile="$(OutDir)\tomcrypt.lib"
  153. SuppressStartupBanner="true"
  154. />
  155. <Tool
  156. Name="VCALinkTool"
  157. />
  158. <Tool
  159. Name="VCXDCMakeTool"
  160. />
  161. <Tool
  162. Name="VCBscMakeTool"
  163. SuppressStartupBanner="true"
  164. OutputFile=".\Release/libtomcrypt.bsc"
  165. />
  166. <Tool
  167. Name="VCFxCopTool"
  168. />
  169. <Tool
  170. Name="VCPostBuildEventTool"
  171. />
  172. </Configuration>
  173. <Configuration
  174. Name="Debug|x64"
  175. OutputDirectory="MSVC_$(PlatformName)_$(ConfigurationName)"
  176. IntermediateDirectory="MSVC_$(PlatformName)_$(ConfigurationName)\Intermediate"
  177. ConfigurationType="4"
  178. UseOfMFC="0"
  179. ATLMinimizesCRunTimeLibraryUsage="false"
  180. CharacterSet="0"
  181. >
  182. <Tool
  183. Name="VCPreBuildEventTool"
  184. />
  185. <Tool
  186. Name="VCCustomBuildTool"
  187. />
  188. <Tool
  189. Name="VCXMLDataGeneratorTool"
  190. />
  191. <Tool
  192. Name="VCWebServiceProxyGeneratorTool"
  193. />
  194. <Tool
  195. Name="VCMIDLTool"
  196. TargetEnvironment="3"
  197. />
  198. <Tool
  199. Name="VCCLCompilerTool"
  200. Optimization="0"
  201. AdditionalIncludeDirectories="src\headers,..\libtommath"
  202. PreprocessorDefinitions="WIN32;_DEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;LTM_DESC;LTC_NO_TEST;LTC_NO_PROTOTYPES"
  203. MinimalRebuild="true"
  204. ExceptionHandling="0"
  205. BasicRuntimeChecks="3"
  206. RuntimeLibrary="1"
  207. PrecompiledHeaderFile="$(IntDir)\libtomcrypt.pch"
  208. AssemblerListingLocation="$(IntDir)\"
  209. ObjectFile="$(IntDir)\"
  210. ProgramDataBaseFileName="$(IntDir)\"
  211. WarningLevel="3"
  212. SuppressStartupBanner="true"
  213. DebugInformationFormat="3"
  214. CompileAs="1"
  215. />
  216. <Tool
  217. Name="VCManagedResourceCompilerTool"
  218. />
  219. <Tool
  220. Name="VCResourceCompilerTool"
  221. PreprocessorDefinitions="_DEBUG"
  222. Culture="1033"
  223. />
  224. <Tool
  225. Name="VCPreLinkEventTool"
  226. />
  227. <Tool
  228. Name="VCLibrarianTool"
  229. OutputFile="$(OutDir)\tomcryptd.lib"
  230. SuppressStartupBanner="true"
  231. />
  232. <Tool
  233. Name="VCALinkTool"
  234. />
  235. <Tool
  236. Name="VCXDCMakeTool"
  237. />
  238. <Tool
  239. Name="VCBscMakeTool"
  240. SuppressStartupBanner="true"
  241. OutputFile=".\Debug/libtomcrypt.bsc"
  242. />
  243. <Tool
  244. Name="VCFxCopTool"
  245. />
  246. <Tool
  247. Name="VCPostBuildEventTool"
  248. />
  249. </Configuration>
  250. <Configuration
  251. Name="Release|x64"
  252. OutputDirectory="MSVC_$(PlatformName)_$(ConfigurationName)"
  253. IntermediateDirectory="MSVC_$(PlatformName)_$(ConfigurationName)\Intermediate"
  254. ConfigurationType="4"
  255. UseOfMFC="0"
  256. ATLMinimizesCRunTimeLibraryUsage="false"
  257. CharacterSet="0"
  258. >
  259. <Tool
  260. Name="VCPreBuildEventTool"
  261. />
  262. <Tool
  263. Name="VCCustomBuildTool"
  264. />
  265. <Tool
  266. Name="VCXMLDataGeneratorTool"
  267. />
  268. <Tool
  269. Name="VCWebServiceProxyGeneratorTool"
  270. />
  271. <Tool
  272. Name="VCMIDLTool"
  273. TargetEnvironment="3"
  274. />
  275. <Tool
  276. Name="VCCLCompilerTool"
  277. Optimization="2"
  278. InlineFunctionExpansion="1"
  279. AdditionalIncludeDirectories="src\headers,..\libtommath"
  280. PreprocessorDefinitions="WIN32;NDEBUG;_CRT_SECURE_NO_WARNINGS;_CRT_NONSTDC_NO_DEPRECATE;LTM_DESC;LTC_NO_TEST;LTC_NO_PROTOTYPES"
  281. StringPooling="true"
  282. ExceptionHandling="0"
  283. RuntimeLibrary="0"
  284. EnableFunctionLevelLinking="true"
  285. PrecompiledHeaderFile="$(IntDir)\libtomcrypt.pch"
  286. AssemblerListingLocation="$(IntDir)\"
  287. ObjectFile="$(IntDir)\"
  288. ProgramDataBaseFileName="$(IntDir)\"
  289. WarningLevel="3"
  290. SuppressStartupBanner="true"
  291. CompileAs="1"
  292. />
  293. <Tool
  294. Name="VCManagedResourceCompilerTool"
  295. />
  296. <Tool
  297. Name="VCResourceCompilerTool"
  298. PreprocessorDefinitions="NDEBUG"
  299. Culture="1033"
  300. />
  301. <Tool
  302. Name="VCPreLinkEventTool"
  303. />
  304. <Tool
  305. Name="VCLibrarianTool"
  306. OutputFile="$(OutDir)\tomcrypt.lib"
  307. SuppressStartupBanner="true"
  308. />
  309. <Tool
  310. Name="VCALinkTool"
  311. />
  312. <Tool
  313. Name="VCXDCMakeTool"
  314. />
  315. <Tool
  316. Name="VCBscMakeTool"
  317. SuppressStartupBanner="true"
  318. OutputFile=".\Release/libtomcrypt.bsc"
  319. />
  320. <Tool
  321. Name="VCFxCopTool"
  322. />
  323. <Tool
  324. Name="VCPostBuildEventTool"
  325. />
  326. </Configuration>
  327. </Configurations>
  328. <References>
  329. </References>
  330. <Files>
  331. <Filter
  332. Name="ciphers"
  333. >
  334. <File
  335. RelativePath="src\ciphers\anubis.c"
  336. >
  337. </File>
  338. <File
  339. RelativePath="src\ciphers\blowfish.c"
  340. >
  341. </File>
  342. <File
  343. RelativePath="src\ciphers\camellia.c"
  344. >
  345. </File>
  346. <File
  347. RelativePath="src\ciphers\cast5.c"
  348. >
  349. </File>
  350. <File
  351. RelativePath="src\ciphers\des.c"
  352. >
  353. </File>
  354. <File
  355. RelativePath="src\ciphers\idea.c"
  356. >
  357. </File>
  358. <File
  359. RelativePath="src\ciphers\kasumi.c"
  360. >
  361. </File>
  362. <File
  363. RelativePath="src\ciphers\khazad.c"
  364. >
  365. </File>
  366. <File
  367. RelativePath="src\ciphers\kseed.c"
  368. >
  369. </File>
  370. <File
  371. RelativePath="src\ciphers\multi2.c"
  372. >
  373. </File>
  374. <File
  375. RelativePath="src\ciphers\noekeon.c"
  376. >
  377. </File>
  378. <File
  379. RelativePath="src\ciphers\rc2.c"
  380. >
  381. </File>
  382. <File
  383. RelativePath="src\ciphers\rc5.c"
  384. >
  385. </File>
  386. <File
  387. RelativePath="src\ciphers\rc6.c"
  388. >
  389. </File>
  390. <File
  391. RelativePath="src\ciphers\serpent.c"
  392. >
  393. </File>
  394. <File
  395. RelativePath="src\ciphers\skipjack.c"
  396. >
  397. </File>
  398. <File
  399. RelativePath="src\ciphers\sm4.c"
  400. >
  401. </File>
  402. <File
  403. RelativePath="src\ciphers\tea.c"
  404. >
  405. </File>
  406. <File
  407. RelativePath="src\ciphers\xtea.c"
  408. >
  409. </File>
  410. <Filter
  411. Name="aes"
  412. >
  413. <File
  414. RelativePath="src\ciphers\aes\aes.c"
  415. >
  416. </File>
  417. <File
  418. RelativePath="src\ciphers\aes\aes_desc.c"
  419. >
  420. </File>
  421. <File
  422. RelativePath="src\ciphers\aes\aes_tab.c"
  423. >
  424. <FileConfiguration
  425. Name="Debug|Win32"
  426. ExcludedFromBuild="true"
  427. >
  428. <Tool
  429. Name="VCCLCompilerTool"
  430. AdditionalIncludeDirectories=""
  431. PreprocessorDefinitions=""
  432. />
  433. </FileConfiguration>
  434. <FileConfiguration
  435. Name="Release|Win32"
  436. ExcludedFromBuild="true"
  437. >
  438. <Tool
  439. Name="VCCLCompilerTool"
  440. AdditionalIncludeDirectories=""
  441. PreprocessorDefinitions=""
  442. />
  443. </FileConfiguration>
  444. <FileConfiguration
  445. Name="Debug|x64"
  446. ExcludedFromBuild="true"
  447. >
  448. <Tool
  449. Name="VCCLCompilerTool"
  450. AdditionalIncludeDirectories=""
  451. PreprocessorDefinitions=""
  452. />
  453. </FileConfiguration>
  454. <FileConfiguration
  455. Name="Release|x64"
  456. ExcludedFromBuild="true"
  457. >
  458. <Tool
  459. Name="VCCLCompilerTool"
  460. AdditionalIncludeDirectories=""
  461. PreprocessorDefinitions=""
  462. />
  463. </FileConfiguration>
  464. </File>
  465. <File
  466. RelativePath="src\ciphers\aes\aesni.c"
  467. >
  468. </File>
  469. </Filter>
  470. <Filter
  471. Name="safer"
  472. >
  473. <File
  474. RelativePath="src\ciphers\safer\safer.c"
  475. >
  476. </File>
  477. <File
  478. RelativePath="src\ciphers\safer\safer_tab.c"
  479. >
  480. <FileConfiguration
  481. Name="Debug|Win32"
  482. ExcludedFromBuild="true"
  483. >
  484. <Tool
  485. Name="VCCLCompilerTool"
  486. AdditionalIncludeDirectories=""
  487. PreprocessorDefinitions=""
  488. />
  489. </FileConfiguration>
  490. <FileConfiguration
  491. Name="Release|Win32"
  492. ExcludedFromBuild="true"
  493. >
  494. <Tool
  495. Name="VCCLCompilerTool"
  496. AdditionalIncludeDirectories=""
  497. PreprocessorDefinitions=""
  498. />
  499. </FileConfiguration>
  500. <FileConfiguration
  501. Name="Debug|x64"
  502. ExcludedFromBuild="true"
  503. >
  504. <Tool
  505. Name="VCCLCompilerTool"
  506. AdditionalIncludeDirectories=""
  507. PreprocessorDefinitions=""
  508. />
  509. </FileConfiguration>
  510. <FileConfiguration
  511. Name="Release|x64"
  512. ExcludedFromBuild="true"
  513. >
  514. <Tool
  515. Name="VCCLCompilerTool"
  516. AdditionalIncludeDirectories=""
  517. PreprocessorDefinitions=""
  518. />
  519. </FileConfiguration>
  520. </File>
  521. <File
  522. RelativePath="src\ciphers\safer\saferp.c"
  523. >
  524. </File>
  525. </Filter>
  526. <Filter
  527. Name="twofish"
  528. >
  529. <File
  530. RelativePath="src\ciphers\twofish\twofish.c"
  531. >
  532. </File>
  533. <File
  534. RelativePath="src\ciphers\twofish\twofish_tab.c"
  535. >
  536. <FileConfiguration
  537. Name="Debug|Win32"
  538. ExcludedFromBuild="true"
  539. >
  540. <Tool
  541. Name="VCCLCompilerTool"
  542. AdditionalIncludeDirectories=""
  543. PreprocessorDefinitions=""
  544. />
  545. </FileConfiguration>
  546. <FileConfiguration
  547. Name="Release|Win32"
  548. ExcludedFromBuild="true"
  549. >
  550. <Tool
  551. Name="VCCLCompilerTool"
  552. AdditionalIncludeDirectories=""
  553. PreprocessorDefinitions=""
  554. />
  555. </FileConfiguration>
  556. <FileConfiguration
  557. Name="Debug|x64"
  558. ExcludedFromBuild="true"
  559. >
  560. <Tool
  561. Name="VCCLCompilerTool"
  562. AdditionalIncludeDirectories=""
  563. PreprocessorDefinitions=""
  564. />
  565. </FileConfiguration>
  566. <FileConfiguration
  567. Name="Release|x64"
  568. ExcludedFromBuild="true"
  569. >
  570. <Tool
  571. Name="VCCLCompilerTool"
  572. AdditionalIncludeDirectories=""
  573. PreprocessorDefinitions=""
  574. />
  575. </FileConfiguration>
  576. </File>
  577. </Filter>
  578. </Filter>
  579. <Filter
  580. Name="encauth"
  581. >
  582. <Filter
  583. Name="ccm"
  584. >
  585. <File
  586. RelativePath="src\encauth\ccm\ccm_add_aad.c"
  587. >
  588. </File>
  589. <File
  590. RelativePath="src\encauth\ccm\ccm_add_nonce.c"
  591. >
  592. </File>
  593. <File
  594. RelativePath="src\encauth\ccm\ccm_done.c"
  595. >
  596. </File>
  597. <File
  598. RelativePath="src\encauth\ccm\ccm_init.c"
  599. >
  600. </File>
  601. <File
  602. RelativePath="src\encauth\ccm\ccm_memory.c"
  603. >
  604. </File>
  605. <File
  606. RelativePath="src\encauth\ccm\ccm_process.c"
  607. >
  608. </File>
  609. <File
  610. RelativePath="src\encauth\ccm\ccm_reset.c"
  611. >
  612. </File>
  613. <File
  614. RelativePath="src\encauth\ccm\ccm_test.c"
  615. >
  616. </File>
  617. </Filter>
  618. <Filter
  619. Name="chachapoly"
  620. >
  621. <File
  622. RelativePath="src\encauth\chachapoly\chacha20poly1305_add_aad.c"
  623. >
  624. </File>
  625. <File
  626. RelativePath="src\encauth\chachapoly\chacha20poly1305_decrypt.c"
  627. >
  628. </File>
  629. <File
  630. RelativePath="src\encauth\chachapoly\chacha20poly1305_done.c"
  631. >
  632. </File>
  633. <File
  634. RelativePath="src\encauth\chachapoly\chacha20poly1305_encrypt.c"
  635. >
  636. </File>
  637. <File
  638. RelativePath="src\encauth\chachapoly\chacha20poly1305_init.c"
  639. >
  640. </File>
  641. <File
  642. RelativePath="src\encauth\chachapoly\chacha20poly1305_memory.c"
  643. >
  644. </File>
  645. <File
  646. RelativePath="src\encauth\chachapoly\chacha20poly1305_setiv.c"
  647. >
  648. </File>
  649. <File
  650. RelativePath="src\encauth\chachapoly\chacha20poly1305_setiv_rfc7905.c"
  651. >
  652. </File>
  653. <File
  654. RelativePath="src\encauth\chachapoly\chacha20poly1305_test.c"
  655. >
  656. </File>
  657. </Filter>
  658. <Filter
  659. Name="eax"
  660. >
  661. <File
  662. RelativePath="src\encauth\eax\eax_addheader.c"
  663. >
  664. </File>
  665. <File
  666. RelativePath="src\encauth\eax\eax_decrypt.c"
  667. >
  668. </File>
  669. <File
  670. RelativePath="src\encauth\eax\eax_decrypt_verify_memory.c"
  671. >
  672. </File>
  673. <File
  674. RelativePath="src\encauth\eax\eax_done.c"
  675. >
  676. </File>
  677. <File
  678. RelativePath="src\encauth\eax\eax_encrypt.c"
  679. >
  680. </File>
  681. <File
  682. RelativePath="src\encauth\eax\eax_encrypt_authenticate_memory.c"
  683. >
  684. </File>
  685. <File
  686. RelativePath="src\encauth\eax\eax_init.c"
  687. >
  688. </File>
  689. <File
  690. RelativePath="src\encauth\eax\eax_test.c"
  691. >
  692. </File>
  693. </Filter>
  694. <Filter
  695. Name="gcm"
  696. >
  697. <File
  698. RelativePath="src\encauth\gcm\gcm_add_aad.c"
  699. >
  700. </File>
  701. <File
  702. RelativePath="src\encauth\gcm\gcm_add_iv.c"
  703. >
  704. </File>
  705. <File
  706. RelativePath="src\encauth\gcm\gcm_done.c"
  707. >
  708. </File>
  709. <File
  710. RelativePath="src\encauth\gcm\gcm_gf_mult.c"
  711. >
  712. </File>
  713. <File
  714. RelativePath="src\encauth\gcm\gcm_init.c"
  715. >
  716. </File>
  717. <File
  718. RelativePath="src\encauth\gcm\gcm_memory.c"
  719. >
  720. </File>
  721. <File
  722. RelativePath="src\encauth\gcm\gcm_mult_h.c"
  723. >
  724. </File>
  725. <File
  726. RelativePath="src\encauth\gcm\gcm_process.c"
  727. >
  728. </File>
  729. <File
  730. RelativePath="src\encauth\gcm\gcm_reset.c"
  731. >
  732. </File>
  733. <File
  734. RelativePath="src\encauth\gcm\gcm_test.c"
  735. >
  736. </File>
  737. </Filter>
  738. <Filter
  739. Name="ocb"
  740. >
  741. <File
  742. RelativePath="src\encauth\ocb\ocb_decrypt.c"
  743. >
  744. </File>
  745. <File
  746. RelativePath="src\encauth\ocb\ocb_decrypt_verify_memory.c"
  747. >
  748. </File>
  749. <File
  750. RelativePath="src\encauth\ocb\ocb_done_decrypt.c"
  751. >
  752. </File>
  753. <File
  754. RelativePath="src\encauth\ocb\ocb_done_encrypt.c"
  755. >
  756. </File>
  757. <File
  758. RelativePath="src\encauth\ocb\ocb_encrypt.c"
  759. >
  760. </File>
  761. <File
  762. RelativePath="src\encauth\ocb\ocb_encrypt_authenticate_memory.c"
  763. >
  764. </File>
  765. <File
  766. RelativePath="src\encauth\ocb\ocb_init.c"
  767. >
  768. </File>
  769. <File
  770. RelativePath="src\encauth\ocb\ocb_ntz.c"
  771. >
  772. </File>
  773. <File
  774. RelativePath="src\encauth\ocb\ocb_shift_xor.c"
  775. >
  776. </File>
  777. <File
  778. RelativePath="src\encauth\ocb\ocb_test.c"
  779. >
  780. </File>
  781. <File
  782. RelativePath="src\encauth\ocb\s_ocb_done.c"
  783. >
  784. </File>
  785. </Filter>
  786. <Filter
  787. Name="ocb3"
  788. >
  789. <File
  790. RelativePath="src\encauth\ocb3\ocb3_add_aad.c"
  791. >
  792. </File>
  793. <File
  794. RelativePath="src\encauth\ocb3\ocb3_decrypt.c"
  795. >
  796. </File>
  797. <File
  798. RelativePath="src\encauth\ocb3\ocb3_decrypt_last.c"
  799. >
  800. </File>
  801. <File
  802. RelativePath="src\encauth\ocb3\ocb3_decrypt_verify_memory.c"
  803. >
  804. </File>
  805. <File
  806. RelativePath="src\encauth\ocb3\ocb3_done.c"
  807. >
  808. </File>
  809. <File
  810. RelativePath="src\encauth\ocb3\ocb3_encrypt.c"
  811. >
  812. </File>
  813. <File
  814. RelativePath="src\encauth\ocb3\ocb3_encrypt_authenticate_memory.c"
  815. >
  816. </File>
  817. <File
  818. RelativePath="src\encauth\ocb3\ocb3_encrypt_last.c"
  819. >
  820. </File>
  821. <File
  822. RelativePath="src\encauth\ocb3\ocb3_init.c"
  823. >
  824. </File>
  825. <File
  826. RelativePath="src\encauth\ocb3\ocb3_int_ntz.c"
  827. >
  828. </File>
  829. <File
  830. RelativePath="src\encauth\ocb3\ocb3_int_xor_blocks.c"
  831. >
  832. </File>
  833. <File
  834. RelativePath="src\encauth\ocb3\ocb3_test.c"
  835. >
  836. </File>
  837. </Filter>
  838. <Filter
  839. Name="siv"
  840. >
  841. <File
  842. RelativePath="src\encauth\siv\siv.c"
  843. >
  844. </File>
  845. </Filter>
  846. </Filter>
  847. <Filter
  848. Name="hashes"
  849. >
  850. <File
  851. RelativePath="src\hashes\blake2b.c"
  852. >
  853. </File>
  854. <File
  855. RelativePath="src\hashes\blake2s.c"
  856. >
  857. </File>
  858. <File
  859. RelativePath="src\hashes\md2.c"
  860. >
  861. </File>
  862. <File
  863. RelativePath="src\hashes\md4.c"
  864. >
  865. </File>
  866. <File
  867. RelativePath="src\hashes\md5.c"
  868. >
  869. </File>
  870. <File
  871. RelativePath="src\hashes\rmd128.c"
  872. >
  873. </File>
  874. <File
  875. RelativePath="src\hashes\rmd160.c"
  876. >
  877. </File>
  878. <File
  879. RelativePath="src\hashes\rmd256.c"
  880. >
  881. </File>
  882. <File
  883. RelativePath="src\hashes\rmd320.c"
  884. >
  885. </File>
  886. <File
  887. RelativePath="src\hashes\sha1.c"
  888. >
  889. </File>
  890. <File
  891. RelativePath="src\hashes\sha3.c"
  892. >
  893. </File>
  894. <File
  895. RelativePath="src\hashes\sha3_test.c"
  896. >
  897. </File>
  898. <File
  899. RelativePath="src\hashes\tiger.c"
  900. >
  901. </File>
  902. <Filter
  903. Name="chc"
  904. >
  905. <File
  906. RelativePath="src\hashes\chc\chc.c"
  907. >
  908. </File>
  909. </Filter>
  910. <Filter
  911. Name="helper"
  912. >
  913. <File
  914. RelativePath="src\hashes\helper\hash_file.c"
  915. >
  916. </File>
  917. <File
  918. RelativePath="src\hashes\helper\hash_filehandle.c"
  919. >
  920. </File>
  921. <File
  922. RelativePath="src\hashes\helper\hash_memory.c"
  923. >
  924. </File>
  925. <File
  926. RelativePath="src\hashes\helper\hash_memory_multi.c"
  927. >
  928. </File>
  929. </Filter>
  930. <Filter
  931. Name="sha2"
  932. >
  933. <File
  934. RelativePath="src\hashes\sha2\sha224.c"
  935. >
  936. </File>
  937. <File
  938. RelativePath="src\hashes\sha2\sha256.c"
  939. >
  940. </File>
  941. <File
  942. RelativePath="src\hashes\sha2\sha384.c"
  943. >
  944. </File>
  945. <File
  946. RelativePath="src\hashes\sha2\sha512.c"
  947. >
  948. </File>
  949. <File
  950. RelativePath="src\hashes\sha2\sha512_224.c"
  951. >
  952. </File>
  953. <File
  954. RelativePath="src\hashes\sha2\sha512_256.c"
  955. >
  956. </File>
  957. </Filter>
  958. <Filter
  959. Name="whirl"
  960. >
  961. <File
  962. RelativePath="src\hashes\whirl\whirl.c"
  963. >
  964. </File>
  965. <File
  966. RelativePath="src\hashes\whirl\whirltab.c"
  967. >
  968. <FileConfiguration
  969. Name="Debug|Win32"
  970. ExcludedFromBuild="true"
  971. >
  972. <Tool
  973. Name="VCCLCompilerTool"
  974. AdditionalIncludeDirectories=""
  975. PreprocessorDefinitions=""
  976. />
  977. </FileConfiguration>
  978. <FileConfiguration
  979. Name="Release|Win32"
  980. ExcludedFromBuild="true"
  981. >
  982. <Tool
  983. Name="VCCLCompilerTool"
  984. AdditionalIncludeDirectories=""
  985. PreprocessorDefinitions=""
  986. />
  987. </FileConfiguration>
  988. <FileConfiguration
  989. Name="Debug|x64"
  990. ExcludedFromBuild="true"
  991. >
  992. <Tool
  993. Name="VCCLCompilerTool"
  994. AdditionalIncludeDirectories=""
  995. PreprocessorDefinitions=""
  996. />
  997. </FileConfiguration>
  998. <FileConfiguration
  999. Name="Release|x64"
  1000. ExcludedFromBuild="true"
  1001. >
  1002. <Tool
  1003. Name="VCCLCompilerTool"
  1004. AdditionalIncludeDirectories=""
  1005. PreprocessorDefinitions=""
  1006. />
  1007. </FileConfiguration>
  1008. </File>
  1009. </Filter>
  1010. </Filter>
  1011. <Filter
  1012. Name="headers"
  1013. >
  1014. <File
  1015. RelativePath="src\headers\tomcrypt.h"
  1016. >
  1017. </File>
  1018. <File
  1019. RelativePath="src\headers\tomcrypt_argchk.h"
  1020. >
  1021. </File>
  1022. <File
  1023. RelativePath="src\headers\tomcrypt_cfg.h"
  1024. >
  1025. </File>
  1026. <File
  1027. RelativePath="src\headers\tomcrypt_cipher.h"
  1028. >
  1029. </File>
  1030. <File
  1031. RelativePath="src\headers\tomcrypt_custom.h"
  1032. >
  1033. </File>
  1034. <File
  1035. RelativePath="src\headers\tomcrypt_hash.h"
  1036. >
  1037. </File>
  1038. <File
  1039. RelativePath="src\headers\tomcrypt_mac.h"
  1040. >
  1041. </File>
  1042. <File
  1043. RelativePath="src\headers\tomcrypt_macros.h"
  1044. >
  1045. </File>
  1046. <File
  1047. RelativePath="src\headers\tomcrypt_math.h"
  1048. >
  1049. </File>
  1050. <File
  1051. RelativePath="src\headers\tomcrypt_misc.h"
  1052. >
  1053. </File>
  1054. <File
  1055. RelativePath="src\headers\tomcrypt_pk.h"
  1056. >
  1057. </File>
  1058. <File
  1059. RelativePath="src\headers\tomcrypt_pkcs.h"
  1060. >
  1061. </File>
  1062. <File
  1063. RelativePath="src\headers\tomcrypt_private.h"
  1064. >
  1065. </File>
  1066. <File
  1067. RelativePath="src\headers\tomcrypt_prng.h"
  1068. >
  1069. </File>
  1070. </Filter>
  1071. <Filter
  1072. Name="mac"
  1073. >
  1074. <Filter
  1075. Name="blake2"
  1076. >
  1077. <File
  1078. RelativePath="src\mac\blake2\blake2bmac.c"
  1079. >
  1080. </File>
  1081. <File
  1082. RelativePath="src\mac\blake2\blake2bmac_file.c"
  1083. >
  1084. </File>
  1085. <File
  1086. RelativePath="src\mac\blake2\blake2bmac_memory.c"
  1087. >
  1088. </File>
  1089. <File
  1090. RelativePath="src\mac\blake2\blake2bmac_memory_multi.c"
  1091. >
  1092. </File>
  1093. <File
  1094. RelativePath="src\mac\blake2\blake2bmac_test.c"
  1095. >
  1096. </File>
  1097. <File
  1098. RelativePath="src\mac\blake2\blake2smac.c"
  1099. >
  1100. </File>
  1101. <File
  1102. RelativePath="src\mac\blake2\blake2smac_file.c"
  1103. >
  1104. </File>
  1105. <File
  1106. RelativePath="src\mac\blake2\blake2smac_memory.c"
  1107. >
  1108. </File>
  1109. <File
  1110. RelativePath="src\mac\blake2\blake2smac_memory_multi.c"
  1111. >
  1112. </File>
  1113. <File
  1114. RelativePath="src\mac\blake2\blake2smac_test.c"
  1115. >
  1116. </File>
  1117. </Filter>
  1118. <Filter
  1119. Name="f9"
  1120. >
  1121. <File
  1122. RelativePath="src\mac\f9\f9_done.c"
  1123. >
  1124. </File>
  1125. <File
  1126. RelativePath="src\mac\f9\f9_file.c"
  1127. >
  1128. </File>
  1129. <File
  1130. RelativePath="src\mac\f9\f9_init.c"
  1131. >
  1132. </File>
  1133. <File
  1134. RelativePath="src\mac\f9\f9_memory.c"
  1135. >
  1136. </File>
  1137. <File
  1138. RelativePath="src\mac\f9\f9_memory_multi.c"
  1139. >
  1140. </File>
  1141. <File
  1142. RelativePath="src\mac\f9\f9_process.c"
  1143. >
  1144. </File>
  1145. <File
  1146. RelativePath="src\mac\f9\f9_test.c"
  1147. >
  1148. </File>
  1149. </Filter>
  1150. <Filter
  1151. Name="hmac"
  1152. >
  1153. <File
  1154. RelativePath="src\mac\hmac\hmac_done.c"
  1155. >
  1156. </File>
  1157. <File
  1158. RelativePath="src\mac\hmac\hmac_file.c"
  1159. >
  1160. </File>
  1161. <File
  1162. RelativePath="src\mac\hmac\hmac_init.c"
  1163. >
  1164. </File>
  1165. <File
  1166. RelativePath="src\mac\hmac\hmac_memory.c"
  1167. >
  1168. </File>
  1169. <File
  1170. RelativePath="src\mac\hmac\hmac_memory_multi.c"
  1171. >
  1172. </File>
  1173. <File
  1174. RelativePath="src\mac\hmac\hmac_process.c"
  1175. >
  1176. </File>
  1177. <File
  1178. RelativePath="src\mac\hmac\hmac_test.c"
  1179. >
  1180. </File>
  1181. </Filter>
  1182. <Filter
  1183. Name="omac"
  1184. >
  1185. <File
  1186. RelativePath="src\mac\omac\omac_done.c"
  1187. >
  1188. </File>
  1189. <File
  1190. RelativePath="src\mac\omac\omac_file.c"
  1191. >
  1192. </File>
  1193. <File
  1194. RelativePath="src\mac\omac\omac_init.c"
  1195. >
  1196. </File>
  1197. <File
  1198. RelativePath="src\mac\omac\omac_memory.c"
  1199. >
  1200. </File>
  1201. <File
  1202. RelativePath="src\mac\omac\omac_memory_multi.c"
  1203. >
  1204. </File>
  1205. <File
  1206. RelativePath="src\mac\omac\omac_process.c"
  1207. >
  1208. </File>
  1209. <File
  1210. RelativePath="src\mac\omac\omac_test.c"
  1211. >
  1212. </File>
  1213. </Filter>
  1214. <Filter
  1215. Name="pelican"
  1216. >
  1217. <File
  1218. RelativePath="src\mac\pelican\pelican.c"
  1219. >
  1220. </File>
  1221. <File
  1222. RelativePath="src\mac\pelican\pelican_memory.c"
  1223. >
  1224. </File>
  1225. <File
  1226. RelativePath="src\mac\pelican\pelican_test.c"
  1227. >
  1228. </File>
  1229. </Filter>
  1230. <Filter
  1231. Name="pmac"
  1232. >
  1233. <File
  1234. RelativePath="src\mac\pmac\pmac_done.c"
  1235. >
  1236. </File>
  1237. <File
  1238. RelativePath="src\mac\pmac\pmac_file.c"
  1239. >
  1240. </File>
  1241. <File
  1242. RelativePath="src\mac\pmac\pmac_init.c"
  1243. >
  1244. </File>
  1245. <File
  1246. RelativePath="src\mac\pmac\pmac_memory.c"
  1247. >
  1248. </File>
  1249. <File
  1250. RelativePath="src\mac\pmac\pmac_memory_multi.c"
  1251. >
  1252. </File>
  1253. <File
  1254. RelativePath="src\mac\pmac\pmac_ntz.c"
  1255. >
  1256. </File>
  1257. <File
  1258. RelativePath="src\mac\pmac\pmac_process.c"
  1259. >
  1260. </File>
  1261. <File
  1262. RelativePath="src\mac\pmac\pmac_shift_xor.c"
  1263. >
  1264. </File>
  1265. <File
  1266. RelativePath="src\mac\pmac\pmac_test.c"
  1267. >
  1268. </File>
  1269. </Filter>
  1270. <Filter
  1271. Name="poly1305"
  1272. >
  1273. <File
  1274. RelativePath="src\mac\poly1305\poly1305.c"
  1275. >
  1276. </File>
  1277. <File
  1278. RelativePath="src\mac\poly1305\poly1305_file.c"
  1279. >
  1280. </File>
  1281. <File
  1282. RelativePath="src\mac\poly1305\poly1305_memory.c"
  1283. >
  1284. </File>
  1285. <File
  1286. RelativePath="src\mac\poly1305\poly1305_memory_multi.c"
  1287. >
  1288. </File>
  1289. <File
  1290. RelativePath="src\mac\poly1305\poly1305_test.c"
  1291. >
  1292. </File>
  1293. </Filter>
  1294. <Filter
  1295. Name="xcbc"
  1296. >
  1297. <File
  1298. RelativePath="src\mac\xcbc\xcbc_done.c"
  1299. >
  1300. </File>
  1301. <File
  1302. RelativePath="src\mac\xcbc\xcbc_file.c"
  1303. >
  1304. </File>
  1305. <File
  1306. RelativePath="src\mac\xcbc\xcbc_init.c"
  1307. >
  1308. </File>
  1309. <File
  1310. RelativePath="src\mac\xcbc\xcbc_memory.c"
  1311. >
  1312. </File>
  1313. <File
  1314. RelativePath="src\mac\xcbc\xcbc_memory_multi.c"
  1315. >
  1316. </File>
  1317. <File
  1318. RelativePath="src\mac\xcbc\xcbc_process.c"
  1319. >
  1320. </File>
  1321. <File
  1322. RelativePath="src\mac\xcbc\xcbc_test.c"
  1323. >
  1324. </File>
  1325. </Filter>
  1326. </Filter>
  1327. <Filter
  1328. Name="math"
  1329. >
  1330. <File
  1331. RelativePath="src\math\gmp_desc.c"
  1332. >
  1333. </File>
  1334. <File
  1335. RelativePath="src\math\ltm_desc.c"
  1336. >
  1337. </File>
  1338. <File
  1339. RelativePath="src\math\multi.c"
  1340. >
  1341. </File>
  1342. <File
  1343. RelativePath="src\math\radix_to_bin.c"
  1344. >
  1345. </File>
  1346. <File
  1347. RelativePath="src\math\rand_bn.c"
  1348. >
  1349. </File>
  1350. <File
  1351. RelativePath="src\math\rand_prime.c"
  1352. >
  1353. </File>
  1354. <File
  1355. RelativePath="src\math\tfm_desc.c"
  1356. >
  1357. </File>
  1358. <Filter
  1359. Name="fp"
  1360. >
  1361. <File
  1362. RelativePath="src\math\fp\ltc_ecc_fp_mulmod.c"
  1363. >
  1364. </File>
  1365. </Filter>
  1366. </Filter>
  1367. <Filter
  1368. Name="misc"
  1369. >
  1370. <File
  1371. RelativePath="src\misc\adler32.c"
  1372. >
  1373. </File>
  1374. <File
  1375. RelativePath="src\misc\burn_stack.c"
  1376. >
  1377. </File>
  1378. <File
  1379. RelativePath="src\misc\compare_testvector.c"
  1380. >
  1381. </File>
  1382. <File
  1383. RelativePath="src\misc\copy_or_zeromem.c"
  1384. >
  1385. </File>
  1386. <File
  1387. RelativePath="src\misc\crc32.c"
  1388. >
  1389. </File>
  1390. <File
  1391. RelativePath="src\misc\error_to_string.c"
  1392. >
  1393. </File>
  1394. <File
  1395. RelativePath="src\misc\mem_neq.c"
  1396. >
  1397. </File>
  1398. <File
  1399. RelativePath="src\misc\password_free.c"
  1400. >
  1401. </File>
  1402. <File
  1403. RelativePath="src\misc\zeromem.c"
  1404. >
  1405. </File>
  1406. <Filter
  1407. Name="base16"
  1408. >
  1409. <File
  1410. RelativePath="src\misc\base16\base16_decode.c"
  1411. >
  1412. </File>
  1413. <File
  1414. RelativePath="src\misc\base16\base16_encode.c"
  1415. >
  1416. </File>
  1417. </Filter>
  1418. <Filter
  1419. Name="base32"
  1420. >
  1421. <File
  1422. RelativePath="src\misc\base32\base32_decode.c"
  1423. >
  1424. </File>
  1425. <File
  1426. RelativePath="src\misc\base32\base32_encode.c"
  1427. >
  1428. </File>
  1429. </Filter>
  1430. <Filter
  1431. Name="base64"
  1432. >
  1433. <File
  1434. RelativePath="src\misc\base64\base64_decode.c"
  1435. >
  1436. </File>
  1437. <File
  1438. RelativePath="src\misc\base64\base64_encode.c"
  1439. >
  1440. </File>
  1441. </Filter>
  1442. <Filter
  1443. Name="bcrypt"
  1444. >
  1445. <File
  1446. RelativePath="src\misc\bcrypt\bcrypt.c"
  1447. >
  1448. </File>
  1449. </Filter>
  1450. <Filter
  1451. Name="crypt"
  1452. >
  1453. <File
  1454. RelativePath="src\misc\crypt\crypt.c"
  1455. >
  1456. </File>
  1457. <File
  1458. RelativePath="src\misc\crypt\crypt_argchk.c"
  1459. >
  1460. </File>
  1461. <File
  1462. RelativePath="src\misc\crypt\crypt_cipher_descriptor.c"
  1463. >
  1464. </File>
  1465. <File
  1466. RelativePath="src\misc\crypt\crypt_cipher_is_valid.c"
  1467. >
  1468. </File>
  1469. <File
  1470. RelativePath="src\misc\crypt\crypt_constants.c"
  1471. >
  1472. </File>
  1473. <File
  1474. RelativePath="src\misc\crypt\crypt_find_cipher.c"
  1475. >
  1476. </File>
  1477. <File
  1478. RelativePath="src\misc\crypt\crypt_find_cipher_any.c"
  1479. >
  1480. </File>
  1481. <File
  1482. RelativePath="src\misc\crypt\crypt_find_cipher_id.c"
  1483. >
  1484. </File>
  1485. <File
  1486. RelativePath="src\misc\crypt\crypt_find_hash.c"
  1487. >
  1488. </File>
  1489. <File
  1490. RelativePath="src\misc\crypt\crypt_find_hash_any.c"
  1491. >
  1492. </File>
  1493. <File
  1494. RelativePath="src\misc\crypt\crypt_find_hash_id.c"
  1495. >
  1496. </File>
  1497. <File
  1498. RelativePath="src\misc\crypt\crypt_find_hash_oid.c"
  1499. >
  1500. </File>
  1501. <File
  1502. RelativePath="src\misc\crypt\crypt_find_prng.c"
  1503. >
  1504. </File>
  1505. <File
  1506. RelativePath="src\misc\crypt\crypt_fsa.c"
  1507. >
  1508. </File>
  1509. <File
  1510. RelativePath="src\misc\crypt\crypt_hash_descriptor.c"
  1511. >
  1512. </File>
  1513. <File
  1514. RelativePath="src\misc\crypt\crypt_hash_is_valid.c"
  1515. >
  1516. </File>
  1517. <File
  1518. RelativePath="src\misc\crypt\crypt_inits.c"
  1519. >
  1520. </File>
  1521. <File
  1522. RelativePath="src\misc\crypt\crypt_ltc_mp_descriptor.c"
  1523. >
  1524. </File>
  1525. <File
  1526. RelativePath="src\misc\crypt\crypt_prng_descriptor.c"
  1527. >
  1528. </File>
  1529. <File
  1530. RelativePath="src\misc\crypt\crypt_prng_is_valid.c"
  1531. >
  1532. </File>
  1533. <File
  1534. RelativePath="src\misc\crypt\crypt_prng_rng_descriptor.c"
  1535. >
  1536. </File>
  1537. <File
  1538. RelativePath="src\misc\crypt\crypt_register_all_ciphers.c"
  1539. >
  1540. </File>
  1541. <File
  1542. RelativePath="src\misc\crypt\crypt_register_all_hashes.c"
  1543. >
  1544. </File>
  1545. <File
  1546. RelativePath="src\misc\crypt\crypt_register_all_prngs.c"
  1547. >
  1548. </File>
  1549. <File
  1550. RelativePath="src\misc\crypt\crypt_register_cipher.c"
  1551. >
  1552. </File>
  1553. <File
  1554. RelativePath="src\misc\crypt\crypt_register_hash.c"
  1555. >
  1556. </File>
  1557. <File
  1558. RelativePath="src\misc\crypt\crypt_register_prng.c"
  1559. >
  1560. </File>
  1561. <File
  1562. RelativePath="src\misc\crypt\crypt_sizes.c"
  1563. >
  1564. </File>
  1565. <File
  1566. RelativePath="src\misc\crypt\crypt_unregister_cipher.c"
  1567. >
  1568. </File>
  1569. <File
  1570. RelativePath="src\misc\crypt\crypt_unregister_hash.c"
  1571. >
  1572. </File>
  1573. <File
  1574. RelativePath="src\misc\crypt\crypt_unregister_prng.c"
  1575. >
  1576. </File>
  1577. </Filter>
  1578. <Filter
  1579. Name="hkdf"
  1580. >
  1581. <File
  1582. RelativePath="src\misc\hkdf\hkdf.c"
  1583. >
  1584. </File>
  1585. <File
  1586. RelativePath="src\misc\hkdf\hkdf_test.c"
  1587. >
  1588. </File>
  1589. </Filter>
  1590. <Filter
  1591. Name="padding"
  1592. >
  1593. <File
  1594. RelativePath="src\misc\padding\padding_depad.c"
  1595. >
  1596. </File>
  1597. <File
  1598. RelativePath="src\misc\padding\padding_pad.c"
  1599. >
  1600. </File>
  1601. </Filter>
  1602. <Filter
  1603. Name="pbes"
  1604. >
  1605. <File
  1606. RelativePath="src\misc\pbes\pbes.c"
  1607. >
  1608. </File>
  1609. <File
  1610. RelativePath="src\misc\pbes\pbes1.c"
  1611. >
  1612. </File>
  1613. <File
  1614. RelativePath="src\misc\pbes\pbes2.c"
  1615. >
  1616. </File>
  1617. </Filter>
  1618. <Filter
  1619. Name="pem"
  1620. >
  1621. <File
  1622. RelativePath="src\misc\pem\pem.c"
  1623. >
  1624. </File>
  1625. <File
  1626. RelativePath="src\misc\pem\pem_pkcs.c"
  1627. >
  1628. </File>
  1629. <File
  1630. RelativePath="src\misc\pem\pem_read.c"
  1631. >
  1632. </File>
  1633. <File
  1634. RelativePath="src\misc\pem\pem_ssh.c"
  1635. >
  1636. </File>
  1637. </Filter>
  1638. <Filter
  1639. Name="pkcs12"
  1640. >
  1641. <File
  1642. RelativePath="src\misc\pkcs12\pkcs12_kdf.c"
  1643. >
  1644. </File>
  1645. <File
  1646. RelativePath="src\misc\pkcs12\pkcs12_utf8_to_utf16.c"
  1647. >
  1648. </File>
  1649. </Filter>
  1650. <Filter
  1651. Name="pkcs5"
  1652. >
  1653. <File
  1654. RelativePath="src\misc\pkcs5\pkcs_5_1.c"
  1655. >
  1656. </File>
  1657. <File
  1658. RelativePath="src\misc\pkcs5\pkcs_5_2.c"
  1659. >
  1660. </File>
  1661. <File
  1662. RelativePath="src\misc\pkcs5\pkcs_5_test.c"
  1663. >
  1664. </File>
  1665. </Filter>
  1666. <Filter
  1667. Name="ssh"
  1668. >
  1669. <File
  1670. RelativePath="src\misc\ssh\ssh_decode_sequence_multi.c"
  1671. >
  1672. </File>
  1673. <File
  1674. RelativePath="src\misc\ssh\ssh_encode_sequence_multi.c"
  1675. >
  1676. </File>
  1677. </Filter>
  1678. </Filter>
  1679. <Filter
  1680. Name="modes"
  1681. >
  1682. <Filter
  1683. Name="cbc"
  1684. >
  1685. <File
  1686. RelativePath="src\modes\cbc\cbc_decrypt.c"
  1687. >
  1688. </File>
  1689. <File
  1690. RelativePath="src\modes\cbc\cbc_done.c"
  1691. >
  1692. </File>
  1693. <File
  1694. RelativePath="src\modes\cbc\cbc_encrypt.c"
  1695. >
  1696. </File>
  1697. <File
  1698. RelativePath="src\modes\cbc\cbc_getiv.c"
  1699. >
  1700. </File>
  1701. <File
  1702. RelativePath="src\modes\cbc\cbc_setiv.c"
  1703. >
  1704. </File>
  1705. <File
  1706. RelativePath="src\modes\cbc\cbc_start.c"
  1707. >
  1708. </File>
  1709. </Filter>
  1710. <Filter
  1711. Name="cfb"
  1712. >
  1713. <File
  1714. RelativePath="src\modes\cfb\cfb_decrypt.c"
  1715. >
  1716. </File>
  1717. <File
  1718. RelativePath="src\modes\cfb\cfb_done.c"
  1719. >
  1720. </File>
  1721. <File
  1722. RelativePath="src\modes\cfb\cfb_encrypt.c"
  1723. >
  1724. </File>
  1725. <File
  1726. RelativePath="src\modes\cfb\cfb_getiv.c"
  1727. >
  1728. </File>
  1729. <File
  1730. RelativePath="src\modes\cfb\cfb_setiv.c"
  1731. >
  1732. </File>
  1733. <File
  1734. RelativePath="src\modes\cfb\cfb_start.c"
  1735. >
  1736. </File>
  1737. </Filter>
  1738. <Filter
  1739. Name="ctr"
  1740. >
  1741. <File
  1742. RelativePath="src\modes\ctr\ctr_decrypt.c"
  1743. >
  1744. </File>
  1745. <File
  1746. RelativePath="src\modes\ctr\ctr_done.c"
  1747. >
  1748. </File>
  1749. <File
  1750. RelativePath="src\modes\ctr\ctr_encrypt.c"
  1751. >
  1752. </File>
  1753. <File
  1754. RelativePath="src\modes\ctr\ctr_getiv.c"
  1755. >
  1756. </File>
  1757. <File
  1758. RelativePath="src\modes\ctr\ctr_setiv.c"
  1759. >
  1760. </File>
  1761. <File
  1762. RelativePath="src\modes\ctr\ctr_start.c"
  1763. >
  1764. </File>
  1765. <File
  1766. RelativePath="src\modes\ctr\ctr_test.c"
  1767. >
  1768. </File>
  1769. </Filter>
  1770. <Filter
  1771. Name="ecb"
  1772. >
  1773. <File
  1774. RelativePath="src\modes\ecb\ecb_decrypt.c"
  1775. >
  1776. </File>
  1777. <File
  1778. RelativePath="src\modes\ecb\ecb_done.c"
  1779. >
  1780. </File>
  1781. <File
  1782. RelativePath="src\modes\ecb\ecb_encrypt.c"
  1783. >
  1784. </File>
  1785. <File
  1786. RelativePath="src\modes\ecb\ecb_start.c"
  1787. >
  1788. </File>
  1789. </Filter>
  1790. <Filter
  1791. Name="f8"
  1792. >
  1793. <File
  1794. RelativePath="src\modes\f8\f8_decrypt.c"
  1795. >
  1796. </File>
  1797. <File
  1798. RelativePath="src\modes\f8\f8_done.c"
  1799. >
  1800. </File>
  1801. <File
  1802. RelativePath="src\modes\f8\f8_encrypt.c"
  1803. >
  1804. </File>
  1805. <File
  1806. RelativePath="src\modes\f8\f8_getiv.c"
  1807. >
  1808. </File>
  1809. <File
  1810. RelativePath="src\modes\f8\f8_setiv.c"
  1811. >
  1812. </File>
  1813. <File
  1814. RelativePath="src\modes\f8\f8_start.c"
  1815. >
  1816. </File>
  1817. <File
  1818. RelativePath="src\modes\f8\f8_test_mode.c"
  1819. >
  1820. </File>
  1821. </Filter>
  1822. <Filter
  1823. Name="lrw"
  1824. >
  1825. <File
  1826. RelativePath="src\modes\lrw\lrw_decrypt.c"
  1827. >
  1828. </File>
  1829. <File
  1830. RelativePath="src\modes\lrw\lrw_done.c"
  1831. >
  1832. </File>
  1833. <File
  1834. RelativePath="src\modes\lrw\lrw_encrypt.c"
  1835. >
  1836. </File>
  1837. <File
  1838. RelativePath="src\modes\lrw\lrw_getiv.c"
  1839. >
  1840. </File>
  1841. <File
  1842. RelativePath="src\modes\lrw\lrw_process.c"
  1843. >
  1844. </File>
  1845. <File
  1846. RelativePath="src\modes\lrw\lrw_setiv.c"
  1847. >
  1848. </File>
  1849. <File
  1850. RelativePath="src\modes\lrw\lrw_start.c"
  1851. >
  1852. </File>
  1853. <File
  1854. RelativePath="src\modes\lrw\lrw_test.c"
  1855. >
  1856. </File>
  1857. </Filter>
  1858. <Filter
  1859. Name="ofb"
  1860. >
  1861. <File
  1862. RelativePath="src\modes\ofb\ofb_decrypt.c"
  1863. >
  1864. </File>
  1865. <File
  1866. RelativePath="src\modes\ofb\ofb_done.c"
  1867. >
  1868. </File>
  1869. <File
  1870. RelativePath="src\modes\ofb\ofb_encrypt.c"
  1871. >
  1872. </File>
  1873. <File
  1874. RelativePath="src\modes\ofb\ofb_getiv.c"
  1875. >
  1876. </File>
  1877. <File
  1878. RelativePath="src\modes\ofb\ofb_setiv.c"
  1879. >
  1880. </File>
  1881. <File
  1882. RelativePath="src\modes\ofb\ofb_start.c"
  1883. >
  1884. </File>
  1885. </Filter>
  1886. <Filter
  1887. Name="xts"
  1888. >
  1889. <File
  1890. RelativePath="src\modes\xts\xts_decrypt.c"
  1891. >
  1892. </File>
  1893. <File
  1894. RelativePath="src\modes\xts\xts_done.c"
  1895. >
  1896. </File>
  1897. <File
  1898. RelativePath="src\modes\xts\xts_encrypt.c"
  1899. >
  1900. </File>
  1901. <File
  1902. RelativePath="src\modes\xts\xts_init.c"
  1903. >
  1904. </File>
  1905. <File
  1906. RelativePath="src\modes\xts\xts_mult_x.c"
  1907. >
  1908. </File>
  1909. <File
  1910. RelativePath="src\modes\xts\xts_test.c"
  1911. >
  1912. </File>
  1913. </Filter>
  1914. </Filter>
  1915. <Filter
  1916. Name="pk"
  1917. >
  1918. <File
  1919. RelativePath="src\pk\pka_key.c"
  1920. >
  1921. </File>
  1922. <Filter
  1923. Name="asn1"
  1924. >
  1925. <Filter
  1926. Name="der"
  1927. >
  1928. <Filter
  1929. Name="bit"
  1930. >
  1931. <File
  1932. RelativePath="src\pk\asn1\der\bit\der_decode_bit_string.c"
  1933. >
  1934. </File>
  1935. <File
  1936. RelativePath="src\pk\asn1\der\bit\der_decode_raw_bit_string.c"
  1937. >
  1938. </File>
  1939. <File
  1940. RelativePath="src\pk\asn1\der\bit\der_encode_bit_string.c"
  1941. >
  1942. </File>
  1943. <File
  1944. RelativePath="src\pk\asn1\der\bit\der_encode_raw_bit_string.c"
  1945. >
  1946. </File>
  1947. <File
  1948. RelativePath="src\pk\asn1\der\bit\der_length_bit_string.c"
  1949. >
  1950. </File>
  1951. </Filter>
  1952. <Filter
  1953. Name="boolean"
  1954. >
  1955. <File
  1956. RelativePath="src\pk\asn1\der\boolean\der_decode_boolean.c"
  1957. >
  1958. </File>
  1959. <File
  1960. RelativePath="src\pk\asn1\der\boolean\der_encode_boolean.c"
  1961. >
  1962. </File>
  1963. <File
  1964. RelativePath="src\pk\asn1\der\boolean\der_length_boolean.c"
  1965. >
  1966. </File>
  1967. </Filter>
  1968. <Filter
  1969. Name="choice"
  1970. >
  1971. <File
  1972. RelativePath="src\pk\asn1\der\choice\der_decode_choice.c"
  1973. >
  1974. </File>
  1975. </Filter>
  1976. <Filter
  1977. Name="custom_type"
  1978. >
  1979. <File
  1980. RelativePath="src\pk\asn1\der\custom_type\der_decode_custom_type.c"
  1981. >
  1982. </File>
  1983. <File
  1984. RelativePath="src\pk\asn1\der\custom_type\der_encode_custom_type.c"
  1985. >
  1986. </File>
  1987. <File
  1988. RelativePath="src\pk\asn1\der\custom_type\der_length_custom_type.c"
  1989. >
  1990. </File>
  1991. </Filter>
  1992. <Filter
  1993. Name="general"
  1994. >
  1995. <File
  1996. RelativePath="src\pk\asn1\der\general\der_asn1_maps.c"
  1997. >
  1998. </File>
  1999. <File
  2000. RelativePath="src\pk\asn1\der\general\der_decode_asn1_identifier.c"
  2001. >
  2002. </File>
  2003. <File
  2004. RelativePath="src\pk\asn1\der\general\der_decode_asn1_length.c"
  2005. >
  2006. </File>
  2007. <File
  2008. RelativePath="src\pk\asn1\der\general\der_encode_asn1_identifier.c"
  2009. >
  2010. </File>
  2011. <File
  2012. RelativePath="src\pk\asn1\der\general\der_encode_asn1_length.c"
  2013. >
  2014. </File>
  2015. <File
  2016. RelativePath="src\pk\asn1\der\general\der_length_asn1_identifier.c"
  2017. >
  2018. </File>
  2019. <File
  2020. RelativePath="src\pk\asn1\der\general\der_length_asn1_length.c"
  2021. >
  2022. </File>
  2023. </Filter>
  2024. <Filter
  2025. Name="generalizedtime"
  2026. >
  2027. <File
  2028. RelativePath="src\pk\asn1\der\generalizedtime\der_decode_generalizedtime.c"
  2029. >
  2030. </File>
  2031. <File
  2032. RelativePath="src\pk\asn1\der\generalizedtime\der_encode_generalizedtime.c"
  2033. >
  2034. </File>
  2035. <File
  2036. RelativePath="src\pk\asn1\der\generalizedtime\der_length_generalizedtime.c"
  2037. >
  2038. </File>
  2039. </Filter>
  2040. <Filter
  2041. Name="ia5"
  2042. >
  2043. <File
  2044. RelativePath="src\pk\asn1\der\ia5\der_decode_ia5_string.c"
  2045. >
  2046. </File>
  2047. <File
  2048. RelativePath="src\pk\asn1\der\ia5\der_encode_ia5_string.c"
  2049. >
  2050. </File>
  2051. <File
  2052. RelativePath="src\pk\asn1\der\ia5\der_length_ia5_string.c"
  2053. >
  2054. </File>
  2055. </Filter>
  2056. <Filter
  2057. Name="integer"
  2058. >
  2059. <File
  2060. RelativePath="src\pk\asn1\der\integer\der_decode_integer.c"
  2061. >
  2062. </File>
  2063. <File
  2064. RelativePath="src\pk\asn1\der\integer\der_encode_integer.c"
  2065. >
  2066. </File>
  2067. <File
  2068. RelativePath="src\pk\asn1\der\integer\der_length_integer.c"
  2069. >
  2070. </File>
  2071. </Filter>
  2072. <Filter
  2073. Name="object_identifier"
  2074. >
  2075. <File
  2076. RelativePath="src\pk\asn1\der\object_identifier\der_decode_object_identifier.c"
  2077. >
  2078. </File>
  2079. <File
  2080. RelativePath="src\pk\asn1\der\object_identifier\der_encode_object_identifier.c"
  2081. >
  2082. </File>
  2083. <File
  2084. RelativePath="src\pk\asn1\der\object_identifier\der_length_object_identifier.c"
  2085. >
  2086. </File>
  2087. </Filter>
  2088. <Filter
  2089. Name="octet"
  2090. >
  2091. <File
  2092. RelativePath="src\pk\asn1\der\octet\der_decode_octet_string.c"
  2093. >
  2094. </File>
  2095. <File
  2096. RelativePath="src\pk\asn1\der\octet\der_encode_octet_string.c"
  2097. >
  2098. </File>
  2099. <File
  2100. RelativePath="src\pk\asn1\der\octet\der_length_octet_string.c"
  2101. >
  2102. </File>
  2103. </Filter>
  2104. <Filter
  2105. Name="printable_string"
  2106. >
  2107. <File
  2108. RelativePath="src\pk\asn1\der\printable_string\der_decode_printable_string.c"
  2109. >
  2110. </File>
  2111. <File
  2112. RelativePath="src\pk\asn1\der\printable_string\der_encode_printable_string.c"
  2113. >
  2114. </File>
  2115. <File
  2116. RelativePath="src\pk\asn1\der\printable_string\der_length_printable_string.c"
  2117. >
  2118. </File>
  2119. </Filter>
  2120. <Filter
  2121. Name="sequence"
  2122. >
  2123. <File
  2124. RelativePath="src\pk\asn1\der\sequence\der_decode_sequence_ex.c"
  2125. >
  2126. </File>
  2127. <File
  2128. RelativePath="src\pk\asn1\der\sequence\der_decode_sequence_flexi.c"
  2129. >
  2130. </File>
  2131. <File
  2132. RelativePath="src\pk\asn1\der\sequence\der_decode_sequence_multi.c"
  2133. >
  2134. </File>
  2135. <File
  2136. RelativePath="src\pk\asn1\der\sequence\der_encode_sequence_ex.c"
  2137. >
  2138. </File>
  2139. <File
  2140. RelativePath="src\pk\asn1\der\sequence\der_encode_sequence_multi.c"
  2141. >
  2142. </File>
  2143. <File
  2144. RelativePath="src\pk\asn1\der\sequence\der_flexi_sequence_cmp.c"
  2145. >
  2146. </File>
  2147. <File
  2148. RelativePath="src\pk\asn1\der\sequence\der_length_sequence.c"
  2149. >
  2150. </File>
  2151. <File
  2152. RelativePath="src\pk\asn1\der\sequence\der_sequence_free.c"
  2153. >
  2154. </File>
  2155. <File
  2156. RelativePath="src\pk\asn1\der\sequence\der_sequence_shrink.c"
  2157. >
  2158. </File>
  2159. </Filter>
  2160. <Filter
  2161. Name="set"
  2162. >
  2163. <File
  2164. RelativePath="src\pk\asn1\der\set\der_encode_set.c"
  2165. >
  2166. </File>
  2167. <File
  2168. RelativePath="src\pk\asn1\der\set\der_encode_setof.c"
  2169. >
  2170. </File>
  2171. </Filter>
  2172. <Filter
  2173. Name="short_integer"
  2174. >
  2175. <File
  2176. RelativePath="src\pk\asn1\der\short_integer\der_decode_short_integer.c"
  2177. >
  2178. </File>
  2179. <File
  2180. RelativePath="src\pk\asn1\der\short_integer\der_encode_short_integer.c"
  2181. >
  2182. </File>
  2183. <File
  2184. RelativePath="src\pk\asn1\der\short_integer\der_length_short_integer.c"
  2185. >
  2186. </File>
  2187. </Filter>
  2188. <Filter
  2189. Name="teletex_string"
  2190. >
  2191. <File
  2192. RelativePath="src\pk\asn1\der\teletex_string\der_decode_teletex_string.c"
  2193. >
  2194. </File>
  2195. <File
  2196. RelativePath="src\pk\asn1\der\teletex_string\der_length_teletex_string.c"
  2197. >
  2198. </File>
  2199. </Filter>
  2200. <Filter
  2201. Name="utctime"
  2202. >
  2203. <File
  2204. RelativePath="src\pk\asn1\der\utctime\der_decode_utctime.c"
  2205. >
  2206. </File>
  2207. <File
  2208. RelativePath="src\pk\asn1\der\utctime\der_encode_utctime.c"
  2209. >
  2210. </File>
  2211. <File
  2212. RelativePath="src\pk\asn1\der\utctime\der_length_utctime.c"
  2213. >
  2214. </File>
  2215. </Filter>
  2216. <Filter
  2217. Name="utf8"
  2218. >
  2219. <File
  2220. RelativePath="src\pk\asn1\der\utf8\der_decode_utf8_string.c"
  2221. >
  2222. </File>
  2223. <File
  2224. RelativePath="src\pk\asn1\der\utf8\der_encode_utf8_string.c"
  2225. >
  2226. </File>
  2227. <File
  2228. RelativePath="src\pk\asn1\der\utf8\der_length_utf8_string.c"
  2229. >
  2230. </File>
  2231. </Filter>
  2232. </Filter>
  2233. <Filter
  2234. Name="oid"
  2235. >
  2236. <File
  2237. RelativePath="src\pk\asn1\oid\pk_get.c"
  2238. >
  2239. </File>
  2240. <File
  2241. RelativePath="src\pk\asn1\oid\pk_oid_cmp.c"
  2242. >
  2243. </File>
  2244. <File
  2245. RelativePath="src\pk\asn1\oid\pk_oid_str.c"
  2246. >
  2247. </File>
  2248. </Filter>
  2249. <Filter
  2250. Name="pkcs8"
  2251. >
  2252. <File
  2253. RelativePath="src\pk\asn1\pkcs8\pkcs8_decode_flexi.c"
  2254. >
  2255. </File>
  2256. <File
  2257. RelativePath="src\pk\asn1\pkcs8\pkcs8_get.c"
  2258. >
  2259. </File>
  2260. </Filter>
  2261. <Filter
  2262. Name="x509"
  2263. >
  2264. <File
  2265. RelativePath="src\pk\asn1\x509\x509_decode_public_key_from_certificate.c"
  2266. >
  2267. </File>
  2268. <File
  2269. RelativePath="src\pk\asn1\x509\x509_decode_spki.c"
  2270. >
  2271. </File>
  2272. <File
  2273. RelativePath="src\pk\asn1\x509\x509_decode_subject_public_key_info.c"
  2274. >
  2275. </File>
  2276. <File
  2277. RelativePath="src\pk\asn1\x509\x509_encode_subject_public_key_info.c"
  2278. >
  2279. </File>
  2280. </Filter>
  2281. </Filter>
  2282. <Filter
  2283. Name="dh"
  2284. >
  2285. <File
  2286. RelativePath="src\pk\dh\dh.c"
  2287. >
  2288. </File>
  2289. <File
  2290. RelativePath="src\pk\dh\dh_check_pubkey.c"
  2291. >
  2292. </File>
  2293. <File
  2294. RelativePath="src\pk\dh\dh_export.c"
  2295. >
  2296. </File>
  2297. <File
  2298. RelativePath="src\pk\dh\dh_export_key.c"
  2299. >
  2300. </File>
  2301. <File
  2302. RelativePath="src\pk\dh\dh_free.c"
  2303. >
  2304. </File>
  2305. <File
  2306. RelativePath="src\pk\dh\dh_generate_key.c"
  2307. >
  2308. </File>
  2309. <File
  2310. RelativePath="src\pk\dh\dh_import.c"
  2311. >
  2312. </File>
  2313. <File
  2314. RelativePath="src\pk\dh\dh_import_pkcs8.c"
  2315. >
  2316. </File>
  2317. <File
  2318. RelativePath="src\pk\dh\dh_set.c"
  2319. >
  2320. </File>
  2321. <File
  2322. RelativePath="src\pk\dh\dh_set_pg_dhparam.c"
  2323. >
  2324. </File>
  2325. <File
  2326. RelativePath="src\pk\dh\dh_shared_secret.c"
  2327. >
  2328. </File>
  2329. </Filter>
  2330. <Filter
  2331. Name="dsa"
  2332. >
  2333. <File
  2334. RelativePath="src\pk\dsa\dsa_decrypt_key.c"
  2335. >
  2336. </File>
  2337. <File
  2338. RelativePath="src\pk\dsa\dsa_encrypt_key.c"
  2339. >
  2340. </File>
  2341. <File
  2342. RelativePath="src\pk\dsa\dsa_export.c"
  2343. >
  2344. </File>
  2345. <File
  2346. RelativePath="src\pk\dsa\dsa_free.c"
  2347. >
  2348. </File>
  2349. <File
  2350. RelativePath="src\pk\dsa\dsa_generate_key.c"
  2351. >
  2352. </File>
  2353. <File
  2354. RelativePath="src\pk\dsa\dsa_generate_pqg.c"
  2355. >
  2356. </File>
  2357. <File
  2358. RelativePath="src\pk\dsa\dsa_import.c"
  2359. >
  2360. </File>
  2361. <File
  2362. RelativePath="src\pk\dsa\dsa_import_pkcs8.c"
  2363. >
  2364. </File>
  2365. <File
  2366. RelativePath="src\pk\dsa\dsa_init.c"
  2367. >
  2368. </File>
  2369. <File
  2370. RelativePath="src\pk\dsa\dsa_make_key.c"
  2371. >
  2372. </File>
  2373. <File
  2374. RelativePath="src\pk\dsa\dsa_set.c"
  2375. >
  2376. </File>
  2377. <File
  2378. RelativePath="src\pk\dsa\dsa_set_pqg_dsaparam.c"
  2379. >
  2380. </File>
  2381. <File
  2382. RelativePath="src\pk\dsa\dsa_shared_secret.c"
  2383. >
  2384. </File>
  2385. <File
  2386. RelativePath="src\pk\dsa\dsa_sign_hash.c"
  2387. >
  2388. </File>
  2389. <File
  2390. RelativePath="src\pk\dsa\dsa_verify_hash.c"
  2391. >
  2392. </File>
  2393. <File
  2394. RelativePath="src\pk\dsa\dsa_verify_key.c"
  2395. >
  2396. </File>
  2397. </Filter>
  2398. <Filter
  2399. Name="ec25519"
  2400. >
  2401. <File
  2402. RelativePath="src\pk\ec25519\ec25519_crypto_ctx.c"
  2403. >
  2404. </File>
  2405. <File
  2406. RelativePath="src\pk\ec25519\ec25519_export.c"
  2407. >
  2408. </File>
  2409. <File
  2410. RelativePath="src\pk\ec25519\ec25519_import_pkcs8.c"
  2411. >
  2412. </File>
  2413. <File
  2414. RelativePath="src\pk\ec25519\tweetnacl.c"
  2415. >
  2416. </File>
  2417. </Filter>
  2418. <Filter
  2419. Name="ecc"
  2420. >
  2421. <File
  2422. RelativePath="src\pk\ecc\ecc.c"
  2423. >
  2424. </File>
  2425. <File
  2426. RelativePath="src\pk\ecc\ecc_ansi_x963_export.c"
  2427. >
  2428. </File>
  2429. <File
  2430. RelativePath="src\pk\ecc\ecc_ansi_x963_import.c"
  2431. >
  2432. </File>
  2433. <File
  2434. RelativePath="src\pk\ecc\ecc_decrypt_key.c"
  2435. >
  2436. </File>
  2437. <File
  2438. RelativePath="src\pk\ecc\ecc_encrypt_key.c"
  2439. >
  2440. </File>
  2441. <File
  2442. RelativePath="src\pk\ecc\ecc_export.c"
  2443. >
  2444. </File>
  2445. <File
  2446. RelativePath="src\pk\ecc\ecc_export_openssl.c"
  2447. >
  2448. </File>
  2449. <File
  2450. RelativePath="src\pk\ecc\ecc_find_curve.c"
  2451. >
  2452. </File>
  2453. <File
  2454. RelativePath="src\pk\ecc\ecc_free.c"
  2455. >
  2456. </File>
  2457. <File
  2458. RelativePath="src\pk\ecc\ecc_get_key.c"
  2459. >
  2460. </File>
  2461. <File
  2462. RelativePath="src\pk\ecc\ecc_get_oid_str.c"
  2463. >
  2464. </File>
  2465. <File
  2466. RelativePath="src\pk\ecc\ecc_get_size.c"
  2467. >
  2468. </File>
  2469. <File
  2470. RelativePath="src\pk\ecc\ecc_import.c"
  2471. >
  2472. </File>
  2473. <File
  2474. RelativePath="src\pk\ecc\ecc_import_openssl.c"
  2475. >
  2476. </File>
  2477. <File
  2478. RelativePath="src\pk\ecc\ecc_import_pkcs8.c"
  2479. >
  2480. </File>
  2481. <File
  2482. RelativePath="src\pk\ecc\ecc_import_x509.c"
  2483. >
  2484. </File>
  2485. <File
  2486. RelativePath="src\pk\ecc\ecc_make_key.c"
  2487. >
  2488. </File>
  2489. <File
  2490. RelativePath="src\pk\ecc\ecc_recover_key.c"
  2491. >
  2492. </File>
  2493. <File
  2494. RelativePath="src\pk\ecc\ecc_rfc6979_key.c"
  2495. >
  2496. </File>
  2497. <File
  2498. RelativePath="src\pk\ecc\ecc_set_curve.c"
  2499. >
  2500. </File>
  2501. <File
  2502. RelativePath="src\pk\ecc\ecc_set_curve_internal.c"
  2503. >
  2504. </File>
  2505. <File
  2506. RelativePath="src\pk\ecc\ecc_set_key.c"
  2507. >
  2508. </File>
  2509. <File
  2510. RelativePath="src\pk\ecc\ecc_shared_secret.c"
  2511. >
  2512. </File>
  2513. <File
  2514. RelativePath="src\pk\ecc\ecc_sign_hash.c"
  2515. >
  2516. </File>
  2517. <File
  2518. RelativePath="src\pk\ecc\ecc_sign_hash_eth27.c"
  2519. >
  2520. </File>
  2521. <File
  2522. RelativePath="src\pk\ecc\ecc_sign_hash_internal.c"
  2523. >
  2524. </File>
  2525. <File
  2526. RelativePath="src\pk\ecc\ecc_sign_hash_rfc5656.c"
  2527. >
  2528. </File>
  2529. <File
  2530. RelativePath="src\pk\ecc\ecc_sign_hash_rfc7518.c"
  2531. >
  2532. </File>
  2533. <File
  2534. RelativePath="src\pk\ecc\ecc_sizes.c"
  2535. >
  2536. </File>
  2537. <File
  2538. RelativePath="src\pk\ecc\ecc_ssh_ecdsa_encode_name.c"
  2539. >
  2540. </File>
  2541. <File
  2542. RelativePath="src\pk\ecc\ecc_verify_hash.c"
  2543. >
  2544. </File>
  2545. <File
  2546. RelativePath="src\pk\ecc\ecc_verify_hash_eth27.c"
  2547. >
  2548. </File>
  2549. <File
  2550. RelativePath="src\pk\ecc\ecc_verify_hash_internal.c"
  2551. >
  2552. </File>
  2553. <File
  2554. RelativePath="src\pk\ecc\ecc_verify_hash_rfc5656.c"
  2555. >
  2556. </File>
  2557. <File
  2558. RelativePath="src\pk\ecc\ecc_verify_hash_rfc7518.c"
  2559. >
  2560. </File>
  2561. <File
  2562. RelativePath="src\pk\ecc\ltc_ecc_export_point.c"
  2563. >
  2564. </File>
  2565. <File
  2566. RelativePath="src\pk\ecc\ltc_ecc_import_point.c"
  2567. >
  2568. </File>
  2569. <File
  2570. RelativePath="src\pk\ecc\ltc_ecc_is_point.c"
  2571. >
  2572. </File>
  2573. <File
  2574. RelativePath="src\pk\ecc\ltc_ecc_is_point_at_infinity.c"
  2575. >
  2576. </File>
  2577. <File
  2578. RelativePath="src\pk\ecc\ltc_ecc_map.c"
  2579. >
  2580. </File>
  2581. <File
  2582. RelativePath="src\pk\ecc\ltc_ecc_mul2add.c"
  2583. >
  2584. </File>
  2585. <File
  2586. RelativePath="src\pk\ecc\ltc_ecc_mulmod.c"
  2587. >
  2588. </File>
  2589. <File
  2590. RelativePath="src\pk\ecc\ltc_ecc_mulmod_timing.c"
  2591. >
  2592. </File>
  2593. <File
  2594. RelativePath="src\pk\ecc\ltc_ecc_points.c"
  2595. >
  2596. </File>
  2597. <File
  2598. RelativePath="src\pk\ecc\ltc_ecc_projective_add_point.c"
  2599. >
  2600. </File>
  2601. <File
  2602. RelativePath="src\pk\ecc\ltc_ecc_projective_dbl_point.c"
  2603. >
  2604. </File>
  2605. <File
  2606. RelativePath="src\pk\ecc\ltc_ecc_verify_key.c"
  2607. >
  2608. </File>
  2609. </Filter>
  2610. <Filter
  2611. Name="ed25519"
  2612. >
  2613. <File
  2614. RelativePath="src\pk\ed25519\ed25519_export.c"
  2615. >
  2616. </File>
  2617. <File
  2618. RelativePath="src\pk\ed25519\ed25519_import.c"
  2619. >
  2620. </File>
  2621. <File
  2622. RelativePath="src\pk\ed25519\ed25519_import_pkcs8.c"
  2623. >
  2624. </File>
  2625. <File
  2626. RelativePath="src\pk\ed25519\ed25519_import_raw.c"
  2627. >
  2628. </File>
  2629. <File
  2630. RelativePath="src\pk\ed25519\ed25519_import_x509.c"
  2631. >
  2632. </File>
  2633. <File
  2634. RelativePath="src\pk\ed25519\ed25519_make_key.c"
  2635. >
  2636. </File>
  2637. <File
  2638. RelativePath="src\pk\ed25519\ed25519_sign.c"
  2639. >
  2640. </File>
  2641. <File
  2642. RelativePath="src\pk\ed25519\ed25519_verify.c"
  2643. >
  2644. </File>
  2645. </Filter>
  2646. <Filter
  2647. Name="pkcs1"
  2648. >
  2649. <File
  2650. RelativePath="src\pk\pkcs1\pkcs_1_i2osp.c"
  2651. >
  2652. </File>
  2653. <File
  2654. RelativePath="src\pk\pkcs1\pkcs_1_mgf1.c"
  2655. >
  2656. </File>
  2657. <File
  2658. RelativePath="src\pk\pkcs1\pkcs_1_oaep_decode.c"
  2659. >
  2660. </File>
  2661. <File
  2662. RelativePath="src\pk\pkcs1\pkcs_1_oaep_encode.c"
  2663. >
  2664. </File>
  2665. <File
  2666. RelativePath="src\pk\pkcs1\pkcs_1_os2ip.c"
  2667. >
  2668. </File>
  2669. <File
  2670. RelativePath="src\pk\pkcs1\pkcs_1_pss_decode.c"
  2671. >
  2672. </File>
  2673. <File
  2674. RelativePath="src\pk\pkcs1\pkcs_1_pss_encode.c"
  2675. >
  2676. </File>
  2677. <File
  2678. RelativePath="src\pk\pkcs1\pkcs_1_v1_5_decode.c"
  2679. >
  2680. </File>
  2681. <File
  2682. RelativePath="src\pk\pkcs1\pkcs_1_v1_5_encode.c"
  2683. >
  2684. </File>
  2685. </Filter>
  2686. <Filter
  2687. Name="rsa"
  2688. >
  2689. <File
  2690. RelativePath="src\pk\rsa\rsa_decrypt_key.c"
  2691. >
  2692. </File>
  2693. <File
  2694. RelativePath="src\pk\rsa\rsa_encrypt_key.c"
  2695. >
  2696. </File>
  2697. <File
  2698. RelativePath="src\pk\rsa\rsa_export.c"
  2699. >
  2700. </File>
  2701. <File
  2702. RelativePath="src\pk\rsa\rsa_exptmod.c"
  2703. >
  2704. </File>
  2705. <File
  2706. RelativePath="src\pk\rsa\rsa_get_size.c"
  2707. >
  2708. </File>
  2709. <File
  2710. RelativePath="src\pk\rsa\rsa_import.c"
  2711. >
  2712. </File>
  2713. <File
  2714. RelativePath="src\pk\rsa\rsa_import_pkcs8.c"
  2715. >
  2716. </File>
  2717. <File
  2718. RelativePath="src\pk\rsa\rsa_import_x509.c"
  2719. >
  2720. </File>
  2721. <File
  2722. RelativePath="src\pk\rsa\rsa_key.c"
  2723. >
  2724. </File>
  2725. <File
  2726. RelativePath="src\pk\rsa\rsa_make_key.c"
  2727. >
  2728. </File>
  2729. <File
  2730. RelativePath="src\pk\rsa\rsa_set.c"
  2731. >
  2732. </File>
  2733. <File
  2734. RelativePath="src\pk\rsa\rsa_sign_hash.c"
  2735. >
  2736. </File>
  2737. <File
  2738. RelativePath="src\pk\rsa\rsa_sign_saltlen_get.c"
  2739. >
  2740. </File>
  2741. <File
  2742. RelativePath="src\pk\rsa\rsa_verify_hash.c"
  2743. >
  2744. </File>
  2745. </Filter>
  2746. <Filter
  2747. Name="x25519"
  2748. >
  2749. <File
  2750. RelativePath="src\pk\x25519\x25519_export.c"
  2751. >
  2752. </File>
  2753. <File
  2754. RelativePath="src\pk\x25519\x25519_import.c"
  2755. >
  2756. </File>
  2757. <File
  2758. RelativePath="src\pk\x25519\x25519_import_pkcs8.c"
  2759. >
  2760. </File>
  2761. <File
  2762. RelativePath="src\pk\x25519\x25519_import_raw.c"
  2763. >
  2764. </File>
  2765. <File
  2766. RelativePath="src\pk\x25519\x25519_import_x509.c"
  2767. >
  2768. </File>
  2769. <File
  2770. RelativePath="src\pk\x25519\x25519_make_key.c"
  2771. >
  2772. </File>
  2773. <File
  2774. RelativePath="src\pk\x25519\x25519_shared_secret.c"
  2775. >
  2776. </File>
  2777. </Filter>
  2778. </Filter>
  2779. <Filter
  2780. Name="prngs"
  2781. >
  2782. <File
  2783. RelativePath="src\prngs\chacha20.c"
  2784. >
  2785. </File>
  2786. <File
  2787. RelativePath="src\prngs\fortuna.c"
  2788. >
  2789. </File>
  2790. <File
  2791. RelativePath="src\prngs\rc4.c"
  2792. >
  2793. </File>
  2794. <File
  2795. RelativePath="src\prngs\rng_get_bytes.c"
  2796. >
  2797. </File>
  2798. <File
  2799. RelativePath="src\prngs\rng_make_prng.c"
  2800. >
  2801. </File>
  2802. <File
  2803. RelativePath="src\prngs\sober128.c"
  2804. >
  2805. </File>
  2806. <File
  2807. RelativePath="src\prngs\sprng.c"
  2808. >
  2809. </File>
  2810. <File
  2811. RelativePath="src\prngs\yarrow.c"
  2812. >
  2813. </File>
  2814. </Filter>
  2815. <Filter
  2816. Name="stream"
  2817. >
  2818. <Filter
  2819. Name="chacha"
  2820. >
  2821. <File
  2822. RelativePath="src\stream\chacha\chacha_crypt.c"
  2823. >
  2824. </File>
  2825. <File
  2826. RelativePath="src\stream\chacha\chacha_done.c"
  2827. >
  2828. </File>
  2829. <File
  2830. RelativePath="src\stream\chacha\chacha_ivctr32.c"
  2831. >
  2832. </File>
  2833. <File
  2834. RelativePath="src\stream\chacha\chacha_ivctr64.c"
  2835. >
  2836. </File>
  2837. <File
  2838. RelativePath="src\stream\chacha\chacha_keystream.c"
  2839. >
  2840. </File>
  2841. <File
  2842. RelativePath="src\stream\chacha\chacha_memory.c"
  2843. >
  2844. </File>
  2845. <File
  2846. RelativePath="src\stream\chacha\chacha_setup.c"
  2847. >
  2848. </File>
  2849. <File
  2850. RelativePath="src\stream\chacha\chacha_test.c"
  2851. >
  2852. </File>
  2853. </Filter>
  2854. <Filter
  2855. Name="rabbit"
  2856. >
  2857. <File
  2858. RelativePath="src\stream\rabbit\rabbit.c"
  2859. >
  2860. </File>
  2861. <File
  2862. RelativePath="src\stream\rabbit\rabbit_memory.c"
  2863. >
  2864. </File>
  2865. </Filter>
  2866. <Filter
  2867. Name="rc4"
  2868. >
  2869. <File
  2870. RelativePath="src\stream\rc4\rc4_stream.c"
  2871. >
  2872. </File>
  2873. <File
  2874. RelativePath="src\stream\rc4\rc4_stream_memory.c"
  2875. >
  2876. </File>
  2877. <File
  2878. RelativePath="src\stream\rc4\rc4_test.c"
  2879. >
  2880. </File>
  2881. </Filter>
  2882. <Filter
  2883. Name="salsa20"
  2884. >
  2885. <File
  2886. RelativePath="src\stream\salsa20\salsa20_crypt.c"
  2887. >
  2888. </File>
  2889. <File
  2890. RelativePath="src\stream\salsa20\salsa20_done.c"
  2891. >
  2892. </File>
  2893. <File
  2894. RelativePath="src\stream\salsa20\salsa20_ivctr64.c"
  2895. >
  2896. </File>
  2897. <File
  2898. RelativePath="src\stream\salsa20\salsa20_keystream.c"
  2899. >
  2900. </File>
  2901. <File
  2902. RelativePath="src\stream\salsa20\salsa20_memory.c"
  2903. >
  2904. </File>
  2905. <File
  2906. RelativePath="src\stream\salsa20\salsa20_setup.c"
  2907. >
  2908. </File>
  2909. <File
  2910. RelativePath="src\stream\salsa20\salsa20_test.c"
  2911. >
  2912. </File>
  2913. <File
  2914. RelativePath="src\stream\salsa20\xsalsa20_memory.c"
  2915. >
  2916. </File>
  2917. <File
  2918. RelativePath="src\stream\salsa20\xsalsa20_setup.c"
  2919. >
  2920. </File>
  2921. <File
  2922. RelativePath="src\stream\salsa20\xsalsa20_test.c"
  2923. >
  2924. </File>
  2925. </Filter>
  2926. <Filter
  2927. Name="sober128"
  2928. >
  2929. <File
  2930. RelativePath="src\stream\sober128\sober128_stream.c"
  2931. >
  2932. </File>
  2933. <File
  2934. RelativePath="src\stream\sober128\sober128_stream_memory.c"
  2935. >
  2936. </File>
  2937. <File
  2938. RelativePath="src\stream\sober128\sober128_test.c"
  2939. >
  2940. </File>
  2941. <File
  2942. RelativePath="src\stream\sober128\sober128tab.c"
  2943. >
  2944. <FileConfiguration
  2945. Name="Debug|Win32"
  2946. ExcludedFromBuild="true"
  2947. >
  2948. <Tool
  2949. Name="VCCLCompilerTool"
  2950. AdditionalIncludeDirectories=""
  2951. PreprocessorDefinitions=""
  2952. />
  2953. </FileConfiguration>
  2954. <FileConfiguration
  2955. Name="Release|Win32"
  2956. ExcludedFromBuild="true"
  2957. >
  2958. <Tool
  2959. Name="VCCLCompilerTool"
  2960. AdditionalIncludeDirectories=""
  2961. PreprocessorDefinitions=""
  2962. />
  2963. </FileConfiguration>
  2964. <FileConfiguration
  2965. Name="Debug|x64"
  2966. ExcludedFromBuild="true"
  2967. >
  2968. <Tool
  2969. Name="VCCLCompilerTool"
  2970. AdditionalIncludeDirectories=""
  2971. PreprocessorDefinitions=""
  2972. />
  2973. </FileConfiguration>
  2974. <FileConfiguration
  2975. Name="Release|x64"
  2976. ExcludedFromBuild="true"
  2977. >
  2978. <Tool
  2979. Name="VCCLCompilerTool"
  2980. AdditionalIncludeDirectories=""
  2981. PreprocessorDefinitions=""
  2982. />
  2983. </FileConfiguration>
  2984. </File>
  2985. </Filter>
  2986. <Filter
  2987. Name="sosemanuk"
  2988. >
  2989. <File
  2990. RelativePath="src\stream\sosemanuk\sosemanuk.c"
  2991. >
  2992. </File>
  2993. <File
  2994. RelativePath="src\stream\sosemanuk\sosemanuk_memory.c"
  2995. >
  2996. </File>
  2997. <File
  2998. RelativePath="src\stream\sosemanuk\sosemanuk_test.c"
  2999. >
  3000. </File>
  3001. </Filter>
  3002. </Filter>
  3003. </Files>
  3004. <Globals>
  3005. </Globals>
  3006. </VisualStudioProject>