File: project.pbxproj

package info (click to toggle)
wolfssl 5.8.4-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 117,604 kB
  • sloc: ansic: 1,584,954; asm: 481,206; sh: 11,586; cs: 6,596; xml: 3,878; perl: 3,291; makefile: 2,058; ada: 1,891; javascript: 748; python: 636; cpp: 131; ruby: 118; objc: 80; tcl: 73
file content (2129 lines) | stat: -rw-r--r-- 177,898 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 46;
	objects = {

/* Begin PBXBuildFile section */
		1E8BEB6D212F4AA10063DCC1 /* sp_x86_64.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB6C212F4AA10063DCC1 /* sp_x86_64.c */; };
		1E8BEB71212F4C340063DCC1 /* sp_int.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB6E212F4C340063DCC1 /* sp_int.c */; };
		1E8BEB72212F4C340063DCC1 /* sp_c64.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB6F212F4C340063DCC1 /* sp_c64.c */; };
		1E8BEB79212F4CF90063DCC1 /* curve25519.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB75212F4CF80063DCC1 /* curve25519.c */; };
		1E8BEB7A212F4CF90063DCC1 /* ed25519.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB76212F4CF80063DCC1 /* ed25519.c */; };
		1E8BEB7B212F4CF90063DCC1 /* chacha20_poly1305.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB77212F4CF80063DCC1 /* chacha20_poly1305.c */; };
		1E8BEB7D212F4D960063DCC1 /* signature.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB7C212F4D960063DCC1 /* signature.c */; };
		1E8BEB7F212F4DD00063DCC1 /* wolfmath.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB7E212F4DCF0063DCC1 /* wolfmath.c */; };
		1E8BEB82212F4E330063DCC1 /* ge_operations.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB80212F4E330063DCC1 /* ge_operations.c */; };
		1E8BEB83212F4E330063DCC1 /* ge_low_mem.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB81212F4E330063DCC1 /* ge_low_mem.c */; };
		1E8BEB86212F4F010063DCC1 /* fe_operations.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB84212F4F010063DCC1 /* fe_operations.c */; };
		1E8BEB87212F4F010063DCC1 /* fe_low_mem.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB85212F4F010063DCC1 /* fe_low_mem.c */; };
		1EBED29C2238168A003E4A01 /* wolfio.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 1EBED29B2238168A003E4A01 /* wolfio.h */; };
		1EBED29E223816A2003E4A01 /* wolfmath.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 1EBED29D223816A2003E4A01 /* wolfmath.h */; };
		1EBED2A0223816B3003E4A01 /* mem_track.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 1EBED29F223816B3003E4A01 /* mem_track.h */; };
		30B060541C6DDB2B00D46008 /* crl.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646011A89928E0062516A /* crl.c */; };
		30B060551C6DDB2B00D46008 /* internal.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646021A89928E0062516A /* internal.c */; };
		30B060561C6DDB2B00D46008 /* wolfio.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646031A89928E0062516A /* wolfio.c */; };
		30B060571C6DDB2B00D46008 /* keys.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646041A89928E0062516A /* keys.c */; };
		30B060581C6DDB2B00D46008 /* ocsp.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646051A89928E0062516A /* ocsp.c */; };
		30B060591C6DDB2B00D46008 /* sniffer.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646061A89928E0062516A /* sniffer.c */; };
		30B0605A1C6DDB2B00D46008 /* ssl.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646071A89928E0062516A /* ssl.c */; };
		30B0605B1C6DDB2B00D46008 /* tls.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646081A89928E0062516A /* tls.c */; };
		30B0605C1C6DDB2B00D46008 /* aes.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646111A8992CC0062516A /* aes.c */; };
		30B0605D1C6DDB2B00D46008 /* arc4.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646121A8992CC0062516A /* arc4.c */; };
		30B0605E1C6DDB2B00D46008 /* asn.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646131A8992CC0062516A /* asn.c */; };
		30B0605F1C6DDB2B00D46008 /* blake2b.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646141A8992CC0062516A /* blake2b.c */; };
		30B060601C6DDB2B00D46008 /* camellia.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646151A8992CC0062516A /* camellia.c */; };
		30B060611C6DDB2B00D46008 /* chacha.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646161A8992CC0062516A /* chacha.c */; };
		30B060621C6DDB2B00D46008 /* coding.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646171A8992CC0062516A /* coding.c */; };
		30B060631C6DDB2B00D46008 /* des3.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646181A8992CC0062516A /* des3.c */; };
		30B060641C6DDB2B00D46008 /* dh.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646191A8992CC0062516A /* dh.c */; };
		30B060651C6DDB2B00D46008 /* dsa.c in Sources */ = {isa = PBXBuildFile; fileRef = 5216461A1A8992CC0062516A /* dsa.c */; };
		30B060661C6DDB2B00D46008 /* ecc.c in Sources */ = {isa = PBXBuildFile; fileRef = 5216461B1A8992CC0062516A /* ecc.c */; };
		30B060671C6DDB2B00D46008 /* error.c in Sources */ = {isa = PBXBuildFile; fileRef = 5216461C1A8992CC0062516A /* error.c */; };
		30B060681C6DDB2B00D46008 /* hash.c in Sources */ = {isa = PBXBuildFile; fileRef = 525BE5331B3869110054BBCD /* hash.c */; };
		30B0606A1C6DDB2B00D46008 /* hmac.c in Sources */ = {isa = PBXBuildFile; fileRef = 5216461E1A8992CC0062516A /* hmac.c */; };
		30B0606B1C6DDB2B00D46008 /* integer.c in Sources */ = {isa = PBXBuildFile; fileRef = 5216461F1A8992CC0062516A /* integer.c */; };
		30B0606C1C6DDB2B00D46008 /* logging.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646201A8992CC0062516A /* logging.c */; };
		30B0606D1C6DDB2B00D46008 /* md2.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646211A8992CC0062516A /* md2.c */; };
		30B0606E1C6DDB2B00D46008 /* md4.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646221A8992CC0062516A /* md4.c */; };
		30B0606F1C6DDB2B00D46008 /* md5.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646231A8992CC0062516A /* md5.c */; };
		30B060701C6DDB2B00D46008 /* memory.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646241A8992CC0062516A /* memory.c */; };
		30B060721C6DDB2B00D46008 /* pkcs7.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646261A8992CC0062516A /* pkcs7.c */; };
		30B060731C6DDB2B00D46008 /* poly1305.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646271A8992CC0062516A /* poly1305.c */; };
		30B060741C6DDB2B00D46008 /* pwdbased.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646281A8992CC0062516A /* pwdbased.c */; };
		30B060761C6DDB2B00D46008 /* random.c in Sources */ = {isa = PBXBuildFile; fileRef = 5216462A1A8992CC0062516A /* random.c */; };
		30B060771C6DDB2B00D46008 /* ripemd.c in Sources */ = {isa = PBXBuildFile; fileRef = 5216462B1A8992CC0062516A /* ripemd.c */; };
		30B060781C6DDB2B00D46008 /* rsa.c in Sources */ = {isa = PBXBuildFile; fileRef = 5216462C1A8992CC0062516A /* rsa.c */; };
		30B060791C6DDB2B00D46008 /* sha.c in Sources */ = {isa = PBXBuildFile; fileRef = 5216462D1A8992CC0062516A /* sha.c */; };
		30B0607A1C6DDB2B00D46008 /* sha256.c in Sources */ = {isa = PBXBuildFile; fileRef = 5216462E1A8992CC0062516A /* sha256.c */; };
		30B0607B1C6DDB2B00D46008 /* sha512.c in Sources */ = {isa = PBXBuildFile; fileRef = 5216462F1A8992CC0062516A /* sha512.c */; };
		30B0607C1C6DDB2B00D46008 /* tfm.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646301A8992CC0062516A /* tfm.c */; };
		30B0607D1C6DDB2B00D46008 /* wc_encrypt.c in Sources */ = {isa = PBXBuildFile; fileRef = 522DBE0C1B7926FB0031F454 /* wc_encrypt.c */; };
		30B0607E1C6DDB2B00D46008 /* wc_port.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646311A8992CC0062516A /* wc_port.c */; };
		30B0607F1C6DDB4600D46008 /* callbacks.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646531A8993290062516A /* callbacks.h */; };
		30B060801C6DDB4600D46008 /* certs_test.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646541A8993290062516A /* certs_test.h */; };
		30B060811C6DDB4600D46008 /* crl.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646551A8993290062516A /* crl.h */; };
		30B060821C6DDB4600D46008 /* error-ssl.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646561A8993290062516A /* error-ssl.h */; };
		30B060831C6DDB4600D46008 /* internal.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646571A8993290062516A /* internal.h */; };
		30B060841C6DDB4600D46008 /* ocsp.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646581A8993290062516A /* ocsp.h */; };
		30B060851C6DDB4600D46008 /* ssl.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216465B1A8993290062516A /* ssl.h */; };
		30B060861C6DDB4600D46008 /* test.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216465C1A8993290062516A /* test.h */; };
		30B060871C6DDB4600D46008 /* version.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216465D1A8993290062516A /* version.h */; };
		30B0608B1C6DDB6200D46008 /* aes.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216465E1A8993770062516A /* aes.h */; };
		30B0608C1C6DDB6200D46008 /* arc4.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216465F1A8993770062516A /* arc4.h */; };
		30B0608D1C6DDB6200D46008 /* asn_public.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646601A8993770062516A /* asn_public.h */; };
		30B0608E1C6DDB6200D46008 /* asn.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646611A8993770062516A /* asn.h */; };
		30B0608F1C6DDB6200D46008 /* blake2-impl.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646621A8993770062516A /* blake2-impl.h */; };
		30B060901C6DDB6200D46008 /* blake2-int.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646631A8993770062516A /* blake2-int.h */; };
		30B060911C6DDB6200D46008 /* blake2.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646641A8993770062516A /* blake2.h */; };
		30B060921C6DDB6200D46008 /* camellia.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646651A8993770062516A /* camellia.h */; };
		30B060931C6DDB6200D46008 /* chacha.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646661A8993770062516A /* chacha.h */; };
		30B060941C6DDB6200D46008 /* coding.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646671A8993770062516A /* coding.h */; };
		30B060951C6DDB6200D46008 /* compress.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646681A8993770062516A /* compress.h */; };
		30B060961C6DDB6200D46008 /* des3.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646691A8993770062516A /* des3.h */; };
		30B060971C6DDB6200D46008 /* dh.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216466A1A8993770062516A /* dh.h */; };
		30B060981C6DDB6200D46008 /* dsa.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216466B1A8993770062516A /* dsa.h */; };
		30B060991C6DDB6200D46008 /* ecc.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216466C1A8993770062516A /* ecc.h */; };
		30B0609A1C6DDB6200D46008 /* error-crypt.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216466D1A8993770062516A /* error-crypt.h */; };
		30B0609B1C6DDB6200D46008 /* fips_test.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216466E1A8993770062516A /* fips_test.h */; };
		30B0609C1C6DDB6200D46008 /* hash.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 525BE5351B3869430054BBCD /* hash.h */; };
		30B0609E1C6DDB6200D46008 /* hmac.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646701A8993770062516A /* hmac.h */; };
		30B0609F1C6DDB6200D46008 /* integer.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646721A8993770062516A /* integer.h */; };
		30B060A01C6DDB6200D46008 /* logging.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646731A8993770062516A /* logging.h */; };
		30B060A11C6DDB6200D46008 /* md2.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646741A8993770062516A /* md2.h */; };
		30B060A21C6DDB6200D46008 /* md4.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646751A8993770062516A /* md4.h */; };
		30B060A31C6DDB6200D46008 /* md5.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646761A8993770062516A /* md5.h */; };
		30B060A41C6DDB6200D46008 /* memory.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646771A8993770062516A /* memory.h */; };
		30B060A51C6DDB6200D46008 /* misc.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646781A8993770062516A /* misc.h */; };
		30B060A61C6DDB6200D46008 /* mpi_class.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646791A8993770062516A /* mpi_class.h */; };
		30B060A71C6DDB6200D46008 /* mpi_superclass.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216467A1A8993770062516A /* mpi_superclass.h */; };
		30B060A81C6DDB6200D46008 /* pkcs7.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216467B1A8993770062516A /* pkcs7.h */; };
		30B060A91C6DDB6200D46008 /* poly1305.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216467C1A8993770062516A /* poly1305.h */; };
		30B060AA1C6DDB6200D46008 /* pwdbased.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216467D1A8993770062516A /* pwdbased.h */; };
		30B060AC1C6DDB6200D46008 /* random.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216467F1A8993770062516A /* random.h */; };
		30B060AD1C6DDB6200D46008 /* ripemd.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646801A8993770062516A /* ripemd.h */; };
		30B060AE1C6DDB6200D46008 /* rsa.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646811A8993770062516A /* rsa.h */; };
		30B060AF1C6DDB6200D46008 /* settings.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646821A8993770062516A /* settings.h */; };
		30B060B01C6DDB6200D46008 /* sha.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646831A8993770062516A /* sha.h */; };
		30B060B11C6DDB6200D46008 /* sha256.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646841A8993770062516A /* sha256.h */; };
		30B060B21C6DDB6200D46008 /* sha512.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646851A8993770062516A /* sha512.h */; };
		30B060B31C6DDB6200D46008 /* tfm.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646861A8993770062516A /* tfm.h */; };
		30B060B41C6DDB6200D46008 /* types.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646871A8993770062516A /* types.h */; };
		30B060B51C6DDB6200D46008 /* visibility.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646881A8993770062516A /* visibility.h */; };
		30B060B61C6DDB6200D46008 /* wc_encrypt.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 522DBE0E1B7927290031F454 /* wc_encrypt.h */; };
		30B060B71C6DDB6200D46008 /* wc_port.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646891A8993770062516A /* wc_port.h */; };
		520775A32239ABBE00087711 /* sp_c32.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB70212F4C340063DCC1 /* sp_c32.c */; };
		520775A42239ABBE00087711 /* sp_c32.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB70212F4C340063DCC1 /* sp_c32.c */; };
		520775A52239ABBE00087711 /* sp_c32.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB70212F4C340063DCC1 /* sp_c32.c */; };
		520775A62239ABBE00087711 /* sp_c64.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB6F212F4C340063DCC1 /* sp_c64.c */; };
		520775A72239ABBE00087711 /* sp_c64.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB6F212F4C340063DCC1 /* sp_c64.c */; };
		520775A82239ABBE00087711 /* sp_x86_64.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB6C212F4AA10063DCC1 /* sp_x86_64.c */; };
		520775A92239ABBE00087711 /* sp_x86_64.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB6C212F4AA10063DCC1 /* sp_x86_64.c */; };
		520775AA2239ABBE00087711 /* sp_int.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB6E212F4C340063DCC1 /* sp_int.c */; };
		520775AB2239ABBE00087711 /* sp_int.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB6E212F4C340063DCC1 /* sp_int.c */; };
		520775AC2239ABCD00087711 /* chacha20_poly1305.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB77212F4CF80063DCC1 /* chacha20_poly1305.c */; };
		520775AD2239ABCD00087711 /* chacha20_poly1305.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB77212F4CF80063DCC1 /* chacha20_poly1305.c */; };
		520775AE2239AC2100087711 /* signature.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB7C212F4D960063DCC1 /* signature.c */; };
		520775AF2239AC2100087711 /* signature.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB7C212F4D960063DCC1 /* signature.c */; };
		520775B02239AC2500087711 /* wolfmath.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB7E212F4DCF0063DCC1 /* wolfmath.c */; };
		520775B12239AC2500087711 /* wolfmath.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB7E212F4DCF0063DCC1 /* wolfmath.c */; };
		520775B22239AC3200087711 /* ed25519.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB76212F4CF80063DCC1 /* ed25519.c */; };
		520775B32239AC3200087711 /* ed25519.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB76212F4CF80063DCC1 /* ed25519.c */; };
		520775B42239AC3700087711 /* curve25519.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB75212F4CF80063DCC1 /* curve25519.c */; };
		520775B52239AC3700087711 /* curve25519.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB75212F4CF80063DCC1 /* curve25519.c */; };
		520775B62239AC4600087711 /* ge_low_mem.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB81212F4E330063DCC1 /* ge_low_mem.c */; };
		520775B72239AC4600087711 /* ge_low_mem.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB81212F4E330063DCC1 /* ge_low_mem.c */; };
		520775B82239AC4600087711 /* fe_operations.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB84212F4F010063DCC1 /* fe_operations.c */; };
		520775B92239AC4600087711 /* fe_operations.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB84212F4F010063DCC1 /* fe_operations.c */; };
		520775BA2239AC4600087711 /* ge_operations.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB80212F4E330063DCC1 /* ge_operations.c */; };
		520775BB2239AC4600087711 /* ge_operations.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB80212F4E330063DCC1 /* ge_operations.c */; };
		520775BC2239AC4600087711 /* fe_low_mem.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB85212F4F010063DCC1 /* fe_low_mem.c */; };
		520775BD2239AC4600087711 /* fe_low_mem.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB85212F4F010063DCC1 /* fe_low_mem.c */; };
		520775BE2239ACFF00087711 /* mem_track.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 1EBED29F223816B3003E4A01 /* mem_track.h */; };
		520775BF2239ACFF00087711 /* wolfmath.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 1EBED29D223816A2003E4A01 /* wolfmath.h */; };
		520775C02239B16C00087711 /* wolfio.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 1EBED29B2238168A003E4A01 /* wolfio.h */; };
		520775C12239B1A800087711 /* wolfio.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 1EBED29B2238168A003E4A01 /* wolfio.h */; };
		520775C22239B1C200087711 /* mem_track.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 1EBED29F223816B3003E4A01 /* mem_track.h */; };
		520775C32239B1C200087711 /* wolfmath.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 1EBED29D223816A2003E4A01 /* wolfmath.h */; };
		520775C42239B25800087711 /* sha3.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB6A212F49EC0063DCC1 /* sha3.c */; };
		520775C52239B25900087711 /* sha3.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB6A212F49EC0063DCC1 /* sha3.c */; };
		520775C62239B25A00087711 /* sha3.c in Sources */ = {isa = PBXBuildFile; fileRef = 1E8BEB6A212F49EC0063DCC1 /* sha3.c */; };
		521646091A89928E0062516A /* crl.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646011A89928E0062516A /* crl.c */; };
		5216460A1A89928E0062516A /* internal.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646021A89928E0062516A /* internal.c */; };
		5216460B1A89928E0062516A /* wolfio.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646031A89928E0062516A /* wolfio.c */; };
		5216460C1A89928E0062516A /* keys.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646041A89928E0062516A /* keys.c */; };
		5216460D1A89928E0062516A /* ocsp.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646051A89928E0062516A /* ocsp.c */; };
		5216460E1A89928E0062516A /* sniffer.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646061A89928E0062516A /* sniffer.c */; };
		5216460F1A89928E0062516A /* ssl.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646071A89928E0062516A /* ssl.c */; };
		521646101A89928E0062516A /* tls.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646081A89928E0062516A /* tls.c */; };
		521646321A8992CC0062516A /* aes.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646111A8992CC0062516A /* aes.c */; };
		521646331A8992CC0062516A /* arc4.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646121A8992CC0062516A /* arc4.c */; };
		521646341A8992CC0062516A /* asn.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646131A8992CC0062516A /* asn.c */; };
		521646351A8992CC0062516A /* blake2b.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646141A8992CC0062516A /* blake2b.c */; };
		521646361A8992CC0062516A /* camellia.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646151A8992CC0062516A /* camellia.c */; };
		521646371A8992CC0062516A /* chacha.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646161A8992CC0062516A /* chacha.c */; };
		521646381A8992CC0062516A /* coding.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646171A8992CC0062516A /* coding.c */; };
		521646391A8992CC0062516A /* des3.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646181A8992CC0062516A /* des3.c */; };
		5216463A1A8992CC0062516A /* dh.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646191A8992CC0062516A /* dh.c */; };
		5216463B1A8992CC0062516A /* dsa.c in Sources */ = {isa = PBXBuildFile; fileRef = 5216461A1A8992CC0062516A /* dsa.c */; };
		5216463C1A8992CC0062516A /* ecc.c in Sources */ = {isa = PBXBuildFile; fileRef = 5216461B1A8992CC0062516A /* ecc.c */; };
		5216463D1A8992CC0062516A /* error.c in Sources */ = {isa = PBXBuildFile; fileRef = 5216461C1A8992CC0062516A /* error.c */; };
		5216463F1A8992CC0062516A /* hmac.c in Sources */ = {isa = PBXBuildFile; fileRef = 5216461E1A8992CC0062516A /* hmac.c */; };
		521646401A8992CC0062516A /* integer.c in Sources */ = {isa = PBXBuildFile; fileRef = 5216461F1A8992CC0062516A /* integer.c */; };
		521646411A8992CC0062516A /* logging.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646201A8992CC0062516A /* logging.c */; };
		521646421A8992CC0062516A /* md2.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646211A8992CC0062516A /* md2.c */; };
		521646431A8992CC0062516A /* md4.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646221A8992CC0062516A /* md4.c */; };
		521646441A8992CC0062516A /* md5.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646231A8992CC0062516A /* md5.c */; };
		521646451A8992CC0062516A /* memory.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646241A8992CC0062516A /* memory.c */; };
		521646471A8992CC0062516A /* pkcs7.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646261A8992CC0062516A /* pkcs7.c */; };
		521646481A8992CC0062516A /* poly1305.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646271A8992CC0062516A /* poly1305.c */; };
		521646491A8992CC0062516A /* pwdbased.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646281A8992CC0062516A /* pwdbased.c */; };
		5216464B1A8992CC0062516A /* random.c in Sources */ = {isa = PBXBuildFile; fileRef = 5216462A1A8992CC0062516A /* random.c */; };
		5216464C1A8992CC0062516A /* ripemd.c in Sources */ = {isa = PBXBuildFile; fileRef = 5216462B1A8992CC0062516A /* ripemd.c */; };
		5216464D1A8992CC0062516A /* rsa.c in Sources */ = {isa = PBXBuildFile; fileRef = 5216462C1A8992CC0062516A /* rsa.c */; };
		5216464E1A8992CC0062516A /* sha.c in Sources */ = {isa = PBXBuildFile; fileRef = 5216462D1A8992CC0062516A /* sha.c */; };
		5216464F1A8992CC0062516A /* sha256.c in Sources */ = {isa = PBXBuildFile; fileRef = 5216462E1A8992CC0062516A /* sha256.c */; };
		521646501A8992CC0062516A /* sha512.c in Sources */ = {isa = PBXBuildFile; fileRef = 5216462F1A8992CC0062516A /* sha512.c */; };
		521646511A8992CC0062516A /* tfm.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646301A8992CC0062516A /* tfm.c */; };
		521646521A8992CC0062516A /* wc_port.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646311A8992CC0062516A /* wc_port.c */; };
		521646C41A8A7FE10062516A /* callbacks.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646531A8993290062516A /* callbacks.h */; };
		521646C51A8A7FE10062516A /* certs_test.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646541A8993290062516A /* certs_test.h */; };
		521646C61A8A7FE10062516A /* crl.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646551A8993290062516A /* crl.h */; };
		521646C71A8A7FE10062516A /* error-ssl.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646561A8993290062516A /* error-ssl.h */; };
		521646C81A8A7FE10062516A /* internal.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646571A8993290062516A /* internal.h */; };
		521646C91A8A7FE10062516A /* ocsp.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646581A8993290062516A /* ocsp.h */; };
		521646CA1A8A7FE10062516A /* ssl.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216465B1A8993290062516A /* ssl.h */; };
		521646CB1A8A7FE10062516A /* test.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216465C1A8993290062516A /* test.h */; };
		521646CC1A8A7FE10062516A /* version.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216465D1A8993290062516A /* version.h */; };
		521646CD1A8A7FF30062516A /* aes.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216465E1A8993770062516A /* aes.h */; };
		521646CE1A8A7FF30062516A /* arc4.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216465F1A8993770062516A /* arc4.h */; };
		521646CF1A8A7FF30062516A /* asn_public.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646601A8993770062516A /* asn_public.h */; };
		521646D01A8A7FF30062516A /* asn.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646611A8993770062516A /* asn.h */; };
		521646D11A8A7FF30062516A /* blake2-impl.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646621A8993770062516A /* blake2-impl.h */; };
		521646D21A8A7FF30062516A /* blake2-int.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646631A8993770062516A /* blake2-int.h */; };
		521646D31A8A7FF30062516A /* blake2.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646641A8993770062516A /* blake2.h */; };
		521646D41A8A7FF30062516A /* camellia.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646651A8993770062516A /* camellia.h */; };
		521646D51A8A7FF30062516A /* chacha.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646661A8993770062516A /* chacha.h */; };
		521646D61A8A7FF30062516A /* coding.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646671A8993770062516A /* coding.h */; };
		521646D71A8A7FF30062516A /* compress.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646681A8993770062516A /* compress.h */; };
		521646D81A8A7FF30062516A /* des3.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646691A8993770062516A /* des3.h */; };
		521646D91A8A7FF30062516A /* dh.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216466A1A8993770062516A /* dh.h */; };
		521646DA1A8A7FF30062516A /* dsa.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216466B1A8993770062516A /* dsa.h */; };
		521646DB1A8A7FF30062516A /* ecc.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216466C1A8993770062516A /* ecc.h */; };
		521646DC1A8A7FF30062516A /* error-crypt.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216466D1A8993770062516A /* error-crypt.h */; };
		521646DD1A8A7FF30062516A /* fips_test.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216466E1A8993770062516A /* fips_test.h */; };
		521646DF1A8A7FF30062516A /* hmac.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646701A8993770062516A /* hmac.h */; };
		521646E01A8A7FF30062516A /* integer.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646721A8993770062516A /* integer.h */; };
		521646E11A8A7FF30062516A /* logging.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646731A8993770062516A /* logging.h */; };
		521646E21A8A7FF30062516A /* md2.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646741A8993770062516A /* md2.h */; };
		521646E31A8A7FF30062516A /* md4.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646751A8993770062516A /* md4.h */; };
		521646E41A8A7FF30062516A /* md5.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646761A8993770062516A /* md5.h */; };
		521646E51A8A7FF30062516A /* memory.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646771A8993770062516A /* memory.h */; };
		521646E61A8A7FF30062516A /* misc.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646781A8993770062516A /* misc.h */; };
		521646E71A8A7FF30062516A /* mpi_class.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646791A8993770062516A /* mpi_class.h */; };
		521646E81A8A7FF30062516A /* mpi_superclass.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216467A1A8993770062516A /* mpi_superclass.h */; };
		521646E91A8A7FF30062516A /* pkcs7.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216467B1A8993770062516A /* pkcs7.h */; };
		521646EA1A8A7FF30062516A /* poly1305.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216467C1A8993770062516A /* poly1305.h */; };
		521646EB1A8A7FF30062516A /* pwdbased.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216467D1A8993770062516A /* pwdbased.h */; };
		521646ED1A8A7FF30062516A /* random.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216467F1A8993770062516A /* random.h */; };
		521646EE1A8A7FF30062516A /* ripemd.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646801A8993770062516A /* ripemd.h */; };
		521646EF1A8A7FF30062516A /* rsa.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646811A8993770062516A /* rsa.h */; };
		521646F01A8A7FF30062516A /* settings.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646821A8993770062516A /* settings.h */; };
		521646F11A8A7FF30062516A /* sha.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646831A8993770062516A /* sha.h */; };
		521646F21A8A7FF30062516A /* sha256.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646841A8993770062516A /* sha256.h */; };
		521646F31A8A7FF30062516A /* sha512.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646851A8993770062516A /* sha512.h */; };
		521646F41A8A7FF30062516A /* tfm.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646861A8993770062516A /* tfm.h */; };
		521646F51A8A7FF30062516A /* types.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646871A8993770062516A /* types.h */; };
		521646F61A8A7FF30062516A /* visibility.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646881A8993770062516A /* visibility.h */; };
		521646F71A8A7FF30062516A /* wc_port.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646891A8993770062516A /* wc_port.h */; };
		522DBE0D1B7926FB0031F454 /* wc_encrypt.c in Sources */ = {isa = PBXBuildFile; fileRef = 522DBE0C1B7926FB0031F454 /* wc_encrypt.c */; };
		522DBE0F1B7927A50031F454 /* wc_encrypt.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 522DBE0E1B7927290031F454 /* wc_encrypt.h */; };
		525BE5341B3869110054BBCD /* hash.c in Sources */ = {isa = PBXBuildFile; fileRef = 525BE5331B3869110054BBCD /* hash.c */; };
		525BE5361B3869780054BBCD /* hash.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 525BE5351B3869430054BBCD /* hash.h */; };
		6AC85129272CAF2E00F2B32A /* kdf.c in Sources */ = {isa = PBXBuildFile; fileRef = 6AC85128272CAF2E00F2B32A /* kdf.c */; };
		6AC8512A272CAF2E00F2B32A /* kdf.c in Sources */ = {isa = PBXBuildFile; fileRef = 6AC85128272CAF2E00F2B32A /* kdf.c */; };
		6AC8512B272CAF2E00F2B32A /* kdf.c in Sources */ = {isa = PBXBuildFile; fileRef = 6AC85128272CAF2E00F2B32A /* kdf.c */; };
		700F0C052A2FBC5100755BA7 /* async.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C032A2FBC1600755BA7 /* async.h */; };
		700F0C062A2FBC5100755BA7 /* chacha20_poly1305.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0BED2A2FBC1500755BA7 /* chacha20_poly1305.h */; };
		700F0C072A2FBC5100755BA7 /* cmac.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0BFC2A2FBC1600755BA7 /* cmac.h */; };
		700F0C082A2FBC5100755BA7 /* cpuid.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0BF12A2FBC1600755BA7 /* cpuid.h */; };
		700F0C092A2FBC5100755BA7 /* cryptocb.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0BEE2A2FBC1500755BA7 /* cryptocb.h */; };
		700F0C0A2A2FBC5100755BA7 /* curve448.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0BE32A2FBC1500755BA7 /* curve448.h */; };
		700F0C0B2A2FBC5100755BA7 /* curve25519.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0BE52A2FBC1500755BA7 /* curve25519.h */; };
		700F0C0C2A2FBC5100755BA7 /* dilithium.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0BEF2A2FBC1500755BA7 /* dilithium.h */; };
		700F0C0D2A2FBC5100755BA7 /* eccsi.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0BF72A2FBC1600755BA7 /* eccsi.h */; };
		700F0C0E2A2FBC5100755BA7 /* ed448.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0BF82A2FBC1600755BA7 /* ed448.h */; };
		700F0C0F2A2FBC5100755BA7 /* ed25519.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0BF42A2FBC1600755BA7 /* ed25519.h */; };
		700F0C102A2FBC5100755BA7 /* ext_mlkem.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0BF92A2FBC1600755BA7 /* ext_mlkem.h */; };
		700F0C112A2FBC5100755BA7 /* falcon.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C022A2FBC1600755BA7 /* falcon.h */; };
		700F0C122A2FBC5100755BA7 /* fe_448.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0BEB2A2FBC1500755BA7 /* fe_448.h */; };
		700F0C132A2FBC5100755BA7 /* fe_operations.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0BF62A2FBC1600755BA7 /* fe_operations.h */; };
		700F0C142A2FBC5100755BA7 /* fips.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C002A2FBC1600755BA7 /* fips.h */; };
		700F0C152A2FBC5100755BA7 /* ge_448.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0BE72A2FBC1500755BA7 /* ge_448.h */; };
		700F0C162A2FBC5100755BA7 /* ge_operations.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C012A2FBC1600755BA7 /* ge_operations.h */; };
		700F0C172A2FBC5100755BA7 /* hpke.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0BE12A2FBC1500755BA7 /* hpke.h */; };
		700F0C182A2FBC5100755BA7 /* mlkem.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0BEA2A2FBC1500755BA7 /* mlkem.h */; };
		700F0C192A2FBC5100755BA7 /* pkcs11.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0BFD2A2FBC1600755BA7 /* pkcs11.h */; };
		700F0C1A2A2FBC5100755BA7 /* pkcs12.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0BEC2A2FBC1500755BA7 /* pkcs12.h */; };
		700F0C1B2A2FBC5100755BA7 /* rc2.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0BE02A2FBC1500755BA7 /* rc2.h */; };
		700F0C1C2A2FBC5100755BA7 /* sakke.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0BF02A2FBC1500755BA7 /* sakke.h */; };
		700F0C1D2A2FBC5100755BA7 /* selftest.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0BF22A2FBC1600755BA7 /* selftest.h */; };
		700F0C1E2A2FBC5100755BA7 /* sha3.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0BFA2A2FBC1600755BA7 /* sha3.h */; };
		700F0C1F2A2FBC5100755BA7 /* signature.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0BFB2A2FBC1600755BA7 /* signature.h */; };
		700F0C202A2FBC5100755BA7 /* siphash.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0BFE2A2FBC1600755BA7 /* siphash.h */; };
		700F0C212A2FBC5100755BA7 /* sp_int.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0BE82A2FBC1500755BA7 /* sp_int.h */; };
		700F0C222A2FBC5100755BA7 /* sp.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0BE92A2FBC1500755BA7 /* sp.h */; };
		700F0C232A2FBC5100755BA7 /* sphincs.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0BE22A2FBC1500755BA7 /* sphincs.h */; };
		700F0C242A2FBC5100755BA7 /* srp.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0BF32A2FBC1600755BA7 /* srp.h */; };
		700F0C252A2FBC5100755BA7 /* wc_mlkem.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0BFF2A2FBC1600755BA7 /* wc_mlkem.h */; };
		700F0C262A2FBC5100755BA7 /* wc_pkcs11.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0BF52A2FBC1600755BA7 /* wc_pkcs11.h */; };
		700F0C272A2FBC5100755BA7 /* wolfevent.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0BE62A2FBC1500755BA7 /* wolfevent.h */; };
		700F0C282A2FBC5100755BA7 /* kdf.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 6AC8513B272CB04F00F2B32A /* kdf.h */; };
		700F0C2C2A2FBD1700755BA7 /* quic.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C292A2FBCAD00755BA7 /* quic.h */; };
		700F0C2D2A2FBD1700755BA7 /* sniffer.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C2B2A2FBCF800755BA7 /* sniffer.h */; };
		700F0C2E2A2FBD1700755BA7 /* sniffer_error.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C2A2A2FBCAD00755BA7 /* sniffer_error.h */; };
		700F0C8C2A2FBEF100755BA7 /* aes.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C7C2A2FBE8200755BA7 /* aes.h */; };
		700F0C8D2A2FBEF100755BA7 /* asn1.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C512A2FBE8000755BA7 /* asn1.h */; };
		700F0C8E2A2FBEF100755BA7 /* asn1t.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C722A2FBE8100755BA7 /* asn1t.h */; };
		700F0C8F2A2FBEF100755BA7 /* bio.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C582A2FBE8100755BA7 /* bio.h */; };
		700F0C902A2FBEF100755BA7 /* bn.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C692A2FBE8100755BA7 /* bn.h */; };
		700F0C912A2FBEF100755BA7 /* buffer.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C852A2FBE8200755BA7 /* buffer.h */; };
		700F0C922A2FBEF100755BA7 /* camellia.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C5B2A2FBE8100755BA7 /* camellia.h */; };
		700F0C932A2FBEF100755BA7 /* cmac.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C632A2FBE8100755BA7 /* cmac.h */; };
		700F0C942A2FBEF100755BA7 /* cms.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C5E2A2FBE8100755BA7 /* cms.h */; };
		700F0C952A2FBEF100755BA7 /* compat_types.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C532A2FBE8100755BA7 /* compat_types.h */; };
		700F0C962A2FBEF100755BA7 /* conf.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C662A2FBE8100755BA7 /* conf.h */; };
		700F0C972A2FBEF100755BA7 /* crypto.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C862A2FBE8200755BA7 /* crypto.h */; };
		700F0C982A2FBEF100755BA7 /* des.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C612A2FBE8100755BA7 /* des.h */; };
		700F0C992A2FBEF100755BA7 /* dh.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C522A2FBE8100755BA7 /* dh.h */; };
		700F0C9A2A2FBEF100755BA7 /* dsa.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C882A2FBE8200755BA7 /* dsa.h */; };
		700F0C9B2A2FBEF100755BA7 /* ec.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C6F2A2FBE8100755BA7 /* ec.h */; };
		700F0C9C2A2FBEF100755BA7 /* ec448.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C672A2FBE8100755BA7 /* ec448.h */; };
		700F0C9D2A2FBEF100755BA7 /* ec25519.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C602A2FBE8100755BA7 /* ec25519.h */; };
		700F0C9E2A2FBEF100755BA7 /* ecdh.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C542A2FBE8100755BA7 /* ecdh.h */; };
		700F0C9F2A2FBEF100755BA7 /* ecdsa.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C812A2FBE8200755BA7 /* ecdsa.h */; };
		700F0CA02A2FBEF100755BA7 /* ed448.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C642A2FBE8100755BA7 /* ed448.h */; };
		700F0CA12A2FBEF100755BA7 /* ed25519.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C7E2A2FBE8200755BA7 /* ed25519.h */; };
		700F0CA22A2FBEF100755BA7 /* engine.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C5D2A2FBE8100755BA7 /* engine.h */; };
		700F0CA32A2FBEF100755BA7 /* err.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C6A2A2FBE8100755BA7 /* err.h */; };
		700F0CA42A2FBEF100755BA7 /* evp.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C5F2A2FBE8100755BA7 /* evp.h */; };
		700F0CA52A2FBEF100755BA7 /* fips_rand.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C7F2A2FBE8200755BA7 /* fips_rand.h */; };
		700F0CA62A2FBEF100755BA7 /* hmac.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C832A2FBE8200755BA7 /* hmac.h */; };
		700F0CA82A2FBEF100755BA7 /* kdf.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C6E2A2FBE8100755BA7 /* kdf.h */; };
		700F0CA92A2FBEF100755BA7 /* lhash.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C652A2FBE8100755BA7 /* lhash.h */; };
		700F0CAA2A2FBEF100755BA7 /* md4.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C6D2A2FBE8100755BA7 /* md4.h */; };
		700F0CAB2A2FBEF100755BA7 /* md5.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C702A2FBE8100755BA7 /* md5.h */; };
		700F0CAC2A2FBEF100755BA7 /* modes.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C772A2FBE8200755BA7 /* modes.h */; };
		700F0CAD2A2FBEF100755BA7 /* obj_mac.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C802A2FBE8200755BA7 /* obj_mac.h */; };
		700F0CAE2A2FBEF100755BA7 /* objects.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C572A2FBE8100755BA7 /* objects.h */; };
		700F0CAF2A2FBEF100755BA7 /* ocsp.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C842A2FBE8200755BA7 /* ocsp.h */; };
		700F0CB02A2FBEF100755BA7 /* opensslconf.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C732A2FBE8100755BA7 /* opensslconf.h */; };
		700F0CB12A2FBEF100755BA7 /* opensslv.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C7D2A2FBE8200755BA7 /* opensslv.h */; };
		700F0CB22A2FBEF100755BA7 /* ossl_typ.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C792A2FBE8200755BA7 /* ossl_typ.h */; };
		700F0CB32A2FBEF100755BA7 /* pem.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C6C2A2FBE8100755BA7 /* pem.h */; };
		700F0CB42A2FBEF100755BA7 /* pkcs7.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C742A2FBE8100755BA7 /* pkcs7.h */; };
		700F0CB52A2FBEF100755BA7 /* pkcs12.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C782A2FBE8200755BA7 /* pkcs12.h */; };
		700F0CB62A2FBEF100755BA7 /* rand.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C7B2A2FBE8200755BA7 /* rand.h */; };
		700F0CB72A2FBEF100755BA7 /* rc4.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C562A2FBE8100755BA7 /* rc4.h */; };
		700F0CB82A2FBEF100755BA7 /* ripemd.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C6B2A2FBE8100755BA7 /* ripemd.h */; };
		700F0CB92A2FBEF100755BA7 /* rsa.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C8A2A2FBE8200755BA7 /* rsa.h */; };
		700F0CBA2A2FBEF100755BA7 /* sha.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C5C2A2FBE8100755BA7 /* sha.h */; };
		700F0CBB2A2FBEF100755BA7 /* sha3.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C712A2FBE8100755BA7 /* sha3.h */; };
		700F0CBC2A2FBEF100755BA7 /* srp.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C752A2FBE8100755BA7 /* srp.h */; };
		700F0CBD2A2FBEF100755BA7 /* ssl.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C892A2FBE8200755BA7 /* ssl.h */; };
		700F0CBE2A2FBEF100755BA7 /* ssl23.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C762A2FBE8100755BA7 /* ssl23.h */; };
		700F0CBF2A2FBEF100755BA7 /* stack.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C5A2A2FBE8100755BA7 /* stack.h */; };
		700F0CC02A2FBEF100755BA7 /* tls1.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C822A2FBE8200755BA7 /* tls1.h */; };
		700F0CC12A2FBEF100755BA7 /* txt_db.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C872A2FBE8200755BA7 /* txt_db.h */; };
		700F0CC22A2FBEF100755BA7 /* ui.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C552A2FBE8100755BA7 /* ui.h */; };
		700F0CC32A2FBEF100755BA7 /* x509_vfy.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C7A2A2FBE8200755BA7 /* x509_vfy.h */; };
		700F0CC42A2FBEF100755BA7 /* x509.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C682A2FBE8100755BA7 /* x509.h */; };
		700F0CC52A2FBEF100755BA7 /* x509v3.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 700F0C622A2FBE8100755BA7 /* x509v3.h */; };
		9D0105A7291CEA5000A854D3 /* armv8-sha512-asm.S in Sources */ = {isa = PBXBuildFile; fileRef = 9D01058F291CEA4F00A854D3 /* armv8-sha512-asm.S */; };
		9D0105A8291CEA5000A854D3 /* armv8-sha512-asm.S in Sources */ = {isa = PBXBuildFile; fileRef = 9D01058F291CEA4F00A854D3 /* armv8-sha512-asm.S */; };
		9D0105A9291CEA5000A854D3 /* armv8-sha512-asm.S in Sources */ = {isa = PBXBuildFile; fileRef = 9D01058F291CEA4F00A854D3 /* armv8-sha512-asm.S */; };
		9D0105AD291CEA5000A854D3 /* armv8-sha256-asm.S in Sources */ = {isa = PBXBuildFile; fileRef = 9D010591291CEA4F00A854D3 /* armv8-sha256.c */; };
		9D0105AE291CEA5000A854D3 /* armv8-sha256-asm.S in Sources */ = {isa = PBXBuildFile; fileRef = 9D010591291CEA4F00A854D3 /* armv8-sha256.c */; };
		9D0105AF291CEA5000A854D3 /* armv8-sha256-asm.S in Sources */ = {isa = PBXBuildFile; fileRef = 9D010591291CEA4F00A854D3 /* armv8-sha256.c */; };
		9D0105B3291CEA5000A854D3 /* armv8-poly1305-asm.S in Sources */ = {isa = PBXBuildFile; fileRef = 9D010593291CEA4F00A854D3 /* armv8-poly1305.c */; };
		9D0105B4291CEA5000A854D3 /* armv8-poly1305-asm.S in Sources */ = {isa = PBXBuildFile; fileRef = 9D010593291CEA4F00A854D3 /* armv8-poly1305.c */; };
		9D0105B5291CEA5000A854D3 /* armv8-poly1305-asm.S in Sources */ = {isa = PBXBuildFile; fileRef = 9D010593291CEA4F00A854D3 /* armv8-poly1305.c */; };
		9D0105B9291CEA5000A854D3 /* armv8-sha3-asm.S in Sources */ = {isa = PBXBuildFile; fileRef = 9D010595291CEA4F00A854D3 /* armv8-sha3-asm.S */; };
		9D0105BA291CEA5000A854D3 /* armv8-sha3-asm.S in Sources */ = {isa = PBXBuildFile; fileRef = 9D010595291CEA4F00A854D3 /* armv8-sha3-asm.S */; };
		9D0105BB291CEA5000A854D3 /* armv8-sha3-asm.S in Sources */ = {isa = PBXBuildFile; fileRef = 9D010595291CEA4F00A854D3 /* armv8-sha3-asm.S */; };
		9D0105BC291CEA5000A854D3 /* armv8-chacha-asm.S in Sources */ = {isa = PBXBuildFile; fileRef = 9D010596291CEA4F00A854D3 /* armv8-chacha.c */; };
		9D0105BD291CEA5000A854D3 /* armv8-chacha-asm.S in Sources */ = {isa = PBXBuildFile; fileRef = 9D010596291CEA4F00A854D3 /* armv8-chacha.c */; };
		9D0105BE291CEA5000A854D3 /* armv8-chacha-asm.S in Sources */ = {isa = PBXBuildFile; fileRef = 9D010596291CEA4F00A854D3 /* armv8-chacha.c */; };
		9D0105C2291CEA5000A854D3 /* armv8-aes-asm.S in Sources */ = {isa = PBXBuildFile; fileRef = 9D010598291CEA4F00A854D3 /* armv8-aes-asm.S */; };
		9D0105C3291CEA5000A854D3 /* armv8-aes-asm.S in Sources */ = {isa = PBXBuildFile; fileRef = 9D010598291CEA4F00A854D3 /* armv8-aes-asm.S */; };
		9D0105C4291CEA5000A854D3 /* armv8-aes-asm.S in Sources */ = {isa = PBXBuildFile; fileRef = 9D010598291CEA4F00A854D3 /* armv8-aes-asm.S */; };
		9D0105C5291CEA5000A854D3 /* armv8-curve25519.S in Sources */ = {isa = PBXBuildFile; fileRef = 9D010599291CEA4F00A854D3 /* armv8-curve25519.S */; };
		9D0105C6291CEA5000A854D3 /* armv8-curve25519.S in Sources */ = {isa = PBXBuildFile; fileRef = 9D010599291CEA4F00A854D3 /* armv8-curve25519.S */; };
		9D0105C7291CEA5000A854D3 /* armv8-curve25519.S in Sources */ = {isa = PBXBuildFile; fileRef = 9D010599291CEA4F00A854D3 /* armv8-curve25519.S */; };
		9D2E31CC291CDF120082B941 /* quic.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D2E31CA291CDF120082B941 /* quic.c */; };
		9D2E31CD291CDF120082B941 /* quic.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D2E31CA291CDF120082B941 /* quic.c */; };
		9D2E31CE291CDF120082B941 /* quic.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D2E31CA291CDF120082B941 /* quic.c */; };
		9D2E31CF291CDF120082B941 /* dtls.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D2E31CB291CDF120082B941 /* dtls.c */; };
		9D2E31D0291CDF120082B941 /* dtls.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D2E31CB291CDF120082B941 /* dtls.c */; };
		9D2E31D1291CDF120082B941 /* dtls.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D2E31CB291CDF120082B941 /* dtls.c */; };
		9D2E31D3291CDF2E0082B941 /* dtls13.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D2E31D2291CDF2E0082B941 /* dtls13.c */; };
		9D2E31D4291CDF2E0082B941 /* dtls13.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D2E31D2291CDF2E0082B941 /* dtls13.c */; };
		9D2E31D5291CDF2E0082B941 /* dtls13.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D2E31D2291CDF2E0082B941 /* dtls13.c */; };
		A4DAE3062493F1C700CEF51F /* tls13.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE3052493F1C700CEF51F /* tls13.c */; };
		A4DAE3072493F1C700CEF51F /* tls13.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE3052493F1C700CEF51F /* tls13.c */; };
		A4DAE3082493F1C700CEF51F /* tls13.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE3052493F1C700CEF51F /* tls13.c */; };
		A4DAE31A2493F21900CEF51F /* srp.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE3092493F21700CEF51F /* srp.c */; };
		A4DAE31B2493F21900CEF51F /* srp.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE3092493F21700CEF51F /* srp.c */; };
		A4DAE31C2493F21900CEF51F /* srp.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE3092493F21700CEF51F /* srp.c */; };
		A4DAE31D2493F21900CEF51F /* ed448.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE30A2493F21800CEF51F /* ed448.c */; };
		A4DAE31E2493F21900CEF51F /* ed448.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE30A2493F21800CEF51F /* ed448.c */; };
		A4DAE31F2493F21900CEF51F /* ed448.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE30A2493F21800CEF51F /* ed448.c */; };
		A4DAE3202493F21900CEF51F /* cpuid.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE30B2493F21800CEF51F /* cpuid.c */; };
		A4DAE3212493F21900CEF51F /* cpuid.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE30B2493F21800CEF51F /* cpuid.c */; };
		A4DAE3222493F21900CEF51F /* cpuid.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE30B2493F21800CEF51F /* cpuid.c */; };
		A4DAE3232493F21900CEF51F /* asm.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE30C2493F21800CEF51F /* asm.c */; };
		A4DAE3242493F21900CEF51F /* asm.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE30C2493F21800CEF51F /* asm.c */; };
		A4DAE3252493F21900CEF51F /* asm.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE30C2493F21800CEF51F /* asm.c */; };
		A4DAE3262493F21900CEF51F /* fe_448.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE30D2493F21800CEF51F /* fe_448.c */; };
		A4DAE3272493F21900CEF51F /* fe_448.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE30D2493F21800CEF51F /* fe_448.c */; };
		A4DAE3282493F21900CEF51F /* fe_448.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE30D2493F21800CEF51F /* fe_448.c */; };
		A4DAE3292493F21900CEF51F /* compress.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE30E2493F21800CEF51F /* compress.c */; };
		A4DAE32A2493F21900CEF51F /* compress.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE30E2493F21800CEF51F /* compress.c */; };
		A4DAE32B2493F21900CEF51F /* compress.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE30E2493F21800CEF51F /* compress.c */; };
		A4DAE32C2493F21900CEF51F /* cmac.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE30F2493F21800CEF51F /* cmac.c */; };
		A4DAE32D2493F21900CEF51F /* cmac.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE30F2493F21800CEF51F /* cmac.c */; };
		A4DAE32E2493F21900CEF51F /* cmac.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE30F2493F21800CEF51F /* cmac.c */; };
		A4DAE32F2493F21900CEF51F /* ecc_fp.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE3102493F21800CEF51F /* ecc_fp.c */; };
		A4DAE3302493F21900CEF51F /* ecc_fp.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE3102493F21800CEF51F /* ecc_fp.c */; };
		A4DAE3312493F21900CEF51F /* ecc_fp.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE3102493F21800CEF51F /* ecc_fp.c */; };
		A4DAE3322493F21900CEF51F /* cryptocb.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE3112493F21800CEF51F /* cryptocb.c */; };
		A4DAE3332493F21900CEF51F /* cryptocb.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE3112493F21800CEF51F /* cryptocb.c */; };
		A4DAE3342493F21900CEF51F /* cryptocb.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE3112493F21800CEF51F /* cryptocb.c */; };
		A4DAE3352493F21900CEF51F /* wolfevent.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE3122493F21800CEF51F /* wolfevent.c */; };
		A4DAE3362493F21900CEF51F /* wolfevent.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE3122493F21800CEF51F /* wolfevent.c */; };
		A4DAE3372493F21900CEF51F /* wolfevent.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE3122493F21800CEF51F /* wolfevent.c */; };
		A4DAE3382493F21900CEF51F /* pkcs12.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE3132493F21800CEF51F /* pkcs12.c */; };
		A4DAE3392493F21900CEF51F /* pkcs12.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE3132493F21800CEF51F /* pkcs12.c */; };
		A4DAE33A2493F21900CEF51F /* pkcs12.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE3132493F21800CEF51F /* pkcs12.c */; };
		A4DAE33B2493F21900CEF51F /* curve448.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE3142493F21800CEF51F /* curve448.c */; };
		A4DAE33C2493F21900CEF51F /* curve448.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE3142493F21800CEF51F /* curve448.c */; };
		A4DAE33D2493F21900CEF51F /* curve448.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE3142493F21800CEF51F /* curve448.c */; };
		A4DAE33E2493F21900CEF51F /* ge_448.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE3152493F21800CEF51F /* ge_448.c */; };
		A4DAE33F2493F21900CEF51F /* ge_448.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE3152493F21800CEF51F /* ge_448.c */; };
		A4DAE3402493F21900CEF51F /* ge_448.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE3152493F21800CEF51F /* ge_448.c */; };
		A4DAE3412493F21900CEF51F /* wc_dsp.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE3162493F21900CEF51F /* wc_dsp.c */; };
		A4DAE3422493F21900CEF51F /* wc_dsp.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE3162493F21900CEF51F /* wc_dsp.c */; };
		A4DAE3432493F21900CEF51F /* wc_dsp.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE3162493F21900CEF51F /* wc_dsp.c */; };
		A4DAE3442493F21900CEF51F /* wc_pkcs11.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE3172493F21900CEF51F /* wc_pkcs11.c */; };
		A4DAE3452493F21900CEF51F /* wc_pkcs11.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE3172493F21900CEF51F /* wc_pkcs11.c */; };
		A4DAE3462493F21900CEF51F /* wc_pkcs11.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE3172493F21900CEF51F /* wc_pkcs11.c */; };
		A4DAE3472493F21900CEF51F /* blake2s.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE3182493F21900CEF51F /* blake2s.c */; };
		A4DAE3482493F21900CEF51F /* blake2s.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE3182493F21900CEF51F /* blake2s.c */; };
		A4DAE3492493F21900CEF51F /* blake2s.c in Sources */ = {isa = PBXBuildFile; fileRef = A4DAE3182493F21900CEF51F /* blake2s.c */; };
		A4DAE34D2493F28B00CEF51F /* sp_arm32.c in Sources */ = {isa = PBXBuildFile; fileRef = A4E7E5912493E20500725359 /* sp_arm32.c */; };
		A4DAE34E2493F28C00CEF51F /* sp_arm32.c in Sources */ = {isa = PBXBuildFile; fileRef = A4E7E5912493E20500725359 /* sp_arm32.c */; };
		A4DAE3502493F29100CEF51F /* sp_arm64.c in Sources */ = {isa = PBXBuildFile; fileRef = A4E7E5902493E20500725359 /* sp_arm64.c */; };
		A4DAE3512493F29100CEF51F /* sp_arm64.c in Sources */ = {isa = PBXBuildFile; fileRef = A4E7E5902493E20500725359 /* sp_arm64.c */; };
		A4DAE3522493F29500CEF51F /* sp_armthumb.c in Sources */ = {isa = PBXBuildFile; fileRef = A4E7E5942493E20500725359 /* sp_armthumb.c */; };
		A4DAE3532493F29500CEF51F /* sp_armthumb.c in Sources */ = {isa = PBXBuildFile; fileRef = A4E7E5942493E20500725359 /* sp_armthumb.c */; };
		A4DAE3542493F29B00CEF51F /* sp_cortexm.c in Sources */ = {isa = PBXBuildFile; fileRef = A4E7E5932493E20500725359 /* sp_cortexm.c */; };
		A4DAE3552493F29B00CEF51F /* sp_cortexm.c in Sources */ = {isa = PBXBuildFile; fileRef = A4E7E5932493E20500725359 /* sp_cortexm.c */; };
		A4DAE3562493F29E00CEF51F /* sp_dsp32.c in Sources */ = {isa = PBXBuildFile; fileRef = A4E7E5922493E20500725359 /* sp_dsp32.c */; };
		A4DAE3572493F29E00CEF51F /* sp_dsp32.c in Sources */ = {isa = PBXBuildFile; fileRef = A4E7E5922493E20500725359 /* sp_dsp32.c */; };
		A4E7E5952493E20500725359 /* sp_arm64.c in Sources */ = {isa = PBXBuildFile; fileRef = A4E7E5902493E20500725359 /* sp_arm64.c */; };
		A4E7E5962493E20500725359 /* sp_arm32.c in Sources */ = {isa = PBXBuildFile; fileRef = A4E7E5912493E20500725359 /* sp_arm32.c */; };
		A4E7E5972493E20500725359 /* sp_dsp32.c in Sources */ = {isa = PBXBuildFile; fileRef = A4E7E5922493E20500725359 /* sp_dsp32.c */; };
		A4E7E5982493E20500725359 /* sp_cortexm.c in Sources */ = {isa = PBXBuildFile; fileRef = A4E7E5932493E20500725359 /* sp_cortexm.c */; };
		A4E7E5992493E20500725359 /* sp_armthumb.c in Sources */ = {isa = PBXBuildFile; fileRef = A4E7E5942493E20500725359 /* sp_armthumb.c */; };
		A4F318501BC58B1700FDF2BB /* dsa.c in Sources */ = {isa = PBXBuildFile; fileRef = 5216461A1A8992CC0062516A /* dsa.c */; };
		A4F318511BC58B1700FDF2BB /* logging.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646201A8992CC0062516A /* logging.c */; };
		A4F318521BC58B1700FDF2BB /* sha.c in Sources */ = {isa = PBXBuildFile; fileRef = 5216462D1A8992CC0062516A /* sha.c */; };
		A4F318531BC58B1700FDF2BB /* poly1305.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646271A8992CC0062516A /* poly1305.c */; };
		A4F318541BC58B1700FDF2BB /* dh.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646191A8992CC0062516A /* dh.c */; };
		A4F318551BC58B1700FDF2BB /* camellia.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646151A8992CC0062516A /* camellia.c */; };
		A4F318561BC58B1700FDF2BB /* wc_port.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646311A8992CC0062516A /* wc_port.c */; };
		A4F318571BC58B1700FDF2BB /* pwdbased.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646281A8992CC0062516A /* pwdbased.c */; };
		A4F3185A1BC58B1700FDF2BB /* asn.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646131A8992CC0062516A /* asn.c */; };
		A4F3185B1BC58B1700FDF2BB /* sha512.c in Sources */ = {isa = PBXBuildFile; fileRef = 5216462F1A8992CC0062516A /* sha512.c */; };
		A4F3185D1BC58B1700FDF2BB /* hash.c in Sources */ = {isa = PBXBuildFile; fileRef = 525BE5331B3869110054BBCD /* hash.c */; };
		A4F3185E1BC58B1700FDF2BB /* md5.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646231A8992CC0062516A /* md5.c */; };
		A4F3185F1BC58B1700FDF2BB /* ssl.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646071A89928E0062516A /* ssl.c */; };
		A4F318601BC58B1700FDF2BB /* rsa.c in Sources */ = {isa = PBXBuildFile; fileRef = 5216462C1A8992CC0062516A /* rsa.c */; };
		A4F318611BC58B1700FDF2BB /* random.c in Sources */ = {isa = PBXBuildFile; fileRef = 5216462A1A8992CC0062516A /* random.c */; };
		A4F318621BC58B1700FDF2BB /* wc_encrypt.c in Sources */ = {isa = PBXBuildFile; fileRef = 522DBE0C1B7926FB0031F454 /* wc_encrypt.c */; };
		A4F318631BC58B1700FDF2BB /* tls.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646081A89928E0062516A /* tls.c */; };
		A4F318641BC58B1700FDF2BB /* ocsp.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646051A89928E0062516A /* ocsp.c */; };
		A4F318651BC58B1700FDF2BB /* md4.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646221A8992CC0062516A /* md4.c */; };
		A4F318661BC58B1700FDF2BB /* aes.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646111A8992CC0062516A /* aes.c */; };
		A4F318671BC58B1700FDF2BB /* des3.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646181A8992CC0062516A /* des3.c */; };
		A4F318681BC58B1700FDF2BB /* blake2b.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646141A8992CC0062516A /* blake2b.c */; };
		A4F318691BC58B1700FDF2BB /* ripemd.c in Sources */ = {isa = PBXBuildFile; fileRef = 5216462B1A8992CC0062516A /* ripemd.c */; };
		A4F3186A1BC58B1700FDF2BB /* memory.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646241A8992CC0062516A /* memory.c */; };
		A4F3186B1BC58B1700FDF2BB /* ecc.c in Sources */ = {isa = PBXBuildFile; fileRef = 5216461B1A8992CC0062516A /* ecc.c */; };
		A4F3186C1BC58B1700FDF2BB /* sha256.c in Sources */ = {isa = PBXBuildFile; fileRef = 5216462E1A8992CC0062516A /* sha256.c */; };
		A4F3186D1BC58B1700FDF2BB /* chacha.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646161A8992CC0062516A /* chacha.c */; };
		A4F3186E1BC58B1700FDF2BB /* pkcs7.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646261A8992CC0062516A /* pkcs7.c */; };
		A4F3186F1BC58B1700FDF2BB /* sniffer.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646061A89928E0062516A /* sniffer.c */; };
		A4F318701BC58B1700FDF2BB /* md2.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646211A8992CC0062516A /* md2.c */; };
		A4F318711BC58B1700FDF2BB /* coding.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646171A8992CC0062516A /* coding.c */; };
		A4F318721BC58B1700FDF2BB /* error.c in Sources */ = {isa = PBXBuildFile; fileRef = 5216461C1A8992CC0062516A /* error.c */; };
		A4F318731BC58B1700FDF2BB /* hmac.c in Sources */ = {isa = PBXBuildFile; fileRef = 5216461E1A8992CC0062516A /* hmac.c */; };
		A4F318741BC58B1700FDF2BB /* arc4.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646121A8992CC0062516A /* arc4.c */; };
		A4F318751BC58B1700FDF2BB /* integer.c in Sources */ = {isa = PBXBuildFile; fileRef = 5216461F1A8992CC0062516A /* integer.c */; };
		A4F318761BC58B1700FDF2BB /* internal.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646021A89928E0062516A /* internal.c */; };
		A4F318771BC58B1700FDF2BB /* wolfio.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646031A89928E0062516A /* wolfio.c */; };
		A4F318781BC58B1700FDF2BB /* tfm.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646301A8992CC0062516A /* tfm.c */; };
		A4F318791BC58B1700FDF2BB /* crl.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646011A89928E0062516A /* crl.c */; };
		A4F3187A1BC58B1700FDF2BB /* keys.c in Sources */ = {isa = PBXBuildFile; fileRef = 521646041A89928E0062516A /* keys.c */; };
		A4F3187D1BC58B1700FDF2BB /* callbacks.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646531A8993290062516A /* callbacks.h */; };
		A4F3187E1BC58B1700FDF2BB /* certs_test.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646541A8993290062516A /* certs_test.h */; };
		A4F3187F1BC58B1700FDF2BB /* crl.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646551A8993290062516A /* crl.h */; };
		A4F318801BC58B1700FDF2BB /* error-ssl.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646561A8993290062516A /* error-ssl.h */; };
		A4F318811BC58B1700FDF2BB /* internal.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646571A8993290062516A /* internal.h */; };
		A4F318821BC58B1700FDF2BB /* ocsp.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646581A8993290062516A /* ocsp.h */; };
		A4F318831BC58B1700FDF2BB /* ssl.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216465B1A8993290062516A /* ssl.h */; };
		A4F318841BC58B1700FDF2BB /* test.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216465C1A8993290062516A /* test.h */; };
		A4F318851BC58B1700FDF2BB /* version.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216465D1A8993290062516A /* version.h */; };
		A4F318871BC58B1700FDF2BB /* wc_encrypt.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 522DBE0E1B7927290031F454 /* wc_encrypt.h */; };
		A4F318881BC58B1700FDF2BB /* hash.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 525BE5351B3869430054BBCD /* hash.h */; };
		A4F318891BC58B1700FDF2BB /* aes.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216465E1A8993770062516A /* aes.h */; };
		A4F3188A1BC58B1700FDF2BB /* arc4.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216465F1A8993770062516A /* arc4.h */; };
		A4F3188B1BC58B1700FDF2BB /* asn_public.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646601A8993770062516A /* asn_public.h */; };
		A4F3188C1BC58B1700FDF2BB /* asn.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646611A8993770062516A /* asn.h */; };
		A4F3188D1BC58B1700FDF2BB /* blake2-impl.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646621A8993770062516A /* blake2-impl.h */; };
		A4F3188E1BC58B1700FDF2BB /* blake2-int.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646631A8993770062516A /* blake2-int.h */; };
		A4F3188F1BC58B1700FDF2BB /* blake2.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646641A8993770062516A /* blake2.h */; };
		A4F318901BC58B1700FDF2BB /* camellia.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646651A8993770062516A /* camellia.h */; };
		A4F318911BC58B1700FDF2BB /* chacha.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646661A8993770062516A /* chacha.h */; };
		A4F318921BC58B1700FDF2BB /* coding.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646671A8993770062516A /* coding.h */; };
		A4F318931BC58B1700FDF2BB /* compress.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646681A8993770062516A /* compress.h */; };
		A4F318941BC58B1700FDF2BB /* des3.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646691A8993770062516A /* des3.h */; };
		A4F318951BC58B1700FDF2BB /* dh.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216466A1A8993770062516A /* dh.h */; };
		A4F318961BC58B1700FDF2BB /* dsa.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216466B1A8993770062516A /* dsa.h */; };
		A4F318971BC58B1700FDF2BB /* ecc.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216466C1A8993770062516A /* ecc.h */; };
		A4F318981BC58B1700FDF2BB /* error-crypt.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216466D1A8993770062516A /* error-crypt.h */; };
		A4F318991BC58B1700FDF2BB /* fips_test.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216466E1A8993770062516A /* fips_test.h */; };
		A4F3189B1BC58B1700FDF2BB /* hmac.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646701A8993770062516A /* hmac.h */; };
		A4F3189C1BC58B1700FDF2BB /* integer.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646721A8993770062516A /* integer.h */; };
		A4F3189D1BC58B1700FDF2BB /* logging.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646731A8993770062516A /* logging.h */; };
		A4F3189E1BC58B1700FDF2BB /* md2.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646741A8993770062516A /* md2.h */; };
		A4F3189F1BC58B1700FDF2BB /* md4.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646751A8993770062516A /* md4.h */; };
		A4F318A01BC58B1700FDF2BB /* md5.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646761A8993770062516A /* md5.h */; };
		A4F318A11BC58B1700FDF2BB /* memory.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646771A8993770062516A /* memory.h */; };
		A4F318A21BC58B1700FDF2BB /* misc.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646781A8993770062516A /* misc.h */; };
		A4F318A31BC58B1700FDF2BB /* mpi_class.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646791A8993770062516A /* mpi_class.h */; };
		A4F318A41BC58B1700FDF2BB /* mpi_superclass.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216467A1A8993770062516A /* mpi_superclass.h */; };
		A4F318A51BC58B1700FDF2BB /* pkcs7.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216467B1A8993770062516A /* pkcs7.h */; };
		A4F318A61BC58B1700FDF2BB /* poly1305.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216467C1A8993770062516A /* poly1305.h */; };
		A4F318A71BC58B1700FDF2BB /* pwdbased.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216467D1A8993770062516A /* pwdbased.h */; };
		A4F318A91BC58B1700FDF2BB /* random.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 5216467F1A8993770062516A /* random.h */; };
		A4F318AA1BC58B1700FDF2BB /* ripemd.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646801A8993770062516A /* ripemd.h */; };
		A4F318AB1BC58B1700FDF2BB /* rsa.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646811A8993770062516A /* rsa.h */; };
		A4F318AC1BC58B1700FDF2BB /* settings.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646821A8993770062516A /* settings.h */; };
		A4F318AD1BC58B1700FDF2BB /* sha.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646831A8993770062516A /* sha.h */; };
		A4F318AE1BC58B1700FDF2BB /* sha256.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646841A8993770062516A /* sha256.h */; };
		A4F318AF1BC58B1700FDF2BB /* sha512.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646851A8993770062516A /* sha512.h */; };
		A4F318B01BC58B1700FDF2BB /* tfm.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646861A8993770062516A /* tfm.h */; };
		A4F318B11BC58B1700FDF2BB /* types.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646871A8993770062516A /* types.h */; };
		A4F318B21BC58B1700FDF2BB /* visibility.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646881A8993770062516A /* visibility.h */; };
		A4F318B31BC58B1700FDF2BB /* wc_port.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 521646891A8993770062516A /* wc_port.h */; };
/* End PBXBuildFile section */

/* Begin PBXCopyFilesBuildPhase section */
		30B060491C6DDAEA00D46008 /* CopyFiles */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = include/wolfssl;
			dstSubfolderSpec = 7;
			files = (
				1EBED29C2238168A003E4A01 /* wolfio.h in CopyFiles */,
				30B0607F1C6DDB4600D46008 /* callbacks.h in CopyFiles */,
				30B060801C6DDB4600D46008 /* certs_test.h in CopyFiles */,
				30B060811C6DDB4600D46008 /* crl.h in CopyFiles */,
				30B060821C6DDB4600D46008 /* error-ssl.h in CopyFiles */,
				30B060831C6DDB4600D46008 /* internal.h in CopyFiles */,
				30B060841C6DDB4600D46008 /* ocsp.h in CopyFiles */,
				30B060851C6DDB4600D46008 /* ssl.h in CopyFiles */,
				30B060861C6DDB4600D46008 /* test.h in CopyFiles */,
				30B060871C6DDB4600D46008 /* version.h in CopyFiles */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		30B060881C6DDB5200D46008 /* CopyFiles */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = include/wolfssl/wolfcrypt;
			dstSubfolderSpec = 7;
			files = (
				1EBED2A0223816B3003E4A01 /* mem_track.h in CopyFiles */,
				1EBED29E223816A2003E4A01 /* wolfmath.h in CopyFiles */,
				30B0608B1C6DDB6200D46008 /* aes.h in CopyFiles */,
				30B0608C1C6DDB6200D46008 /* arc4.h in CopyFiles */,
				30B0608D1C6DDB6200D46008 /* asn_public.h in CopyFiles */,
				30B0608E1C6DDB6200D46008 /* asn.h in CopyFiles */,
				30B0608F1C6DDB6200D46008 /* blake2-impl.h in CopyFiles */,
				30B060901C6DDB6200D46008 /* blake2-int.h in CopyFiles */,
				30B060911C6DDB6200D46008 /* blake2.h in CopyFiles */,
				30B060921C6DDB6200D46008 /* camellia.h in CopyFiles */,
				30B060931C6DDB6200D46008 /* chacha.h in CopyFiles */,
				30B060941C6DDB6200D46008 /* coding.h in CopyFiles */,
				30B060951C6DDB6200D46008 /* compress.h in CopyFiles */,
				30B060961C6DDB6200D46008 /* des3.h in CopyFiles */,
				30B060971C6DDB6200D46008 /* dh.h in CopyFiles */,
				30B060981C6DDB6200D46008 /* dsa.h in CopyFiles */,
				30B060991C6DDB6200D46008 /* ecc.h in CopyFiles */,
				30B0609A1C6DDB6200D46008 /* error-crypt.h in CopyFiles */,
				30B0609B1C6DDB6200D46008 /* fips_test.h in CopyFiles */,
				30B0609C1C6DDB6200D46008 /* hash.h in CopyFiles */,
				30B0609E1C6DDB6200D46008 /* hmac.h in CopyFiles */,
				30B0609F1C6DDB6200D46008 /* integer.h in CopyFiles */,
				30B060A01C6DDB6200D46008 /* logging.h in CopyFiles */,
				30B060A11C6DDB6200D46008 /* md2.h in CopyFiles */,
				30B060A21C6DDB6200D46008 /* md4.h in CopyFiles */,
				30B060A31C6DDB6200D46008 /* md5.h in CopyFiles */,
				30B060A41C6DDB6200D46008 /* memory.h in CopyFiles */,
				30B060A51C6DDB6200D46008 /* misc.h in CopyFiles */,
				30B060A61C6DDB6200D46008 /* mpi_class.h in CopyFiles */,
				30B060A71C6DDB6200D46008 /* mpi_superclass.h in CopyFiles */,
				30B060A81C6DDB6200D46008 /* pkcs7.h in CopyFiles */,
				30B060A91C6DDB6200D46008 /* poly1305.h in CopyFiles */,
				30B060AA1C6DDB6200D46008 /* pwdbased.h in CopyFiles */,
				30B060AC1C6DDB6200D46008 /* random.h in CopyFiles */,
				30B060AD1C6DDB6200D46008 /* ripemd.h in CopyFiles */,
				30B060AE1C6DDB6200D46008 /* rsa.h in CopyFiles */,
				30B060AF1C6DDB6200D46008 /* settings.h in CopyFiles */,
				30B060B01C6DDB6200D46008 /* sha.h in CopyFiles */,
				30B060B11C6DDB6200D46008 /* sha256.h in CopyFiles */,
				30B060B21C6DDB6200D46008 /* sha512.h in CopyFiles */,
				30B060B31C6DDB6200D46008 /* tfm.h in CopyFiles */,
				30B060B41C6DDB6200D46008 /* types.h in CopyFiles */,
				30B060B51C6DDB6200D46008 /* visibility.h in CopyFiles */,
				30B060B61C6DDB6200D46008 /* wc_encrypt.h in CopyFiles */,
				30B060B71C6DDB6200D46008 /* wc_port.h in CopyFiles */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		521646C11A8A7B380062516A /* CopyFiles */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = include/wolfssl/wolfcrypt;
			dstSubfolderSpec = 7;
			files = (
				700F0C052A2FBC5100755BA7 /* async.h in CopyFiles */,
				700F0C062A2FBC5100755BA7 /* chacha20_poly1305.h in CopyFiles */,
				700F0C072A2FBC5100755BA7 /* cmac.h in CopyFiles */,
				700F0C082A2FBC5100755BA7 /* cpuid.h in CopyFiles */,
				700F0C092A2FBC5100755BA7 /* cryptocb.h in CopyFiles */,
				700F0C0A2A2FBC5100755BA7 /* curve448.h in CopyFiles */,
				700F0C0B2A2FBC5100755BA7 /* curve25519.h in CopyFiles */,
				700F0C0C2A2FBC5100755BA7 /* dilithium.h in CopyFiles */,
				700F0C0D2A2FBC5100755BA7 /* eccsi.h in CopyFiles */,
				700F0C0E2A2FBC5100755BA7 /* ed448.h in CopyFiles */,
				700F0C0F2A2FBC5100755BA7 /* ed25519.h in CopyFiles */,
				700F0C102A2FBC5100755BA7 /* ext_mlkem.h in CopyFiles */,
				700F0C112A2FBC5100755BA7 /* falcon.h in CopyFiles */,
				700F0C122A2FBC5100755BA7 /* fe_448.h in CopyFiles */,
				700F0C132A2FBC5100755BA7 /* fe_operations.h in CopyFiles */,
				700F0C142A2FBC5100755BA7 /* fips.h in CopyFiles */,
				700F0C152A2FBC5100755BA7 /* ge_448.h in CopyFiles */,
				700F0C162A2FBC5100755BA7 /* ge_operations.h in CopyFiles */,
				700F0C172A2FBC5100755BA7 /* hpke.h in CopyFiles */,
				700F0C182A2FBC5100755BA7 /* mlkem.h in CopyFiles */,
				700F0C192A2FBC5100755BA7 /* pkcs11.h in CopyFiles */,
				700F0C1A2A2FBC5100755BA7 /* pkcs12.h in CopyFiles */,
				700F0C1B2A2FBC5100755BA7 /* rc2.h in CopyFiles */,
				700F0C1C2A2FBC5100755BA7 /* sakke.h in CopyFiles */,
				700F0C1D2A2FBC5100755BA7 /* selftest.h in CopyFiles */,
				700F0C1E2A2FBC5100755BA7 /* sha3.h in CopyFiles */,
				700F0C1F2A2FBC5100755BA7 /* signature.h in CopyFiles */,
				700F0C202A2FBC5100755BA7 /* siphash.h in CopyFiles */,
				700F0C212A2FBC5100755BA7 /* sp_int.h in CopyFiles */,
				700F0C222A2FBC5100755BA7 /* sp.h in CopyFiles */,
				700F0C232A2FBC5100755BA7 /* sphincs.h in CopyFiles */,
				700F0C242A2FBC5100755BA7 /* srp.h in CopyFiles */,
				700F0C252A2FBC5100755BA7 /* wc_mlkem.h in CopyFiles */,
				700F0C262A2FBC5100755BA7 /* wc_pkcs11.h in CopyFiles */,
				700F0C272A2FBC5100755BA7 /* wolfevent.h in CopyFiles */,
				700F0C282A2FBC5100755BA7 /* kdf.h in CopyFiles */,
				520775BE2239ACFF00087711 /* mem_track.h in CopyFiles */,
				520775BF2239ACFF00087711 /* wolfmath.h in CopyFiles */,
				522DBE0F1B7927A50031F454 /* wc_encrypt.h in CopyFiles */,
				525BE5361B3869780054BBCD /* hash.h in CopyFiles */,
				521646CD1A8A7FF30062516A /* aes.h in CopyFiles */,
				521646CE1A8A7FF30062516A /* arc4.h in CopyFiles */,
				521646CF1A8A7FF30062516A /* asn_public.h in CopyFiles */,
				521646D01A8A7FF30062516A /* asn.h in CopyFiles */,
				521646D11A8A7FF30062516A /* blake2-impl.h in CopyFiles */,
				521646D21A8A7FF30062516A /* blake2-int.h in CopyFiles */,
				521646D31A8A7FF30062516A /* blake2.h in CopyFiles */,
				521646D41A8A7FF30062516A /* camellia.h in CopyFiles */,
				521646D51A8A7FF30062516A /* chacha.h in CopyFiles */,
				521646D61A8A7FF30062516A /* coding.h in CopyFiles */,
				521646D71A8A7FF30062516A /* compress.h in CopyFiles */,
				521646D81A8A7FF30062516A /* des3.h in CopyFiles */,
				521646D91A8A7FF30062516A /* dh.h in CopyFiles */,
				521646DA1A8A7FF30062516A /* dsa.h in CopyFiles */,
				521646DB1A8A7FF30062516A /* ecc.h in CopyFiles */,
				521646DC1A8A7FF30062516A /* error-crypt.h in CopyFiles */,
				521646DD1A8A7FF30062516A /* fips_test.h in CopyFiles */,
				521646DF1A8A7FF30062516A /* hmac.h in CopyFiles */,
				521646E01A8A7FF30062516A /* integer.h in CopyFiles */,
				521646E11A8A7FF30062516A /* logging.h in CopyFiles */,
				521646E21A8A7FF30062516A /* md2.h in CopyFiles */,
				521646E31A8A7FF30062516A /* md4.h in CopyFiles */,
				521646E41A8A7FF30062516A /* md5.h in CopyFiles */,
				521646E51A8A7FF30062516A /* memory.h in CopyFiles */,
				521646E61A8A7FF30062516A /* misc.h in CopyFiles */,
				521646E71A8A7FF30062516A /* mpi_class.h in CopyFiles */,
				521646E81A8A7FF30062516A /* mpi_superclass.h in CopyFiles */,
				521646E91A8A7FF30062516A /* pkcs7.h in CopyFiles */,
				521646EA1A8A7FF30062516A /* poly1305.h in CopyFiles */,
				521646EB1A8A7FF30062516A /* pwdbased.h in CopyFiles */,
				521646ED1A8A7FF30062516A /* random.h in CopyFiles */,
				521646EE1A8A7FF30062516A /* ripemd.h in CopyFiles */,
				521646EF1A8A7FF30062516A /* rsa.h in CopyFiles */,
				521646F01A8A7FF30062516A /* settings.h in CopyFiles */,
				521646F11A8A7FF30062516A /* sha.h in CopyFiles */,
				521646F21A8A7FF30062516A /* sha256.h in CopyFiles */,
				521646F31A8A7FF30062516A /* sha512.h in CopyFiles */,
				521646F41A8A7FF30062516A /* tfm.h in CopyFiles */,
				521646F51A8A7FF30062516A /* types.h in CopyFiles */,
				521646F61A8A7FF30062516A /* visibility.h in CopyFiles */,
				521646F71A8A7FF30062516A /* wc_port.h in CopyFiles */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		52B1344B16F3C9E800C07B32 /* CopyFiles */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = include/wolfssl;
			dstSubfolderSpec = 7;
			files = (
				700F0C2C2A2FBD1700755BA7 /* quic.h in CopyFiles */,
				700F0C2D2A2FBD1700755BA7 /* sniffer.h in CopyFiles */,
				700F0C2E2A2FBD1700755BA7 /* sniffer_error.h in CopyFiles */,
				520775C02239B16C00087711 /* wolfio.h in CopyFiles */,
				521646C41A8A7FE10062516A /* callbacks.h in CopyFiles */,
				521646C51A8A7FE10062516A /* certs_test.h in CopyFiles */,
				521646C61A8A7FE10062516A /* crl.h in CopyFiles */,
				521646C71A8A7FE10062516A /* error-ssl.h in CopyFiles */,
				521646C81A8A7FE10062516A /* internal.h in CopyFiles */,
				521646C91A8A7FE10062516A /* ocsp.h in CopyFiles */,
				521646CA1A8A7FE10062516A /* ssl.h in CopyFiles */,
				521646CB1A8A7FE10062516A /* test.h in CopyFiles */,
				521646CC1A8A7FE10062516A /* version.h in CopyFiles */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		700F0C8B2A2FBEB400755BA7 /* CopyFiles */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = include/wolfssl/openssl;
			dstSubfolderSpec = 7;
			files = (
				700F0C8C2A2FBEF100755BA7 /* aes.h in CopyFiles */,
				700F0C8D2A2FBEF100755BA7 /* asn1.h in CopyFiles */,
				700F0C8E2A2FBEF100755BA7 /* asn1t.h in CopyFiles */,
				700F0C8F2A2FBEF100755BA7 /* bio.h in CopyFiles */,
				700F0C902A2FBEF100755BA7 /* bn.h in CopyFiles */,
				700F0C912A2FBEF100755BA7 /* buffer.h in CopyFiles */,
				700F0C922A2FBEF100755BA7 /* camellia.h in CopyFiles */,
				700F0C932A2FBEF100755BA7 /* cmac.h in CopyFiles */,
				700F0C942A2FBEF100755BA7 /* cms.h in CopyFiles */,
				700F0C952A2FBEF100755BA7 /* compat_types.h in CopyFiles */,
				700F0C962A2FBEF100755BA7 /* conf.h in CopyFiles */,
				700F0C972A2FBEF100755BA7 /* crypto.h in CopyFiles */,
				700F0C982A2FBEF100755BA7 /* des.h in CopyFiles */,
				700F0C992A2FBEF100755BA7 /* dh.h in CopyFiles */,
				700F0C9A2A2FBEF100755BA7 /* dsa.h in CopyFiles */,
				700F0C9B2A2FBEF100755BA7 /* ec.h in CopyFiles */,
				700F0C9C2A2FBEF100755BA7 /* ec448.h in CopyFiles */,
				700F0C9D2A2FBEF100755BA7 /* ec25519.h in CopyFiles */,
				700F0C9E2A2FBEF100755BA7 /* ecdh.h in CopyFiles */,
				700F0C9F2A2FBEF100755BA7 /* ecdsa.h in CopyFiles */,
				700F0CA02A2FBEF100755BA7 /* ed448.h in CopyFiles */,
				700F0CA12A2FBEF100755BA7 /* ed25519.h in CopyFiles */,
				700F0CA22A2FBEF100755BA7 /* engine.h in CopyFiles */,
				700F0CA32A2FBEF100755BA7 /* err.h in CopyFiles */,
				700F0CA42A2FBEF100755BA7 /* evp.h in CopyFiles */,
				700F0CA52A2FBEF100755BA7 /* fips_rand.h in CopyFiles */,
				700F0CA62A2FBEF100755BA7 /* hmac.h in CopyFiles */,
				700F0CA82A2FBEF100755BA7 /* kdf.h in CopyFiles */,
				700F0CA92A2FBEF100755BA7 /* lhash.h in CopyFiles */,
				700F0CAA2A2FBEF100755BA7 /* md4.h in CopyFiles */,
				700F0CAB2A2FBEF100755BA7 /* md5.h in CopyFiles */,
				700F0CAC2A2FBEF100755BA7 /* modes.h in CopyFiles */,
				700F0CAD2A2FBEF100755BA7 /* obj_mac.h in CopyFiles */,
				700F0CAE2A2FBEF100755BA7 /* objects.h in CopyFiles */,
				700F0CAF2A2FBEF100755BA7 /* ocsp.h in CopyFiles */,
				700F0CB02A2FBEF100755BA7 /* opensslconf.h in CopyFiles */,
				700F0CB12A2FBEF100755BA7 /* opensslv.h in CopyFiles */,
				700F0CB22A2FBEF100755BA7 /* ossl_typ.h in CopyFiles */,
				700F0CB32A2FBEF100755BA7 /* pem.h in CopyFiles */,
				700F0CB42A2FBEF100755BA7 /* pkcs7.h in CopyFiles */,
				700F0CB52A2FBEF100755BA7 /* pkcs12.h in CopyFiles */,
				700F0CB62A2FBEF100755BA7 /* rand.h in CopyFiles */,
				700F0CB72A2FBEF100755BA7 /* rc4.h in CopyFiles */,
				700F0CB82A2FBEF100755BA7 /* ripemd.h in CopyFiles */,
				700F0CB92A2FBEF100755BA7 /* rsa.h in CopyFiles */,
				700F0CBA2A2FBEF100755BA7 /* sha.h in CopyFiles */,
				700F0CBB2A2FBEF100755BA7 /* sha3.h in CopyFiles */,
				700F0CBC2A2FBEF100755BA7 /* srp.h in CopyFiles */,
				700F0CBD2A2FBEF100755BA7 /* ssl.h in CopyFiles */,
				700F0CBE2A2FBEF100755BA7 /* ssl23.h in CopyFiles */,
				700F0CBF2A2FBEF100755BA7 /* stack.h in CopyFiles */,
				700F0CC02A2FBEF100755BA7 /* tls1.h in CopyFiles */,
				700F0CC12A2FBEF100755BA7 /* txt_db.h in CopyFiles */,
				700F0CC22A2FBEF100755BA7 /* ui.h in CopyFiles */,
				700F0CC32A2FBEF100755BA7 /* x509_vfy.h in CopyFiles */,
				700F0CC42A2FBEF100755BA7 /* x509.h in CopyFiles */,
				700F0CC52A2FBEF100755BA7 /* x509v3.h in CopyFiles */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		A4F3187C1BC58B1700FDF2BB /* CopyFiles */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = include/wolfssl;
			dstSubfolderSpec = 7;
			files = (
				520775C12239B1A800087711 /* wolfio.h in CopyFiles */,
				A4F3187D1BC58B1700FDF2BB /* callbacks.h in CopyFiles */,
				A4F3187E1BC58B1700FDF2BB /* certs_test.h in CopyFiles */,
				A4F3187F1BC58B1700FDF2BB /* crl.h in CopyFiles */,
				A4F318801BC58B1700FDF2BB /* error-ssl.h in CopyFiles */,
				A4F318811BC58B1700FDF2BB /* internal.h in CopyFiles */,
				A4F318821BC58B1700FDF2BB /* ocsp.h in CopyFiles */,
				A4F318831BC58B1700FDF2BB /* ssl.h in CopyFiles */,
				A4F318841BC58B1700FDF2BB /* test.h in CopyFiles */,
				A4F318851BC58B1700FDF2BB /* version.h in CopyFiles */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		A4F318861BC58B1700FDF2BB /* CopyFiles */ = {
			isa = PBXCopyFilesBuildPhase;
			buildActionMask = 2147483647;
			dstPath = include/wolfssl/wolfcrypt;
			dstSubfolderSpec = 7;
			files = (
				520775C22239B1C200087711 /* mem_track.h in CopyFiles */,
				520775C32239B1C200087711 /* wolfmath.h in CopyFiles */,
				A4F318871BC58B1700FDF2BB /* wc_encrypt.h in CopyFiles */,
				A4F318881BC58B1700FDF2BB /* hash.h in CopyFiles */,
				A4F318891BC58B1700FDF2BB /* aes.h in CopyFiles */,
				A4F3188A1BC58B1700FDF2BB /* arc4.h in CopyFiles */,
				A4F3188B1BC58B1700FDF2BB /* asn_public.h in CopyFiles */,
				A4F3188C1BC58B1700FDF2BB /* asn.h in CopyFiles */,
				A4F3188D1BC58B1700FDF2BB /* blake2-impl.h in CopyFiles */,
				A4F3188E1BC58B1700FDF2BB /* blake2-int.h in CopyFiles */,
				A4F3188F1BC58B1700FDF2BB /* blake2.h in CopyFiles */,
				A4F318901BC58B1700FDF2BB /* camellia.h in CopyFiles */,
				A4F318911BC58B1700FDF2BB /* chacha.h in CopyFiles */,
				A4F318921BC58B1700FDF2BB /* coding.h in CopyFiles */,
				A4F318931BC58B1700FDF2BB /* compress.h in CopyFiles */,
				A4F318941BC58B1700FDF2BB /* des3.h in CopyFiles */,
				A4F318951BC58B1700FDF2BB /* dh.h in CopyFiles */,
				A4F318961BC58B1700FDF2BB /* dsa.h in CopyFiles */,
				A4F318971BC58B1700FDF2BB /* ecc.h in CopyFiles */,
				A4F318981BC58B1700FDF2BB /* error-crypt.h in CopyFiles */,
				A4F318991BC58B1700FDF2BB /* fips_test.h in CopyFiles */,
				A4F3189B1BC58B1700FDF2BB /* hmac.h in CopyFiles */,
				A4F3189C1BC58B1700FDF2BB /* integer.h in CopyFiles */,
				A4F3189D1BC58B1700FDF2BB /* logging.h in CopyFiles */,
				A4F3189E1BC58B1700FDF2BB /* md2.h in CopyFiles */,
				A4F3189F1BC58B1700FDF2BB /* md4.h in CopyFiles */,
				A4F318A01BC58B1700FDF2BB /* md5.h in CopyFiles */,
				A4F318A11BC58B1700FDF2BB /* memory.h in CopyFiles */,
				A4F318A21BC58B1700FDF2BB /* misc.h in CopyFiles */,
				A4F318A31BC58B1700FDF2BB /* mpi_class.h in CopyFiles */,
				A4F318A41BC58B1700FDF2BB /* mpi_superclass.h in CopyFiles */,
				A4F318A51BC58B1700FDF2BB /* pkcs7.h in CopyFiles */,
				A4F318A61BC58B1700FDF2BB /* poly1305.h in CopyFiles */,
				A4F318A71BC58B1700FDF2BB /* pwdbased.h in CopyFiles */,
				A4F318A91BC58B1700FDF2BB /* random.h in CopyFiles */,
				A4F318AA1BC58B1700FDF2BB /* ripemd.h in CopyFiles */,
				A4F318AB1BC58B1700FDF2BB /* rsa.h in CopyFiles */,
				A4F318AC1BC58B1700FDF2BB /* settings.h in CopyFiles */,
				A4F318AD1BC58B1700FDF2BB /* sha.h in CopyFiles */,
				A4F318AE1BC58B1700FDF2BB /* sha256.h in CopyFiles */,
				A4F318AF1BC58B1700FDF2BB /* sha512.h in CopyFiles */,
				A4F318B01BC58B1700FDF2BB /* tfm.h in CopyFiles */,
				A4F318B11BC58B1700FDF2BB /* types.h in CopyFiles */,
				A4F318B21BC58B1700FDF2BB /* visibility.h in CopyFiles */,
				A4F318B31BC58B1700FDF2BB /* wc_port.h in CopyFiles */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXCopyFilesBuildPhase section */

/* Begin PBXFileReference section */
		1E8BEB6A212F49EC0063DCC1 /* sha3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = sha3.c; path = ../../wolfcrypt/src/sha3.c; sourceTree = "<group>"; };
		1E8BEB6C212F4AA10063DCC1 /* sp_x86_64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = sp_x86_64.c; path = ../../wolfcrypt/src/sp_x86_64.c; sourceTree = "<group>"; };
		1E8BEB6E212F4C340063DCC1 /* sp_int.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = sp_int.c; path = ../../wolfcrypt/src/sp_int.c; sourceTree = "<group>"; };
		1E8BEB6F212F4C340063DCC1 /* sp_c64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = sp_c64.c; path = ../../wolfcrypt/src/sp_c64.c; sourceTree = "<group>"; };
		1E8BEB70212F4C340063DCC1 /* sp_c32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = sp_c32.c; path = ../../wolfcrypt/src/sp_c32.c; sourceTree = "<group>"; };
		1E8BEB75212F4CF80063DCC1 /* curve25519.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = curve25519.c; path = ../../wolfcrypt/src/curve25519.c; sourceTree = "<group>"; };
		1E8BEB76212F4CF80063DCC1 /* ed25519.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ed25519.c; path = ../../wolfcrypt/src/ed25519.c; sourceTree = "<group>"; };
		1E8BEB77212F4CF80063DCC1 /* chacha20_poly1305.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = chacha20_poly1305.c; path = ../../wolfcrypt/src/chacha20_poly1305.c; sourceTree = "<group>"; };
		1E8BEB7C212F4D960063DCC1 /* signature.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = signature.c; path = ../../wolfcrypt/src/signature.c; sourceTree = "<group>"; };
		1E8BEB7E212F4DCF0063DCC1 /* wolfmath.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = wolfmath.c; path = ../../wolfcrypt/src/wolfmath.c; sourceTree = "<group>"; };
		1E8BEB80212F4E330063DCC1 /* ge_operations.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ge_operations.c; path = ../../wolfcrypt/src/ge_operations.c; sourceTree = "<group>"; };
		1E8BEB81212F4E330063DCC1 /* ge_low_mem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ge_low_mem.c; path = ../../wolfcrypt/src/ge_low_mem.c; sourceTree = "<group>"; };
		1E8BEB84212F4F010063DCC1 /* fe_operations.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = fe_operations.c; path = ../../wolfcrypt/src/fe_operations.c; sourceTree = "<group>"; };
		1E8BEB85212F4F010063DCC1 /* fe_low_mem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = fe_low_mem.c; path = ../../wolfcrypt/src/fe_low_mem.c; sourceTree = "<group>"; };
		1EBED29B2238168A003E4A01 /* wolfio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = wolfio.h; path = ../../wolfssl/wolfio.h; sourceTree = "<group>"; };
		1EBED29D223816A2003E4A01 /* wolfmath.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = wolfmath.h; path = ../../wolfssl/wolfcrypt/wolfmath.h; sourceTree = "<group>"; };
		1EBED29F223816B3003E4A01 /* mem_track.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mem_track.h; path = ../../wolfssl/wolfcrypt/mem_track.h; sourceTree = "<group>"; };
		30B0604B1C6DDAEA00D46008 /* libwolfssl_tvos.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libwolfssl_tvos.a; sourceTree = BUILT_PRODUCTS_DIR; };
		521646011A89928E0062516A /* crl.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = crl.c; path = ../../src/crl.c; sourceTree = "<group>"; };
		521646021A89928E0062516A /* internal.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = internal.c; path = ../../src/internal.c; sourceTree = "<group>"; };
		521646031A89928E0062516A /* wolfio.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = wolfio.c; path = ../../src/wolfio.c; sourceTree = "<group>"; };
		521646041A89928E0062516A /* keys.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = keys.c; path = ../../src/keys.c; sourceTree = "<group>"; };
		521646051A89928E0062516A /* ocsp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ocsp.c; path = ../../src/ocsp.c; sourceTree = "<group>"; };
		521646061A89928E0062516A /* sniffer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = sniffer.c; path = ../../src/sniffer.c; sourceTree = "<group>"; };
		521646071A89928E0062516A /* ssl.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ssl.c; path = ../../src/ssl.c; sourceTree = "<group>"; };
		521646081A89928E0062516A /* tls.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tls.c; path = ../../src/tls.c; sourceTree = "<group>"; };
		521646111A8992CC0062516A /* aes.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = aes.c; path = ../../wolfcrypt/src/aes.c; sourceTree = SOURCE_ROOT; };
		521646121A8992CC0062516A /* arc4.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = arc4.c; path = ../../wolfcrypt/src/arc4.c; sourceTree = SOURCE_ROOT; };
		521646131A8992CC0062516A /* asn.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = asn.c; path = ../../wolfcrypt/src/asn.c; sourceTree = SOURCE_ROOT; };
		521646141A8992CC0062516A /* blake2b.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = blake2b.c; path = ../../wolfcrypt/src/blake2b.c; sourceTree = SOURCE_ROOT; };
		521646151A8992CC0062516A /* camellia.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = camellia.c; path = ../../wolfcrypt/src/camellia.c; sourceTree = SOURCE_ROOT; };
		521646161A8992CC0062516A /* chacha.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = chacha.c; path = ../../wolfcrypt/src/chacha.c; sourceTree = SOURCE_ROOT; };
		521646171A8992CC0062516A /* coding.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = coding.c; path = ../../wolfcrypt/src/coding.c; sourceTree = SOURCE_ROOT; };
		521646181A8992CC0062516A /* des3.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = des3.c; path = ../../wolfcrypt/src/des3.c; sourceTree = SOURCE_ROOT; };
		521646191A8992CC0062516A /* dh.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = dh.c; path = ../../wolfcrypt/src/dh.c; sourceTree = SOURCE_ROOT; };
		5216461A1A8992CC0062516A /* dsa.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = dsa.c; path = ../../wolfcrypt/src/dsa.c; sourceTree = SOURCE_ROOT; };
		5216461B1A8992CC0062516A /* ecc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ecc.c; path = ../../wolfcrypt/src/ecc.c; sourceTree = SOURCE_ROOT; };
		5216461C1A8992CC0062516A /* error.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = error.c; path = ../../wolfcrypt/src/error.c; sourceTree = SOURCE_ROOT; };
		5216461E1A8992CC0062516A /* hmac.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = hmac.c; path = ../../wolfcrypt/src/hmac.c; sourceTree = SOURCE_ROOT; };
		5216461F1A8992CC0062516A /* integer.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = integer.c; path = ../../wolfcrypt/src/integer.c; sourceTree = SOURCE_ROOT; };
		521646201A8992CC0062516A /* logging.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = logging.c; path = ../../wolfcrypt/src/logging.c; sourceTree = SOURCE_ROOT; };
		521646211A8992CC0062516A /* md2.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = md2.c; path = ../../wolfcrypt/src/md2.c; sourceTree = SOURCE_ROOT; };
		521646221A8992CC0062516A /* md4.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = md4.c; path = ../../wolfcrypt/src/md4.c; sourceTree = SOURCE_ROOT; };
		521646231A8992CC0062516A /* md5.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = md5.c; path = ../../wolfcrypt/src/md5.c; sourceTree = SOURCE_ROOT; };
		521646241A8992CC0062516A /* memory.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = memory.c; path = ../../wolfcrypt/src/memory.c; sourceTree = SOURCE_ROOT; };
		521646251A8992CC0062516A /* misc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = misc.c; path = ../../wolfcrypt/src/misc.c; sourceTree = SOURCE_ROOT; };
		521646261A8992CC0062516A /* pkcs7.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pkcs7.c; path = ../../wolfcrypt/src/pkcs7.c; sourceTree = SOURCE_ROOT; };
		521646271A8992CC0062516A /* poly1305.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = poly1305.c; path = ../../wolfcrypt/src/poly1305.c; sourceTree = SOURCE_ROOT; };
		521646281A8992CC0062516A /* pwdbased.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pwdbased.c; path = ../../wolfcrypt/src/pwdbased.c; sourceTree = SOURCE_ROOT; };
		5216462A1A8992CC0062516A /* random.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = random.c; path = ../../wolfcrypt/src/random.c; sourceTree = SOURCE_ROOT; };
		5216462B1A8992CC0062516A /* ripemd.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ripemd.c; path = ../../wolfcrypt/src/ripemd.c; sourceTree = SOURCE_ROOT; };
		5216462C1A8992CC0062516A /* rsa.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = rsa.c; path = ../../wolfcrypt/src/rsa.c; sourceTree = SOURCE_ROOT; };
		5216462D1A8992CC0062516A /* sha.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = sha.c; path = ../../wolfcrypt/src/sha.c; sourceTree = SOURCE_ROOT; };
		5216462E1A8992CC0062516A /* sha256.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = sha256.c; path = ../../wolfcrypt/src/sha256.c; sourceTree = SOURCE_ROOT; };
		5216462F1A8992CC0062516A /* sha512.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = sha512.c; path = ../../wolfcrypt/src/sha512.c; sourceTree = SOURCE_ROOT; };
		521646301A8992CC0062516A /* tfm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tfm.c; path = ../../wolfcrypt/src/tfm.c; sourceTree = SOURCE_ROOT; };
		521646311A8992CC0062516A /* wc_port.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = wc_port.c; path = ../../wolfcrypt/src/wc_port.c; sourceTree = SOURCE_ROOT; };
		521646531A8993290062516A /* callbacks.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = callbacks.h; path = ../../wolfssl/callbacks.h; sourceTree = "<group>"; };
		521646541A8993290062516A /* certs_test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = certs_test.h; path = ../../wolfssl/certs_test.h; sourceTree = "<group>"; };
		521646551A8993290062516A /* crl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = crl.h; path = ../../wolfssl/crl.h; sourceTree = "<group>"; };
		521646561A8993290062516A /* error-ssl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "error-ssl.h"; path = "../../wolfssl/error-ssl.h"; sourceTree = "<group>"; };
		521646571A8993290062516A /* internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = internal.h; path = ../../wolfssl/internal.h; sourceTree = "<group>"; };
		521646581A8993290062516A /* ocsp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ocsp.h; path = ../../wolfssl/ocsp.h; sourceTree = "<group>"; };
		5216465B1A8993290062516A /* ssl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ssl.h; path = ../../wolfssl/ssl.h; sourceTree = "<group>"; };
		5216465C1A8993290062516A /* test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = test.h; path = ../../wolfssl/test.h; sourceTree = "<group>"; };
		5216465D1A8993290062516A /* version.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = version.h; path = ../../wolfssl/version.h; sourceTree = "<group>"; };
		5216465E1A8993770062516A /* aes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = aes.h; path = ../../wolfssl/wolfcrypt/aes.h; sourceTree = "<group>"; };
		5216465F1A8993770062516A /* arc4.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = arc4.h; path = ../../wolfssl/wolfcrypt/arc4.h; sourceTree = "<group>"; };
		521646601A8993770062516A /* asn_public.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = asn_public.h; path = ../../wolfssl/wolfcrypt/asn_public.h; sourceTree = "<group>"; };
		521646611A8993770062516A /* asn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = asn.h; path = ../../wolfssl/wolfcrypt/asn.h; sourceTree = "<group>"; };
		521646621A8993770062516A /* blake2-impl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "blake2-impl.h"; path = "../../wolfssl/wolfcrypt/blake2-impl.h"; sourceTree = "<group>"; };
		521646631A8993770062516A /* blake2-int.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "blake2-int.h"; path = "../../wolfssl/wolfcrypt/blake2-int.h"; sourceTree = "<group>"; };
		521646641A8993770062516A /* blake2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = blake2.h; path = ../../wolfssl/wolfcrypt/blake2.h; sourceTree = "<group>"; };
		521646651A8993770062516A /* camellia.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = camellia.h; path = ../../wolfssl/wolfcrypt/camellia.h; sourceTree = "<group>"; };
		521646661A8993770062516A /* chacha.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = chacha.h; path = ../../wolfssl/wolfcrypt/chacha.h; sourceTree = "<group>"; };
		521646671A8993770062516A /* coding.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = coding.h; path = ../../wolfssl/wolfcrypt/coding.h; sourceTree = "<group>"; };
		521646681A8993770062516A /* compress.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = compress.h; path = ../../wolfssl/wolfcrypt/compress.h; sourceTree = "<group>"; };
		521646691A8993770062516A /* des3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = des3.h; path = ../../wolfssl/wolfcrypt/des3.h; sourceTree = "<group>"; };
		5216466A1A8993770062516A /* dh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = dh.h; path = ../../wolfssl/wolfcrypt/dh.h; sourceTree = "<group>"; };
		5216466B1A8993770062516A /* dsa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = dsa.h; path = ../../wolfssl/wolfcrypt/dsa.h; sourceTree = "<group>"; };
		5216466C1A8993770062516A /* ecc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ecc.h; path = ../../wolfssl/wolfcrypt/ecc.h; sourceTree = "<group>"; };
		5216466D1A8993770062516A /* error-crypt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "error-crypt.h"; path = "../../wolfssl/wolfcrypt/error-crypt.h"; sourceTree = "<group>"; };
		5216466E1A8993770062516A /* fips_test.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = fips_test.h; path = ../../wolfssl/wolfcrypt/fips_test.h; sourceTree = "<group>"; };
		521646701A8993770062516A /* hmac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = hmac.h; path = ../../wolfssl/wolfcrypt/hmac.h; sourceTree = "<group>"; };
		521646721A8993770062516A /* integer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = integer.h; path = ../../wolfssl/wolfcrypt/integer.h; sourceTree = "<group>"; };
		521646731A8993770062516A /* logging.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = logging.h; path = ../../wolfssl/wolfcrypt/logging.h; sourceTree = "<group>"; };
		521646741A8993770062516A /* md2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = md2.h; path = ../../wolfssl/wolfcrypt/md2.h; sourceTree = "<group>"; };
		521646751A8993770062516A /* md4.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = md4.h; path = ../../wolfssl/wolfcrypt/md4.h; sourceTree = "<group>"; };
		521646761A8993770062516A /* md5.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = md5.h; path = ../../wolfssl/wolfcrypt/md5.h; sourceTree = "<group>"; };
		521646771A8993770062516A /* memory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = memory.h; path = ../../wolfssl/wolfcrypt/memory.h; sourceTree = "<group>"; };
		521646781A8993770062516A /* misc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = misc.h; path = ../../wolfssl/wolfcrypt/misc.h; sourceTree = "<group>"; };
		521646791A8993770062516A /* mpi_class.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mpi_class.h; path = ../../wolfssl/wolfcrypt/mpi_class.h; sourceTree = "<group>"; };
		5216467A1A8993770062516A /* mpi_superclass.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mpi_superclass.h; path = ../../wolfssl/wolfcrypt/mpi_superclass.h; sourceTree = "<group>"; };
		5216467B1A8993770062516A /* pkcs7.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pkcs7.h; path = ../../wolfssl/wolfcrypt/pkcs7.h; sourceTree = "<group>"; };
		5216467C1A8993770062516A /* poly1305.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = poly1305.h; path = ../../wolfssl/wolfcrypt/poly1305.h; sourceTree = "<group>"; };
		5216467D1A8993770062516A /* pwdbased.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pwdbased.h; path = ../../wolfssl/wolfcrypt/pwdbased.h; sourceTree = "<group>"; };
		5216467F1A8993770062516A /* random.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = random.h; path = ../../wolfssl/wolfcrypt/random.h; sourceTree = "<group>"; };
		521646801A8993770062516A /* ripemd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ripemd.h; path = ../../wolfssl/wolfcrypt/ripemd.h; sourceTree = "<group>"; };
		521646811A8993770062516A /* rsa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = rsa.h; path = ../../wolfssl/wolfcrypt/rsa.h; sourceTree = "<group>"; };
		521646821A8993770062516A /* settings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = settings.h; path = ../../wolfssl/wolfcrypt/settings.h; sourceTree = "<group>"; };
		521646831A8993770062516A /* sha.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sha.h; path = ../../wolfssl/wolfcrypt/sha.h; sourceTree = "<group>"; };
		521646841A8993770062516A /* sha256.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sha256.h; path = ../../wolfssl/wolfcrypt/sha256.h; sourceTree = "<group>"; };
		521646851A8993770062516A /* sha512.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sha512.h; path = ../../wolfssl/wolfcrypt/sha512.h; sourceTree = "<group>"; };
		521646861A8993770062516A /* tfm.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tfm.h; path = ../../wolfssl/wolfcrypt/tfm.h; sourceTree = "<group>"; };
		521646871A8993770062516A /* types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = types.h; path = ../../wolfssl/wolfcrypt/types.h; sourceTree = "<group>"; };
		521646881A8993770062516A /* visibility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = visibility.h; path = ../../wolfssl/wolfcrypt/visibility.h; sourceTree = "<group>"; };
		521646891A8993770062516A /* wc_port.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = wc_port.h; path = ../../wolfssl/wolfcrypt/wc_port.h; sourceTree = "<group>"; };
		522DBE0C1B7926FB0031F454 /* wc_encrypt.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = wc_encrypt.c; path = ../../wolfcrypt/src/wc_encrypt.c; sourceTree = SOURCE_ROOT; };
		522DBE0E1B7927290031F454 /* wc_encrypt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = wc_encrypt.h; path = ../../wolfssl/wolfcrypt/wc_encrypt.h; sourceTree = "<group>"; };
		525BE5331B3869110054BBCD /* hash.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = hash.c; path = ../../wolfcrypt/src/hash.c; sourceTree = "<group>"; };
		525BE5351B3869430054BBCD /* hash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = hash.h; path = ../../wolfssl/wolfcrypt/hash.h; sourceTree = "<group>"; };
		52B1344D16F3C9E800C07B32 /* libwolfssl_ios.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libwolfssl_ios.a; sourceTree = BUILT_PRODUCTS_DIR; };
		6AC85128272CAF2E00F2B32A /* kdf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = kdf.c; path = ../../wolfcrypt/src/kdf.c; sourceTree = "<group>"; };
		6AC8513B272CB04F00F2B32A /* kdf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = kdf.h; path = ../../wolfssl/wolfcrypt/kdf.h; sourceTree = "<group>"; };
		700F0BE02A2FBC1500755BA7 /* rc2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = rc2.h; path = ../../wolfssl/wolfcrypt/rc2.h; sourceTree = "<group>"; };
		700F0BE12A2FBC1500755BA7 /* hpke.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = hpke.h; path = ../../wolfssl/wolfcrypt/hpke.h; sourceTree = "<group>"; };
		700F0BE22A2FBC1500755BA7 /* sphincs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sphincs.h; path = ../../wolfssl/wolfcrypt/sphincs.h; sourceTree = "<group>"; };
		700F0BE32A2FBC1500755BA7 /* curve448.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = curve448.h; path = ../../wolfssl/wolfcrypt/curve448.h; sourceTree = "<group>"; };
		700F0BE52A2FBC1500755BA7 /* curve25519.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = curve25519.h; path = ../../wolfssl/wolfcrypt/curve25519.h; sourceTree = "<group>"; };
		700F0BE62A2FBC1500755BA7 /* wolfevent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = wolfevent.h; path = ../../wolfssl/wolfcrypt/wolfevent.h; sourceTree = "<group>"; };
		700F0BE72A2FBC1500755BA7 /* ge_448.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ge_448.h; path = ../../wolfssl/wolfcrypt/ge_448.h; sourceTree = "<group>"; };
		700F0BE82A2FBC1500755BA7 /* sp_int.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sp_int.h; path = ../../wolfssl/wolfcrypt/sp_int.h; sourceTree = "<group>"; };
		700F0BE92A2FBC1500755BA7 /* sp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sp.h; path = ../../wolfssl/wolfcrypt/sp.h; sourceTree = "<group>"; };
		700F0BEA2A2FBC1500755BA7 /* mlkem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mlkem.h; path = ../../wolfssl/wolfcrypt/mlkem.h; sourceTree = "<group>"; };
		700F0BEB2A2FBC1500755BA7 /* fe_448.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = fe_448.h; path = ../../wolfssl/wolfcrypt/fe_448.h; sourceTree = "<group>"; };
		700F0BEC2A2FBC1500755BA7 /* pkcs12.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pkcs12.h; path = ../../wolfssl/wolfcrypt/pkcs12.h; sourceTree = "<group>"; };
		700F0BED2A2FBC1500755BA7 /* chacha20_poly1305.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = chacha20_poly1305.h; path = ../../wolfssl/wolfcrypt/chacha20_poly1305.h; sourceTree = "<group>"; };
		700F0BEE2A2FBC1500755BA7 /* cryptocb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cryptocb.h; path = ../../wolfssl/wolfcrypt/cryptocb.h; sourceTree = "<group>"; };
		700F0BEF2A2FBC1500755BA7 /* dilithium.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = dilithium.h; path = ../../wolfssl/wolfcrypt/dilithium.h; sourceTree = "<group>"; };
		700F0BF02A2FBC1500755BA7 /* sakke.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sakke.h; path = ../../wolfssl/wolfcrypt/sakke.h; sourceTree = "<group>"; };
		700F0BF12A2FBC1600755BA7 /* cpuid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cpuid.h; path = ../../wolfssl/wolfcrypt/cpuid.h; sourceTree = "<group>"; };
		700F0BF22A2FBC1600755BA7 /* selftest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = selftest.h; path = ../../wolfssl/wolfcrypt/selftest.h; sourceTree = "<group>"; };
		700F0BF32A2FBC1600755BA7 /* srp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = srp.h; path = ../../wolfssl/wolfcrypt/srp.h; sourceTree = "<group>"; };
		700F0BF42A2FBC1600755BA7 /* ed25519.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ed25519.h; path = ../../wolfssl/wolfcrypt/ed25519.h; sourceTree = "<group>"; };
		700F0BF52A2FBC1600755BA7 /* wc_pkcs11.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = wc_pkcs11.h; path = ../../wolfssl/wolfcrypt/wc_pkcs11.h; sourceTree = "<group>"; };
		700F0BF62A2FBC1600755BA7 /* fe_operations.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = fe_operations.h; path = ../../wolfssl/wolfcrypt/fe_operations.h; sourceTree = "<group>"; };
		700F0BF72A2FBC1600755BA7 /* eccsi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = eccsi.h; path = ../../wolfssl/wolfcrypt/eccsi.h; sourceTree = "<group>"; };
		700F0BF82A2FBC1600755BA7 /* ed448.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ed448.h; path = ../../wolfssl/wolfcrypt/ed448.h; sourceTree = "<group>"; };
		700F0BF92A2FBC1600755BA7 /* ext_mlkem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ext_mlkem.h; path = ../../wolfssl/wolfcrypt/ext_mlkem.h; sourceTree = "<group>"; };
		700F0BFA2A2FBC1600755BA7 /* sha3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sha3.h; path = ../../wolfssl/wolfcrypt/sha3.h; sourceTree = "<group>"; };
		700F0BFB2A2FBC1600755BA7 /* signature.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = signature.h; path = ../../wolfssl/wolfcrypt/signature.h; sourceTree = "<group>"; };
		700F0BFC2A2FBC1600755BA7 /* cmac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cmac.h; path = ../../wolfssl/wolfcrypt/cmac.h; sourceTree = "<group>"; };
		700F0BFD2A2FBC1600755BA7 /* pkcs11.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pkcs11.h; path = ../../wolfssl/wolfcrypt/pkcs11.h; sourceTree = "<group>"; };
		700F0BFE2A2FBC1600755BA7 /* siphash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = siphash.h; path = ../../wolfssl/wolfcrypt/siphash.h; sourceTree = "<group>"; };
		700F0BFF2A2FBC1600755BA7 /* wc_mlkem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = wc_mlkem.h; path = ../../wolfssl/wolfcrypt/wc_mlkem.h; sourceTree = "<group>"; };
		700F0C002A2FBC1600755BA7 /* fips.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = fips.h; path = ../../wolfssl/wolfcrypt/fips.h; sourceTree = "<group>"; };
		700F0C012A2FBC1600755BA7 /* ge_operations.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ge_operations.h; path = ../../wolfssl/wolfcrypt/ge_operations.h; sourceTree = "<group>"; };
		700F0C022A2FBC1600755BA7 /* falcon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = falcon.h; path = ../../wolfssl/wolfcrypt/falcon.h; sourceTree = "<group>"; };
		700F0C032A2FBC1600755BA7 /* async.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = async.h; path = ../../wolfssl/wolfcrypt/async.h; sourceTree = "<group>"; };
		700F0C292A2FBCAD00755BA7 /* quic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = quic.h; path = ../../wolfssl/quic.h; sourceTree = "<group>"; };
		700F0C2A2A2FBCAD00755BA7 /* sniffer_error.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sniffer_error.h; path = ../../wolfssl/sniffer_error.h; sourceTree = "<group>"; };
		700F0C2B2A2FBCF800755BA7 /* sniffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sniffer.h; path = ../../wolfssl/sniffer.h; sourceTree = "<group>"; };
		700F0C512A2FBE8000755BA7 /* asn1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = asn1.h; path = ../../wolfssl/openssl/asn1.h; sourceTree = "<group>"; };
		700F0C522A2FBE8100755BA7 /* dh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = dh.h; path = ../../wolfssl/openssl/dh.h; sourceTree = "<group>"; };
		700F0C532A2FBE8100755BA7 /* compat_types.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = compat_types.h; path = ../../wolfssl/openssl/compat_types.h; sourceTree = "<group>"; };
		700F0C542A2FBE8100755BA7 /* ecdh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ecdh.h; path = ../../wolfssl/openssl/ecdh.h; sourceTree = "<group>"; };
		700F0C552A2FBE8100755BA7 /* ui.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ui.h; path = ../../wolfssl/openssl/ui.h; sourceTree = "<group>"; };
		700F0C562A2FBE8100755BA7 /* rc4.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = rc4.h; path = ../../wolfssl/openssl/rc4.h; sourceTree = "<group>"; };
		700F0C572A2FBE8100755BA7 /* objects.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = objects.h; path = ../../wolfssl/openssl/objects.h; sourceTree = "<group>"; };
		700F0C582A2FBE8100755BA7 /* bio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = bio.h; path = ../../wolfssl/openssl/bio.h; sourceTree = "<group>"; };
		700F0C5A2A2FBE8100755BA7 /* stack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = stack.h; path = ../../wolfssl/openssl/stack.h; sourceTree = "<group>"; };
		700F0C5B2A2FBE8100755BA7 /* camellia.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = camellia.h; path = ../../wolfssl/openssl/camellia.h; sourceTree = "<group>"; };
		700F0C5C2A2FBE8100755BA7 /* sha.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sha.h; path = ../../wolfssl/openssl/sha.h; sourceTree = "<group>"; };
		700F0C5D2A2FBE8100755BA7 /* engine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = engine.h; path = ../../wolfssl/openssl/engine.h; sourceTree = "<group>"; };
		700F0C5E2A2FBE8100755BA7 /* cms.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cms.h; path = ../../wolfssl/openssl/cms.h; sourceTree = "<group>"; };
		700F0C5F2A2FBE8100755BA7 /* evp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = evp.h; path = ../../wolfssl/openssl/evp.h; sourceTree = "<group>"; };
		700F0C602A2FBE8100755BA7 /* ec25519.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ec25519.h; path = ../../wolfssl/openssl/ec25519.h; sourceTree = "<group>"; };
		700F0C612A2FBE8100755BA7 /* des.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = des.h; path = ../../wolfssl/openssl/des.h; sourceTree = "<group>"; };
		700F0C622A2FBE8100755BA7 /* x509v3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = x509v3.h; path = ../../wolfssl/openssl/x509v3.h; sourceTree = "<group>"; };
		700F0C632A2FBE8100755BA7 /* cmac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cmac.h; path = ../../wolfssl/openssl/cmac.h; sourceTree = "<group>"; };
		700F0C642A2FBE8100755BA7 /* ed448.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ed448.h; path = ../../wolfssl/openssl/ed448.h; sourceTree = "<group>"; };
		700F0C652A2FBE8100755BA7 /* lhash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = lhash.h; path = ../../wolfssl/openssl/lhash.h; sourceTree = "<group>"; };
		700F0C662A2FBE8100755BA7 /* conf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = conf.h; path = ../../wolfssl/openssl/conf.h; sourceTree = "<group>"; };
		700F0C672A2FBE8100755BA7 /* ec448.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ec448.h; path = ../../wolfssl/openssl/ec448.h; sourceTree = "<group>"; };
		700F0C682A2FBE8100755BA7 /* x509.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = x509.h; path = ../../wolfssl/openssl/x509.h; sourceTree = "<group>"; };
		700F0C692A2FBE8100755BA7 /* bn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = bn.h; path = ../../wolfssl/openssl/bn.h; sourceTree = "<group>"; };
		700F0C6A2A2FBE8100755BA7 /* err.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = err.h; path = ../../wolfssl/openssl/err.h; sourceTree = "<group>"; };
		700F0C6B2A2FBE8100755BA7 /* ripemd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ripemd.h; path = ../../wolfssl/openssl/ripemd.h; sourceTree = "<group>"; };
		700F0C6C2A2FBE8100755BA7 /* pem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pem.h; path = ../../wolfssl/openssl/pem.h; sourceTree = "<group>"; };
		700F0C6D2A2FBE8100755BA7 /* md4.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = md4.h; path = ../../wolfssl/openssl/md4.h; sourceTree = "<group>"; };
		700F0C6E2A2FBE8100755BA7 /* kdf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = kdf.h; path = ../../wolfssl/openssl/kdf.h; sourceTree = "<group>"; };
		700F0C6F2A2FBE8100755BA7 /* ec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ec.h; path = ../../wolfssl/openssl/ec.h; sourceTree = "<group>"; };
		700F0C702A2FBE8100755BA7 /* md5.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = md5.h; path = ../../wolfssl/openssl/md5.h; sourceTree = "<group>"; };
		700F0C712A2FBE8100755BA7 /* sha3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sha3.h; path = ../../wolfssl/openssl/sha3.h; sourceTree = "<group>"; };
		700F0C722A2FBE8100755BA7 /* asn1t.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = asn1t.h; path = ../../wolfssl/openssl/asn1t.h; sourceTree = "<group>"; };
		700F0C732A2FBE8100755BA7 /* opensslconf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = opensslconf.h; path = ../../wolfssl/openssl/opensslconf.h; sourceTree = "<group>"; };
		700F0C742A2FBE8100755BA7 /* pkcs7.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pkcs7.h; path = ../../wolfssl/openssl/pkcs7.h; sourceTree = "<group>"; };
		700F0C752A2FBE8100755BA7 /* srp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = srp.h; path = ../../wolfssl/openssl/srp.h; sourceTree = "<group>"; };
		700F0C762A2FBE8100755BA7 /* ssl23.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ssl23.h; path = ../../wolfssl/openssl/ssl23.h; sourceTree = "<group>"; };
		700F0C772A2FBE8200755BA7 /* modes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = modes.h; path = ../../wolfssl/openssl/modes.h; sourceTree = "<group>"; };
		700F0C782A2FBE8200755BA7 /* pkcs12.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pkcs12.h; path = ../../wolfssl/openssl/pkcs12.h; sourceTree = "<group>"; };
		700F0C792A2FBE8200755BA7 /* ossl_typ.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ossl_typ.h; path = ../../wolfssl/openssl/ossl_typ.h; sourceTree = "<group>"; };
		700F0C7A2A2FBE8200755BA7 /* x509_vfy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = x509_vfy.h; path = ../../wolfssl/openssl/x509_vfy.h; sourceTree = "<group>"; };
		700F0C7B2A2FBE8200755BA7 /* rand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = rand.h; path = ../../wolfssl/openssl/rand.h; sourceTree = "<group>"; };
		700F0C7C2A2FBE8200755BA7 /* aes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = aes.h; path = ../../wolfssl/openssl/aes.h; sourceTree = "<group>"; };
		700F0C7D2A2FBE8200755BA7 /* opensslv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = opensslv.h; path = ../../wolfssl/openssl/opensslv.h; sourceTree = "<group>"; };
		700F0C7E2A2FBE8200755BA7 /* ed25519.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ed25519.h; path = ../../wolfssl/openssl/ed25519.h; sourceTree = "<group>"; };
		700F0C7F2A2FBE8200755BA7 /* fips_rand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = fips_rand.h; path = ../../wolfssl/openssl/fips_rand.h; sourceTree = "<group>"; };
		700F0C802A2FBE8200755BA7 /* obj_mac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = obj_mac.h; path = ../../wolfssl/openssl/obj_mac.h; sourceTree = "<group>"; };
		700F0C812A2FBE8200755BA7 /* ecdsa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ecdsa.h; path = ../../wolfssl/openssl/ecdsa.h; sourceTree = "<group>"; };
		700F0C822A2FBE8200755BA7 /* tls1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = tls1.h; path = ../../wolfssl/openssl/tls1.h; sourceTree = "<group>"; };
		700F0C832A2FBE8200755BA7 /* hmac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = hmac.h; path = ../../wolfssl/openssl/hmac.h; sourceTree = "<group>"; };
		700F0C842A2FBE8200755BA7 /* ocsp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ocsp.h; path = ../../wolfssl/openssl/ocsp.h; sourceTree = "<group>"; };
		700F0C852A2FBE8200755BA7 /* buffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = buffer.h; path = ../../wolfssl/openssl/buffer.h; sourceTree = "<group>"; };
		700F0C862A2FBE8200755BA7 /* crypto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = crypto.h; path = ../../wolfssl/openssl/crypto.h; sourceTree = "<group>"; };
		700F0C872A2FBE8200755BA7 /* txt_db.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = txt_db.h; path = ../../wolfssl/openssl/txt_db.h; sourceTree = "<group>"; };
		700F0C882A2FBE8200755BA7 /* dsa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = dsa.h; path = ../../wolfssl/openssl/dsa.h; sourceTree = "<group>"; };
		700F0C892A2FBE8200755BA7 /* ssl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ssl.h; path = ../../wolfssl/openssl/ssl.h; sourceTree = "<group>"; };
		700F0C8A2A2FBE8200755BA7 /* rsa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = rsa.h; path = ../../wolfssl/openssl/rsa.h; sourceTree = "<group>"; };
		9D01058F291CEA4F00A854D3 /* armv8-sha512-asm.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; name = "armv8-sha512-asm.S"; path = "../../wolfcrypt/src/port/arm/armv8-sha512-asm.S"; sourceTree = "<group>"; };
		9D010591291CEA4F00A854D3 /* armv8-sha256-asm.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = "armv8-sha256-asm.S"; path = "../../wolfcrypt/src/port/arm/armv8-sha256-asm.S"; sourceTree = "<group>"; };
		9D010593291CEA4F00A854D3 /* armv8-poly1305-asm.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = "armv8-poly1305-asm.S"; path = "../../wolfcrypt/src/port/arm/armv8-poly1305-asm.S"; sourceTree = "<group>"; };
		9D010595291CEA4F00A854D3 /* armv8-sha3-asm.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; name = "armv8-sha3-asm.S"; path = "../../wolfcrypt/src/port/arm/armv8-sha3-asm.S"; sourceTree = "<group>"; };
		9D010596291CEA4F00A854D3 /* armv8-chacha-asm.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = "armv8-chacha-asm.S"; path = "../../wolfcrypt/src/port/arm/armv8-chacha-asm.S"; sourceTree = "<group>"; };
		9D010598291CEA4F00A854D3 /* armv8-aes-asm.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = "armv8-aes-asm.S"; path = "../../wolfcrypt/src/port/arm/armv8-aes-asm.S"; sourceTree = "<group>"; };
		9D010599291CEA4F00A854D3 /* armv8-curve25519.S */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; name = "armv8-curve25519.S"; path = "../../wolfcrypt/src/port/arm/armv8-curve25519.S"; sourceTree = "<group>"; };
		9D2E31CA291CDF120082B941 /* quic.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = quic.c; path = ../../src/quic.c; sourceTree = "<group>"; };
		9D2E31CB291CDF120082B941 /* dtls.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = dtls.c; path = ../../src/dtls.c; sourceTree = "<group>"; };
		9D2E31D2291CDF2E0082B941 /* dtls13.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = dtls13.c; path = ../../src/dtls13.c; sourceTree = "<group>"; };
		A45EA7091BC5995E00A8614A /* user_settings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = user_settings.h; sourceTree = "<group>"; };
		A4DAE3052493F1C700CEF51F /* tls13.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tls13.c; path = ../../src/tls13.c; sourceTree = "<group>"; };
		A4DAE3092493F21700CEF51F /* srp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = srp.c; path = ../../wolfcrypt/src/srp.c; sourceTree = "<group>"; };
		A4DAE30A2493F21800CEF51F /* ed448.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ed448.c; path = ../../wolfcrypt/src/ed448.c; sourceTree = "<group>"; };
		A4DAE30B2493F21800CEF51F /* cpuid.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = cpuid.c; path = ../../wolfcrypt/src/cpuid.c; sourceTree = "<group>"; };
		A4DAE30C2493F21800CEF51F /* asm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = asm.c; path = ../../wolfcrypt/src/asm.c; sourceTree = "<group>"; };
		A4DAE30D2493F21800CEF51F /* fe_448.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = fe_448.c; path = ../../wolfcrypt/src/fe_448.c; sourceTree = "<group>"; };
		A4DAE30E2493F21800CEF51F /* compress.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = compress.c; path = ../../wolfcrypt/src/compress.c; sourceTree = "<group>"; };
		A4DAE30F2493F21800CEF51F /* cmac.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = cmac.c; path = ../../wolfcrypt/src/cmac.c; sourceTree = "<group>"; };
		A4DAE3102493F21800CEF51F /* ecc_fp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ecc_fp.c; path = ../../wolfcrypt/src/ecc_fp.c; sourceTree = "<group>"; };
		A4DAE3112493F21800CEF51F /* cryptocb.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = cryptocb.c; path = ../../wolfcrypt/src/cryptocb.c; sourceTree = "<group>"; };
		A4DAE3122493F21800CEF51F /* wolfevent.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = wolfevent.c; path = ../../wolfcrypt/src/wolfevent.c; sourceTree = "<group>"; };
		A4DAE3132493F21800CEF51F /* pkcs12.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pkcs12.c; path = ../../wolfcrypt/src/pkcs12.c; sourceTree = "<group>"; };
		A4DAE3142493F21800CEF51F /* curve448.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = curve448.c; path = ../../wolfcrypt/src/curve448.c; sourceTree = "<group>"; };
		A4DAE3152493F21800CEF51F /* ge_448.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = ge_448.c; path = ../../wolfcrypt/src/ge_448.c; sourceTree = "<group>"; };
		A4DAE3162493F21900CEF51F /* wc_dsp.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = wc_dsp.c; path = ../../wolfcrypt/src/wc_dsp.c; sourceTree = "<group>"; };
		A4DAE3172493F21900CEF51F /* wc_pkcs11.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = wc_pkcs11.c; path = ../../wolfcrypt/src/wc_pkcs11.c; sourceTree = "<group>"; };
		A4DAE3182493F21900CEF51F /* blake2s.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = blake2s.c; path = ../../wolfcrypt/src/blake2s.c; sourceTree = "<group>"; };
		A4E7E5902493E20500725359 /* sp_arm64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = sp_arm64.c; path = ../../wolfcrypt/src/sp_arm64.c; sourceTree = "<group>"; };
		A4E7E5912493E20500725359 /* sp_arm32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = sp_arm32.c; path = ../../wolfcrypt/src/sp_arm32.c; sourceTree = "<group>"; };
		A4E7E5922493E20500725359 /* sp_dsp32.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = sp_dsp32.c; path = ../../wolfcrypt/src/sp_dsp32.c; sourceTree = "<group>"; };
		A4E7E5932493E20500725359 /* sp_cortexm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = sp_cortexm.c; path = ../../wolfcrypt/src/sp_cortexm.c; sourceTree = "<group>"; };
		A4E7E5942493E20500725359 /* sp_armthumb.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = sp_armthumb.c; path = ../../wolfcrypt/src/sp_armthumb.c; sourceTree = "<group>"; };
		A4F318EE1BC58B1700FDF2BB /* libwolfssl_osx.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libwolfssl_osx.a; sourceTree = BUILT_PRODUCTS_DIR; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		30B060481C6DDAEA00D46008 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		52B1344A16F3C9E800C07B32 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		A4F3187B1BC58B1700FDF2BB /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		521645391A898E7B0062516A /* Headers */ = {
			isa = PBXGroup;
			children = (
				521645F91A89916E0062516A /* wolfSSL */,
				521645F81A89916A0062516A /* wolfCrypt */,
				700F0C502A2FBE3600755BA7 /* OpenSSL */,
			);
			name = Headers;
			sourceTree = SOURCE_ROOT;
		};
		521645F81A89916A0062516A /* wolfCrypt */ = {
			isa = PBXGroup;
			children = (
				700F0C032A2FBC1600755BA7 /* async.h */,
				700F0BED2A2FBC1500755BA7 /* chacha20_poly1305.h */,
				700F0BFC2A2FBC1600755BA7 /* cmac.h */,
				700F0BF12A2FBC1600755BA7 /* cpuid.h */,
				700F0BEE2A2FBC1500755BA7 /* cryptocb.h */,
				700F0BE32A2FBC1500755BA7 /* curve448.h */,
				700F0BE52A2FBC1500755BA7 /* curve25519.h */,
				700F0BEF2A2FBC1500755BA7 /* dilithium.h */,
				700F0BF72A2FBC1600755BA7 /* eccsi.h */,
				700F0BF82A2FBC1600755BA7 /* ed448.h */,
				700F0BF42A2FBC1600755BA7 /* ed25519.h */,
				700F0BF92A2FBC1600755BA7 /* ext_mlkem.h */,
				700F0C022A2FBC1600755BA7 /* falcon.h */,
				700F0BEB2A2FBC1500755BA7 /* fe_448.h */,
				700F0BF62A2FBC1600755BA7 /* fe_operations.h */,
				700F0C002A2FBC1600755BA7 /* fips.h */,
				700F0BE72A2FBC1500755BA7 /* ge_448.h */,
				700F0C012A2FBC1600755BA7 /* ge_operations.h */,
				700F0BE12A2FBC1500755BA7 /* hpke.h */,
				700F0BEA2A2FBC1500755BA7 /* mlkem.h */,
				700F0BFD2A2FBC1600755BA7 /* pkcs11.h */,
				700F0BEC2A2FBC1500755BA7 /* pkcs12.h */,
				700F0BE02A2FBC1500755BA7 /* rc2.h */,
				700F0BF02A2FBC1500755BA7 /* sakke.h */,
				700F0BF22A2FBC1600755BA7 /* selftest.h */,
				700F0BFA2A2FBC1600755BA7 /* sha3.h */,
				700F0BFB2A2FBC1600755BA7 /* signature.h */,
				700F0BFE2A2FBC1600755BA7 /* siphash.h */,
				700F0BE82A2FBC1500755BA7 /* sp_int.h */,
				700F0BE92A2FBC1500755BA7 /* sp.h */,
				700F0BE22A2FBC1500755BA7 /* sphincs.h */,
				700F0BF32A2FBC1600755BA7 /* srp.h */,
				700F0BFF2A2FBC1600755BA7 /* wc_mlkem.h */,
				700F0BF52A2FBC1600755BA7 /* wc_pkcs11.h */,
				700F0BE62A2FBC1500755BA7 /* wolfevent.h */,
				5216465E1A8993770062516A /* aes.h */,
				5216465F1A8993770062516A /* arc4.h */,
				521646601A8993770062516A /* asn_public.h */,
				521646611A8993770062516A /* asn.h */,
				521646621A8993770062516A /* blake2-impl.h */,
				521646631A8993770062516A /* blake2-int.h */,
				521646641A8993770062516A /* blake2.h */,
				521646651A8993770062516A /* camellia.h */,
				521646661A8993770062516A /* chacha.h */,
				521646671A8993770062516A /* coding.h */,
				521646681A8993770062516A /* compress.h */,
				521646691A8993770062516A /* des3.h */,
				5216466A1A8993770062516A /* dh.h */,
				5216466B1A8993770062516A /* dsa.h */,
				5216466C1A8993770062516A /* ecc.h */,
				5216466D1A8993770062516A /* error-crypt.h */,
				5216466E1A8993770062516A /* fips_test.h */,
				525BE5351B3869430054BBCD /* hash.h */,
				521646701A8993770062516A /* hmac.h */,
				6AC8513B272CB04F00F2B32A /* kdf.h */,
				521646721A8993770062516A /* integer.h */,
				521646731A8993770062516A /* logging.h */,
				521646741A8993770062516A /* md2.h */,
				521646751A8993770062516A /* md4.h */,
				521646761A8993770062516A /* md5.h */,
				1EBED29F223816B3003E4A01 /* mem_track.h */,
				521646771A8993770062516A /* memory.h */,
				521646781A8993770062516A /* misc.h */,
				521646791A8993770062516A /* mpi_class.h */,
				5216467A1A8993770062516A /* mpi_superclass.h */,
				5216467B1A8993770062516A /* pkcs7.h */,
				5216467C1A8993770062516A /* poly1305.h */,
				5216467D1A8993770062516A /* pwdbased.h */,
				5216467F1A8993770062516A /* random.h */,
				521646801A8993770062516A /* ripemd.h */,
				521646811A8993770062516A /* rsa.h */,
				521646821A8993770062516A /* settings.h */,
				521646831A8993770062516A /* sha.h */,
				521646841A8993770062516A /* sha256.h */,
				521646851A8993770062516A /* sha512.h */,
				521646861A8993770062516A /* tfm.h */,
				521646871A8993770062516A /* types.h */,
				521646881A8993770062516A /* visibility.h */,
				522DBE0E1B7927290031F454 /* wc_encrypt.h */,
				521646891A8993770062516A /* wc_port.h */,
				1EBED29D223816A2003E4A01 /* wolfmath.h */,
			);
			name = wolfCrypt;
			sourceTree = SOURCE_ROOT;
		};
		521645F91A89916E0062516A /* wolfSSL */ = {
			isa = PBXGroup;
			children = (
				521646531A8993290062516A /* callbacks.h */,
				521646541A8993290062516A /* certs_test.h */,
				521646551A8993290062516A /* crl.h */,
				521646561A8993290062516A /* error-ssl.h */,
				521646571A8993290062516A /* internal.h */,
				521646581A8993290062516A /* ocsp.h */,
				700F0C292A2FBCAD00755BA7 /* quic.h */,
				700F0C2B2A2FBCF800755BA7 /* sniffer.h */,
				700F0C2A2A2FBCAD00755BA7 /* sniffer_error.h */,
				5216465B1A8993290062516A /* ssl.h */,
				5216465C1A8993290062516A /* test.h */,
				5216465D1A8993290062516A /* version.h */,
				1EBED29B2238168A003E4A01 /* wolfio.h */,
			);
			name = wolfSSL;
			sourceTree = SOURCE_ROOT;
		};
		521645FB1A8991990062516A /* Source */ = {
			isa = PBXGroup;
			children = (
				A45EA7091BC5995E00A8614A /* user_settings.h */,
				521646001A89924A0062516A /* wolfSSL */,
				521645FF1A8992470062516A /* wolfCrypt */,
			);
			name = Source;
			sourceTree = SOURCE_ROOT;
		};
		521645FF1A8992470062516A /* wolfCrypt */ = {
			isa = PBXGroup;
			children = (
				521646111A8992CC0062516A /* aes.c */,
				521646121A8992CC0062516A /* arc4.c */,
				9D010598291CEA4F00A854D3 /* armv8-aes-asm.S */,
				9D010596291CEA4F00A854D3 /* armv8-chacha-asm.S */,
				9D010599291CEA4F00A854D3 /* armv8-curve25519.S */,
				9D010593291CEA4F00A854D3 /* armv8-poly1305-asm.S */,
				9D010595291CEA4F00A854D3 /* armv8-sha3-asm.S */,
				9D010591291CEA4F00A854D3 /* armv8-sha256-asm.S */,
				9D01058F291CEA4F00A854D3 /* armv8-sha512-asm.S */,
				A4DAE30C2493F21800CEF51F /* asm.c */,
				521646131A8992CC0062516A /* asn.c */,
				521646141A8992CC0062516A /* blake2b.c */,
				A4DAE3182493F21900CEF51F /* blake2s.c */,
				521646151A8992CC0062516A /* camellia.c */,
				521646161A8992CC0062516A /* chacha.c */,
				1E8BEB77212F4CF80063DCC1 /* chacha20_poly1305.c */,
				A4DAE30F2493F21800CEF51F /* cmac.c */,
				521646171A8992CC0062516A /* coding.c */,
				A4DAE30E2493F21800CEF51F /* compress.c */,
				A4DAE30B2493F21800CEF51F /* cpuid.c */,
				A4DAE3112493F21800CEF51F /* cryptocb.c */,
				A4DAE3142493F21800CEF51F /* curve448.c */,
				1E8BEB75212F4CF80063DCC1 /* curve25519.c */,
				521646181A8992CC0062516A /* des3.c */,
				521646191A8992CC0062516A /* dh.c */,
				5216461A1A8992CC0062516A /* dsa.c */,
				A4DAE3102493F21800CEF51F /* ecc_fp.c */,
				5216461B1A8992CC0062516A /* ecc.c */,
				A4DAE30A2493F21800CEF51F /* ed448.c */,
				1E8BEB76212F4CF80063DCC1 /* ed25519.c */,
				5216461C1A8992CC0062516A /* error.c */,
				A4DAE30D2493F21800CEF51F /* fe_448.c */,
				1E8BEB85212F4F010063DCC1 /* fe_low_mem.c */,
				1E8BEB84212F4F010063DCC1 /* fe_operations.c */,
				A4DAE3152493F21800CEF51F /* ge_448.c */,
				1E8BEB81212F4E330063DCC1 /* ge_low_mem.c */,
				1E8BEB80212F4E330063DCC1 /* ge_operations.c */,
				525BE5331B3869110054BBCD /* hash.c */,
				5216461E1A8992CC0062516A /* hmac.c */,
				6AC85128272CAF2E00F2B32A /* kdf.c */,
				5216461F1A8992CC0062516A /* integer.c */,
				521646201A8992CC0062516A /* logging.c */,
				521646211A8992CC0062516A /* md2.c */,
				521646221A8992CC0062516A /* md4.c */,
				521646231A8992CC0062516A /* md5.c */,
				521646241A8992CC0062516A /* memory.c */,
				521646251A8992CC0062516A /* misc.c */,
				521646261A8992CC0062516A /* pkcs7.c */,
				A4DAE3132493F21800CEF51F /* pkcs12.c */,
				521646271A8992CC0062516A /* poly1305.c */,
				521646281A8992CC0062516A /* pwdbased.c */,
				5216462A1A8992CC0062516A /* random.c */,
				5216462B1A8992CC0062516A /* ripemd.c */,
				5216462C1A8992CC0062516A /* rsa.c */,
				5216462D1A8992CC0062516A /* sha.c */,
				1E8BEB6A212F49EC0063DCC1 /* sha3.c */,
				5216462E1A8992CC0062516A /* sha256.c */,
				5216462F1A8992CC0062516A /* sha512.c */,
				1E8BEB7C212F4D960063DCC1 /* signature.c */,
				A4E7E5912493E20500725359 /* sp_arm32.c */,
				A4E7E5902493E20500725359 /* sp_arm64.c */,
				A4E7E5942493E20500725359 /* sp_armthumb.c */,
				1E8BEB70212F4C340063DCC1 /* sp_c32.c */,
				1E8BEB6F212F4C340063DCC1 /* sp_c64.c */,
				A4E7E5932493E20500725359 /* sp_cortexm.c */,
				A4E7E5922493E20500725359 /* sp_dsp32.c */,
				1E8BEB6E212F4C340063DCC1 /* sp_int.c */,
				1E8BEB6C212F4AA10063DCC1 /* sp_x86_64.c */,
				A4DAE3092493F21700CEF51F /* srp.c */,
				521646301A8992CC0062516A /* tfm.c */,
				A4DAE3162493F21900CEF51F /* wc_dsp.c */,
				522DBE0C1B7926FB0031F454 /* wc_encrypt.c */,
				A4DAE3172493F21900CEF51F /* wc_pkcs11.c */,
				521646311A8992CC0062516A /* wc_port.c */,
				A4DAE3122493F21800CEF51F /* wolfevent.c */,
				1E8BEB7E212F4DCF0063DCC1 /* wolfmath.c */,
			);
			name = wolfCrypt;
			sourceTree = SOURCE_ROOT;
		};
		521646001A89924A0062516A /* wolfSSL */ = {
			isa = PBXGroup;
			children = (
				521646011A89928E0062516A /* crl.c */,
				9D2E31CB291CDF120082B941 /* dtls.c */,
				9D2E31D2291CDF2E0082B941 /* dtls13.c */,
				521646021A89928E0062516A /* internal.c */,
				521646041A89928E0062516A /* keys.c */,
				521646051A89928E0062516A /* ocsp.c */,
				9D2E31CA291CDF120082B941 /* quic.c */,
				521646061A89928E0062516A /* sniffer.c */,
				521646071A89928E0062516A /* ssl.c */,
				521646081A89928E0062516A /* tls.c */,
				A4DAE3052493F1C700CEF51F /* tls13.c */,
				521646031A89928E0062516A /* wolfio.c */,
			);
			name = wolfSSL;
			sourceTree = SOURCE_ROOT;
		};
		52B1344416F3C9E800C07B32 = {
			isa = PBXGroup;
			children = (
				521645FB1A8991990062516A /* Source */,
				521645391A898E7B0062516A /* Headers */,
				52B1344E16F3C9E800C07B32 /* Products */,
			);
			sourceTree = "<group>";
		};
		52B1344E16F3C9E800C07B32 /* Products */ = {
			isa = PBXGroup;
			children = (
				52B1344D16F3C9E800C07B32 /* libwolfssl_ios.a */,
				A4F318EE1BC58B1700FDF2BB /* libwolfssl_osx.a */,
				30B0604B1C6DDAEA00D46008 /* libwolfssl_tvos.a */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		700F0C502A2FBE3600755BA7 /* OpenSSL */ = {
			isa = PBXGroup;
			children = (
				700F0C7C2A2FBE8200755BA7 /* aes.h */,
				700F0C512A2FBE8000755BA7 /* asn1.h */,
				700F0C722A2FBE8100755BA7 /* asn1t.h */,
				700F0C582A2FBE8100755BA7 /* bio.h */,
				700F0C692A2FBE8100755BA7 /* bn.h */,
				700F0C852A2FBE8200755BA7 /* buffer.h */,
				700F0C5B2A2FBE8100755BA7 /* camellia.h */,
				700F0C632A2FBE8100755BA7 /* cmac.h */,
				700F0C5E2A2FBE8100755BA7 /* cms.h */,
				700F0C532A2FBE8100755BA7 /* compat_types.h */,
				700F0C662A2FBE8100755BA7 /* conf.h */,
				700F0C862A2FBE8200755BA7 /* crypto.h */,
				700F0C612A2FBE8100755BA7 /* des.h */,
				700F0C522A2FBE8100755BA7 /* dh.h */,
				700F0C882A2FBE8200755BA7 /* dsa.h */,
				700F0C6F2A2FBE8100755BA7 /* ec.h */,
				700F0C672A2FBE8100755BA7 /* ec448.h */,
				700F0C602A2FBE8100755BA7 /* ec25519.h */,
				700F0C542A2FBE8100755BA7 /* ecdh.h */,
				700F0C812A2FBE8200755BA7 /* ecdsa.h */,
				700F0C642A2FBE8100755BA7 /* ed448.h */,
				700F0C7E2A2FBE8200755BA7 /* ed25519.h */,
				700F0C5D2A2FBE8100755BA7 /* engine.h */,
				700F0C6A2A2FBE8100755BA7 /* err.h */,
				700F0C5F2A2FBE8100755BA7 /* evp.h */,
				700F0C7F2A2FBE8200755BA7 /* fips_rand.h */,
				700F0C832A2FBE8200755BA7 /* hmac.h */,
				700F0C6E2A2FBE8100755BA7 /* kdf.h */,
				700F0C652A2FBE8100755BA7 /* lhash.h */,
				700F0C6D2A2FBE8100755BA7 /* md4.h */,
				700F0C702A2FBE8100755BA7 /* md5.h */,
				700F0C772A2FBE8200755BA7 /* modes.h */,
				700F0C802A2FBE8200755BA7 /* obj_mac.h */,
				700F0C572A2FBE8100755BA7 /* objects.h */,
				700F0C842A2FBE8200755BA7 /* ocsp.h */,
				700F0C732A2FBE8100755BA7 /* opensslconf.h */,
				700F0C7D2A2FBE8200755BA7 /* opensslv.h */,
				700F0C792A2FBE8200755BA7 /* ossl_typ.h */,
				700F0C6C2A2FBE8100755BA7 /* pem.h */,
				700F0C742A2FBE8100755BA7 /* pkcs7.h */,
				700F0C782A2FBE8200755BA7 /* pkcs12.h */,
				700F0C7B2A2FBE8200755BA7 /* rand.h */,
				700F0C562A2FBE8100755BA7 /* rc4.h */,
				700F0C6B2A2FBE8100755BA7 /* ripemd.h */,
				700F0C8A2A2FBE8200755BA7 /* rsa.h */,
				700F0C5C2A2FBE8100755BA7 /* sha.h */,
				700F0C712A2FBE8100755BA7 /* sha3.h */,
				700F0C752A2FBE8100755BA7 /* srp.h */,
				700F0C892A2FBE8200755BA7 /* ssl.h */,
				700F0C762A2FBE8100755BA7 /* ssl23.h */,
				700F0C5A2A2FBE8100755BA7 /* stack.h */,
				700F0C822A2FBE8200755BA7 /* tls1.h */,
				700F0C872A2FBE8200755BA7 /* txt_db.h */,
				700F0C552A2FBE8100755BA7 /* ui.h */,
				700F0C7A2A2FBE8200755BA7 /* x509_vfy.h */,
				700F0C682A2FBE8100755BA7 /* x509.h */,
				700F0C622A2FBE8100755BA7 /* x509v3.h */,
			);
			name = OpenSSL;
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
		30B0604A1C6DDAEA00D46008 /* wolfssl_tvos */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 30B060531C6DDAEA00D46008 /* Build configuration list for PBXNativeTarget "wolfssl_tvos" */;
			buildPhases = (
				30B060481C6DDAEA00D46008 /* Frameworks */,
				30B060491C6DDAEA00D46008 /* CopyFiles */,
				30B060881C6DDB5200D46008 /* CopyFiles */,
				30B060471C6DDAEA00D46008 /* Sources */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = wolfssl_tvos;
			productName = wolfssl_tvos;
			productReference = 30B0604B1C6DDAEA00D46008 /* libwolfssl_tvos.a */;
			productType = "com.apple.product-type.library.static";
		};
		52B1344C16F3C9E800C07B32 /* wolfssl_ios */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 52B1347216F3C9E800C07B32 /* Build configuration list for PBXNativeTarget "wolfssl_ios" */;
			buildPhases = (
				52B1344A16F3C9E800C07B32 /* Frameworks */,
				52B1344B16F3C9E800C07B32 /* CopyFiles */,
				521646C11A8A7B380062516A /* CopyFiles */,
				700F0C8B2A2FBEB400755BA7 /* CopyFiles */,
				52B1344916F3C9E800C07B32 /* Sources */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = wolfssl_ios;
			productName = "wolfssl-ios";
			productReference = 52B1344D16F3C9E800C07B32 /* libwolfssl_ios.a */;
			productType = "com.apple.product-type.library.static";
		};
		A4F3184E1BC58B1700FDF2BB /* wolfssl_osx */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = A4F318EB1BC58B1700FDF2BB /* Build configuration list for PBXNativeTarget "wolfssl_osx" */;
			buildPhases = (
				A4F3187B1BC58B1700FDF2BB /* Frameworks */,
				A4F3187C1BC58B1700FDF2BB /* CopyFiles */,
				A4F318861BC58B1700FDF2BB /* CopyFiles */,
				A4F3184F1BC58B1700FDF2BB /* Sources */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = wolfssl_osx;
			productName = "wolfssl-osx";
			productReference = A4F318EE1BC58B1700FDF2BB /* libwolfssl_osx.a */;
			productType = "com.apple.product-type.library.static";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		52B1344516F3C9E800C07B32 /* Project object */ = {
			isa = PBXProject;
			attributes = {
				LastUpgradeCheck = 1010;
				ORGANIZATIONNAME = "wolfSSL Inc";
				TargetAttributes = {
					30B0604A1C6DDAEA00D46008 = {
						CreatedOnToolsVersion = 7.2.1;
					};
				};
			};
			buildConfigurationList = 52B1344816F3C9E800C07B32 /* Build configuration list for PBXProject "wolfssl" */;
			compatibilityVersion = "Xcode 3.2";
			developmentRegion = English;
			hasScannedForEncodings = 0;
			knownRegions = (
				English,
				en,
			);
			mainGroup = 52B1344416F3C9E800C07B32;
			productRefGroup = 52B1344E16F3C9E800C07B32 /* Products */;
			projectDirPath = "";
			projectRoot = "";
			targets = (
				52B1344C16F3C9E800C07B32 /* wolfssl_ios */,
				A4F3184E1BC58B1700FDF2BB /* wolfssl_osx */,
				30B0604A1C6DDAEA00D46008 /* wolfssl_tvos */,
			);
		};
/* End PBXProject section */

/* Begin PBXSourcesBuildPhase section */
		30B060471C6DDAEA00D46008 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				A4DAE34E2493F28C00CEF51F /* sp_arm32.c in Sources */,
				520775B42239AC3700087711 /* curve25519.c in Sources */,
				30B060541C6DDB2B00D46008 /* crl.c in Sources */,
				520775BA2239AC4600087711 /* ge_operations.c in Sources */,
				9D0105C4291CEA5000A854D3 /* armv8-aes-asm.S in Sources */,
				30B060551C6DDB2B00D46008 /* internal.c in Sources */,
				A4DAE3432493F21900CEF51F /* wc_dsp.c in Sources */,
				30B060561C6DDB2B00D46008 /* wolfio.c in Sources */,
				30B060571C6DDB2B00D46008 /* keys.c in Sources */,
				520775C62239B25A00087711 /* sha3.c in Sources */,
				30B060581C6DDB2B00D46008 /* ocsp.c in Sources */,
				520775B82239AC4600087711 /* fe_operations.c in Sources */,
				30B060591C6DDB2B00D46008 /* sniffer.c in Sources */,
				30B0605A1C6DDB2B00D46008 /* ssl.c in Sources */,
				9D0105C7291CEA5000A854D3 /* armv8-curve25519.S in Sources */,
				A4DAE3342493F21900CEF51F /* cryptocb.c in Sources */,
				520775A82239ABBE00087711 /* sp_x86_64.c in Sources */,
				30B0605B1C6DDB2B00D46008 /* tls.c in Sources */,
				30B0605C1C6DDB2B00D46008 /* aes.c in Sources */,
				30B0605D1C6DDB2B00D46008 /* arc4.c in Sources */,
				30B0605E1C6DDB2B00D46008 /* asn.c in Sources */,
				A4DAE3512493F29100CEF51F /* sp_arm64.c in Sources */,
				30B0605F1C6DDB2B00D46008 /* blake2b.c in Sources */,
				520775AE2239AC2100087711 /* signature.c in Sources */,
				30B060601C6DDB2B00D46008 /* camellia.c in Sources */,
				A4DAE31F2493F21900CEF51F /* ed448.c in Sources */,
				9D0105AF291CEA5000A854D3 /* armv8-sha256-asm.S in Sources */,
				30B060611C6DDB2B00D46008 /* chacha.c in Sources */,
				30B060621C6DDB2B00D46008 /* coding.c in Sources */,
				A4DAE31C2493F21900CEF51F /* srp.c in Sources */,
				30B060631C6DDB2B00D46008 /* des3.c in Sources */,
				A4DAE33D2493F21900CEF51F /* curve448.c in Sources */,
				30B060641C6DDB2B00D46008 /* dh.c in Sources */,
				30B060651C6DDB2B00D46008 /* dsa.c in Sources */,
				520775BC2239AC4600087711 /* fe_low_mem.c in Sources */,
				30B060661C6DDB2B00D46008 /* ecc.c in Sources */,
				A4DAE3402493F21900CEF51F /* ge_448.c in Sources */,
				A4DAE3532493F29500CEF51F /* sp_armthumb.c in Sources */,
				A4DAE3462493F21900CEF51F /* wc_pkcs11.c in Sources */,
				A4DAE3312493F21900CEF51F /* ecc_fp.c in Sources */,
				A4DAE3372493F21900CEF51F /* wolfevent.c in Sources */,
				30B060671C6DDB2B00D46008 /* error.c in Sources */,
				9D2E31CE291CDF120082B941 /* quic.c in Sources */,
				9D0105BE291CEA5000A854D3 /* armv8-chacha-asm.S in Sources */,
				520775AA2239ABBE00087711 /* sp_int.c in Sources */,
				30B060681C6DDB2B00D46008 /* hash.c in Sources */,
				6AC8512B272CAF2E00F2B32A /* kdf.c in Sources */,
				30B0606A1C6DDB2B00D46008 /* hmac.c in Sources */,
				9D0105B5291CEA5000A854D3 /* armv8-poly1305-asm.S in Sources */,
				A4DAE3572493F29E00CEF51F /* sp_dsp32.c in Sources */,
				A4DAE3282493F21900CEF51F /* fe_448.c in Sources */,
				30B0606B1C6DDB2B00D46008 /* integer.c in Sources */,
				520775AC2239ABCD00087711 /* chacha20_poly1305.c in Sources */,
				A4DAE3082493F1C700CEF51F /* tls13.c in Sources */,
				30B0606C1C6DDB2B00D46008 /* logging.c in Sources */,
				520775B22239AC3200087711 /* ed25519.c in Sources */,
				520775B02239AC2500087711 /* wolfmath.c in Sources */,
				9D2E31D5291CDF2E0082B941 /* dtls13.c in Sources */,
				30B0606D1C6DDB2B00D46008 /* md2.c in Sources */,
				30B0606E1C6DDB2B00D46008 /* md4.c in Sources */,
				520775B62239AC4600087711 /* ge_low_mem.c in Sources */,
				A4DAE32E2493F21900CEF51F /* cmac.c in Sources */,
				30B0606F1C6DDB2B00D46008 /* md5.c in Sources */,
				A4DAE3252493F21900CEF51F /* asm.c in Sources */,
				30B060701C6DDB2B00D46008 /* memory.c in Sources */,
				30B060721C6DDB2B00D46008 /* pkcs7.c in Sources */,
				30B060731C6DDB2B00D46008 /* poly1305.c in Sources */,
				30B060741C6DDB2B00D46008 /* pwdbased.c in Sources */,
				30B060761C6DDB2B00D46008 /* random.c in Sources */,
				30B060771C6DDB2B00D46008 /* ripemd.c in Sources */,
				30B060781C6DDB2B00D46008 /* rsa.c in Sources */,
				9D2E31D1291CDF120082B941 /* dtls.c in Sources */,
				9D0105BB291CEA5000A854D3 /* armv8-sha3-asm.S in Sources */,
				30B060791C6DDB2B00D46008 /* sha.c in Sources */,
				30B0607A1C6DDB2B00D46008 /* sha256.c in Sources */,
				A4DAE3492493F21900CEF51F /* blake2s.c in Sources */,
				A4DAE32B2493F21900CEF51F /* compress.c in Sources */,
				30B0607B1C6DDB2B00D46008 /* sha512.c in Sources */,
				A4DAE33A2493F21900CEF51F /* pkcs12.c in Sources */,
				520775A42239ABBE00087711 /* sp_c32.c in Sources */,
				520775A62239ABBE00087711 /* sp_c64.c in Sources */,
				A4DAE3552493F29B00CEF51F /* sp_cortexm.c in Sources */,
				30B0607C1C6DDB2B00D46008 /* tfm.c in Sources */,
				9D0105A9291CEA5000A854D3 /* armv8-sha512-asm.S in Sources */,
				A4DAE3222493F21900CEF51F /* cpuid.c in Sources */,
				30B0607D1C6DDB2B00D46008 /* wc_encrypt.c in Sources */,
				30B0607E1C6DDB2B00D46008 /* wc_port.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		52B1344916F3C9E800C07B32 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				A4E7E5952493E20500725359 /* sp_arm64.c in Sources */,
				A4DAE31D2493F21900CEF51F /* ed448.c in Sources */,
				520775B52239AC3700087711 /* curve25519.c in Sources */,
				A4DAE3442493F21900CEF51F /* wc_pkcs11.c in Sources */,
				9D0105C2291CEA5000A854D3 /* armv8-aes-asm.S in Sources */,
				5216463B1A8992CC0062516A /* dsa.c in Sources */,
				520775BB2239AC4600087711 /* ge_operations.c in Sources */,
				521646411A8992CC0062516A /* logging.c in Sources */,
				A4E7E5962493E20500725359 /* sp_arm32.c in Sources */,
				A4DAE3202493F21900CEF51F /* cpuid.c in Sources */,
				5216464E1A8992CC0062516A /* sha.c in Sources */,
				A4DAE3412493F21900CEF51F /* wc_dsp.c in Sources */,
				521646481A8992CC0062516A /* poly1305.c in Sources */,
				A4DAE32C2493F21900CEF51F /* cmac.c in Sources */,
				9D0105C5291CEA5000A854D3 /* armv8-curve25519.S in Sources */,
				520775C42239B25800087711 /* sha3.c in Sources */,
				5216463A1A8992CC0062516A /* dh.c in Sources */,
				520775B92239AC4600087711 /* fe_operations.c in Sources */,
				521646361A8992CC0062516A /* camellia.c in Sources */,
				521646521A8992CC0062516A /* wc_port.c in Sources */,
				520775A92239ABBE00087711 /* sp_x86_64.c in Sources */,
				521646491A8992CC0062516A /* pwdbased.c in Sources */,
				A4DAE3472493F21900CEF51F /* blake2s.c in Sources */,
				A4DAE31A2493F21900CEF51F /* srp.c in Sources */,
				521646341A8992CC0062516A /* asn.c in Sources */,
				521646501A8992CC0062516A /* sha512.c in Sources */,
				9D0105AD291CEA5000A854D3 /* armv8-sha256-asm.S in Sources */,
				520775AF2239AC2100087711 /* signature.c in Sources */,
				525BE5341B3869110054BBCD /* hash.c in Sources */,
				A4DAE33E2493F21900CEF51F /* ge_448.c in Sources */,
				521646441A8992CC0062516A /* md5.c in Sources */,
				5216460F1A89928E0062516A /* ssl.c in Sources */,
				5216464D1A8992CC0062516A /* rsa.c in Sources */,
				5216464B1A8992CC0062516A /* random.c in Sources */,
				A4DAE3062493F1C700CEF51F /* tls13.c in Sources */,
				522DBE0D1B7926FB0031F454 /* wc_encrypt.c in Sources */,
				520775BD2239AC4600087711 /* fe_low_mem.c in Sources */,
				521646101A89928E0062516A /* tls.c in Sources */,
				5216460D1A89928E0062516A /* ocsp.c in Sources */,
				A4DAE3232493F21900CEF51F /* asm.c in Sources */,
				A4DAE3262493F21900CEF51F /* fe_448.c in Sources */,
				520775AB2239ABBE00087711 /* sp_int.c in Sources */,
				9D2E31CC291CDF120082B941 /* quic.c in Sources */,
				9D0105BC291CEA5000A854D3 /* armv8-chacha-asm.S in Sources */,
				521646431A8992CC0062516A /* md4.c in Sources */,
				521646321A8992CC0062516A /* aes.c in Sources */,
				6AC85129272CAF2E00F2B32A /* kdf.c in Sources */,
				521646391A8992CC0062516A /* des3.c in Sources */,
				9D0105B3291CEA5000A854D3 /* armv8-poly1305-asm.S in Sources */,
				521646351A8992CC0062516A /* blake2b.c in Sources */,
				520775AD2239ABCD00087711 /* chacha20_poly1305.c in Sources */,
				A4E7E5992493E20500725359 /* sp_armthumb.c in Sources */,
				A4DAE32F2493F21900CEF51F /* ecc_fp.c in Sources */,
				5216464C1A8992CC0062516A /* ripemd.c in Sources */,
				A4DAE3322493F21900CEF51F /* cryptocb.c in Sources */,
				520775B32239AC3200087711 /* ed25519.c in Sources */,
				520775B12239AC2500087711 /* wolfmath.c in Sources */,
				9D2E31D3291CDF2E0082B941 /* dtls13.c in Sources */,
				521646451A8992CC0062516A /* memory.c in Sources */,
				A4DAE3382493F21900CEF51F /* pkcs12.c in Sources */,
				5216463C1A8992CC0062516A /* ecc.c in Sources */,
				A4DAE3292493F21900CEF51F /* compress.c in Sources */,
				520775B72239AC4600087711 /* ge_low_mem.c in Sources */,
				5216464F1A8992CC0062516A /* sha256.c in Sources */,
				A4E7E5982493E20500725359 /* sp_cortexm.c in Sources */,
				521646371A8992CC0062516A /* chacha.c in Sources */,
				A4E7E5972493E20500725359 /* sp_dsp32.c in Sources */,
				521646471A8992CC0062516A /* pkcs7.c in Sources */,
				5216460E1A89928E0062516A /* sniffer.c in Sources */,
				521646421A8992CC0062516A /* md2.c in Sources */,
				521646381A8992CC0062516A /* coding.c in Sources */,
				9D2E31CF291CDF120082B941 /* dtls.c in Sources */,
				9D0105B9291CEA5000A854D3 /* armv8-sha3-asm.S in Sources */,
				5216463D1A8992CC0062516A /* error.c in Sources */,
				5216463F1A8992CC0062516A /* hmac.c in Sources */,
				A4DAE3352493F21900CEF51F /* wolfevent.c in Sources */,
				521646331A8992CC0062516A /* arc4.c in Sources */,
				521646401A8992CC0062516A /* integer.c in Sources */,
				A4DAE33B2493F21900CEF51F /* curve448.c in Sources */,
				5216460A1A89928E0062516A /* internal.c in Sources */,
				5216460B1A89928E0062516A /* wolfio.c in Sources */,
				520775A52239ABBE00087711 /* sp_c32.c in Sources */,
				520775A72239ABBE00087711 /* sp_c64.c in Sources */,
				9D0105A7291CEA5000A854D3 /* armv8-sha512-asm.S in Sources */,
				521646511A8992CC0062516A /* tfm.c in Sources */,
				521646091A89928E0062516A /* crl.c in Sources */,
				5216460C1A89928E0062516A /* keys.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		A4F3184F1BC58B1700FDF2BB /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				A4DAE34D2493F28B00CEF51F /* sp_arm32.c in Sources */,
				A4F318661BC58B1700FDF2BB /* aes.c in Sources */,
				A4F318741BC58B1700FDF2BB /* arc4.c in Sources */,
				A4F3185A1BC58B1700FDF2BB /* asn.c in Sources */,
				9D0105C3291CEA5000A854D3 /* armv8-aes-asm.S in Sources */,
				A4F318681BC58B1700FDF2BB /* blake2b.c in Sources */,
				A4DAE3422493F21900CEF51F /* wc_dsp.c in Sources */,
				A4F318551BC58B1700FDF2BB /* camellia.c in Sources */,
				A4F3186D1BC58B1700FDF2BB /* chacha.c in Sources */,
				520775C52239B25900087711 /* sha3.c in Sources */,
				1E8BEB7B212F4CF90063DCC1 /* chacha20_poly1305.c in Sources */,
				A4F318711BC58B1700FDF2BB /* coding.c in Sources */,
				A4F318791BC58B1700FDF2BB /* crl.c in Sources */,
				1E8BEB79212F4CF90063DCC1 /* curve25519.c in Sources */,
				9D0105C6291CEA5000A854D3 /* armv8-curve25519.S in Sources */,
				A4DAE3332493F21900CEF51F /* cryptocb.c in Sources */,
				A4F318671BC58B1700FDF2BB /* des3.c in Sources */,
				A4F318541BC58B1700FDF2BB /* dh.c in Sources */,
				A4F318501BC58B1700FDF2BB /* dsa.c in Sources */,
				A4F3186B1BC58B1700FDF2BB /* ecc.c in Sources */,
				1E8BEB7A212F4CF90063DCC1 /* ed25519.c in Sources */,
				A4DAE3502493F29100CEF51F /* sp_arm64.c in Sources */,
				A4F318721BC58B1700FDF2BB /* error.c in Sources */,
				1E8BEB87212F4F010063DCC1 /* fe_low_mem.c in Sources */,
				1E8BEB86212F4F010063DCC1 /* fe_operations.c in Sources */,
				A4DAE31E2493F21900CEF51F /* ed448.c in Sources */,
				9D0105AE291CEA5000A854D3 /* armv8-sha256-asm.S in Sources */,
				1E8BEB83212F4E330063DCC1 /* ge_low_mem.c in Sources */,
				1E8BEB82212F4E330063DCC1 /* ge_operations.c in Sources */,
				A4DAE31B2493F21900CEF51F /* srp.c in Sources */,
				A4F3185D1BC58B1700FDF2BB /* hash.c in Sources */,
				A4DAE33C2493F21900CEF51F /* curve448.c in Sources */,
				A4F318731BC58B1700FDF2BB /* hmac.c in Sources */,
				A4F318751BC58B1700FDF2BB /* integer.c in Sources */,
				A4F318761BC58B1700FDF2BB /* internal.c in Sources */,
				A4DAE33F2493F21900CEF51F /* ge_448.c in Sources */,
				A4DAE3522493F29500CEF51F /* sp_armthumb.c in Sources */,
				A4DAE3452493F21900CEF51F /* wc_pkcs11.c in Sources */,
				A4DAE3302493F21900CEF51F /* ecc_fp.c in Sources */,
				A4DAE3362493F21900CEF51F /* wolfevent.c in Sources */,
				A4F3187A1BC58B1700FDF2BB /* keys.c in Sources */,
				A4F318511BC58B1700FDF2BB /* logging.c in Sources */,
				9D2E31CD291CDF120082B941 /* quic.c in Sources */,
				9D0105BD291CEA5000A854D3 /* armv8-chacha-asm.S in Sources */,
				A4F318701BC58B1700FDF2BB /* md2.c in Sources */,
				A4F318651BC58B1700FDF2BB /* md4.c in Sources */,
				6AC8512A272CAF2E00F2B32A /* kdf.c in Sources */,
				A4F3185E1BC58B1700FDF2BB /* md5.c in Sources */,
				9D0105B4291CEA5000A854D3 /* armv8-poly1305-asm.S in Sources */,
				A4DAE3562493F29E00CEF51F /* sp_dsp32.c in Sources */,
				A4DAE3272493F21900CEF51F /* fe_448.c in Sources */,
				A4F3186A1BC58B1700FDF2BB /* memory.c in Sources */,
				A4F318641BC58B1700FDF2BB /* ocsp.c in Sources */,
				A4DAE3072493F1C700CEF51F /* tls13.c in Sources */,
				A4F318531BC58B1700FDF2BB /* poly1305.c in Sources */,
				A4F318571BC58B1700FDF2BB /* pwdbased.c in Sources */,
				A4F3186E1BC58B1700FDF2BB /* pkcs7.c in Sources */,
				9D2E31D4291CDF2E0082B941 /* dtls13.c in Sources */,
				520775A32239ABBE00087711 /* sp_c32.c in Sources */,
				A4F318611BC58B1700FDF2BB /* random.c in Sources */,
				A4DAE32D2493F21900CEF51F /* cmac.c in Sources */,
				A4F318691BC58B1700FDF2BB /* ripemd.c in Sources */,
				A4DAE3242493F21900CEF51F /* asm.c in Sources */,
				A4F318601BC58B1700FDF2BB /* rsa.c in Sources */,
				A4F318521BC58B1700FDF2BB /* sha.c in Sources */,
				A4F3186C1BC58B1700FDF2BB /* sha256.c in Sources */,
				A4F3185B1BC58B1700FDF2BB /* sha512.c in Sources */,
				1E8BEB7D212F4D960063DCC1 /* signature.c in Sources */,
				A4F3186F1BC58B1700FDF2BB /* sniffer.c in Sources */,
				1E8BEB72212F4C340063DCC1 /* sp_c64.c in Sources */,
				1E8BEB71212F4C340063DCC1 /* sp_int.c in Sources */,
				9D2E31D0291CDF120082B941 /* dtls.c in Sources */,
				9D0105BA291CEA5000A854D3 /* armv8-sha3-asm.S in Sources */,
				1E8BEB6D212F4AA10063DCC1 /* sp_x86_64.c in Sources */,
				A4F3185F1BC58B1700FDF2BB /* ssl.c in Sources */,
				A4DAE3482493F21900CEF51F /* blake2s.c in Sources */,
				A4DAE32A2493F21900CEF51F /* compress.c in Sources */,
				A4F318781BC58B1700FDF2BB /* tfm.c in Sources */,
				A4DAE3392493F21900CEF51F /* pkcs12.c in Sources */,
				A4F318631BC58B1700FDF2BB /* tls.c in Sources */,
				A4F318621BC58B1700FDF2BB /* wc_encrypt.c in Sources */,
				A4DAE3542493F29B00CEF51F /* sp_cortexm.c in Sources */,
				A4F318561BC58B1700FDF2BB /* wc_port.c in Sources */,
				9D0105A8291CEA5000A854D3 /* armv8-sha512-asm.S in Sources */,
				A4DAE3212493F21900CEF51F /* cpuid.c in Sources */,
				A4F318771BC58B1700FDF2BB /* wolfio.c in Sources */,
				1E8BEB7F212F4DD00063DCC1 /* wolfmath.c in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin XCBuildConfiguration section */
		30B060511C6DDAEA00D46008 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = YES;
				CLANG_ENABLE_MODULES = YES;
				CLANG_ENABLE_OBJC_ARC = YES;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
				CLANG_WARN_UNREACHABLE_CODE = YES;
				DEBUG_INFORMATION_FORMAT = dwarf;
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				ENABLE_TESTABILITY = YES;
				GCC_NO_COMMON_BLOCKS = YES;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
				GCC_WARN_UNUSED_FUNCTION = YES;
				HEADER_SEARCH_PATHS = (
					$SRCROOT,
					$PROJECT_DIR/../..,
				);
				MTL_ENABLE_DEBUG_INFO = YES;
				OTHER_LDFLAGS = "-ObjC";
				PRODUCT_NAME = "$(TARGET_NAME)";
				SDKROOT = appletvos;
				SKIP_INSTALL = YES;
				TVOS_DEPLOYMENT_TARGET = 9.1;
				USER_HEADER_SEARCH_PATHS = "wolfssl/wolfcrypt wolfssl";
			};
			name = Debug;
		};
		30B060521C6DDAEA00D46008 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = YES;
				CLANG_ENABLE_MODULES = YES;
				CLANG_ENABLE_OBJC_ARC = YES;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
				CLANG_WARN_UNREACHABLE_CODE = YES;
				COPY_PHASE_STRIP = NO;
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				ENABLE_NS_ASSERTIONS = NO;
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				GCC_NO_COMMON_BLOCKS = YES;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
				GCC_WARN_UNUSED_FUNCTION = YES;
				HEADER_SEARCH_PATHS = (
					$SRCROOT,
					$PROJECT_DIR/../..,
				);
				MTL_ENABLE_DEBUG_INFO = NO;
				OTHER_LDFLAGS = "-ObjC";
				PRODUCT_NAME = "$(TARGET_NAME)";
				SDKROOT = appletvos;
				SKIP_INSTALL = YES;
				TVOS_DEPLOYMENT_TARGET = 9.1;
				USER_HEADER_SEARCH_PATHS = "wolfssl/wolfcrypt wolfssl";
				VALIDATE_PRODUCT = YES;
			};
			name = Release;
		};
		52B1347016F3C9E800C07B32 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_CXX_LIBRARY = "libc++";
				CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_COMMA = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INFINITE_RECURSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
				CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
				CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
				CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
				CLANG_WARN_STRICT_PROTOTYPES = YES;
				CLANG_WARN_SUSPICIOUS_MOVE = YES;
				CLANG_WARN_UNREACHABLE_CODE = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
				COPY_PHASE_STRIP = NO;
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				ENABLE_TESTABILITY = YES;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_NO_COMMON_BLOCKS = YES;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"DEBUG=1",
					"$(inherited)",
				);
				GCC_SYMBOLS_PRIVATE_EXTERN = NO;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				ONLY_ACTIVE_ARCH = YES;
				PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = NO;
				SDKROOT = iphoneos;
				USER_HEADER_SEARCH_PATHS = "wolfssl/wolfcrypt wolfssl include";
			};
			name = Debug;
		};
		52B1347116F3C9E800C07B32 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_CXX_LIBRARY = "libc++";
				CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_COMMA = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INFINITE_RECURSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
				CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
				CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
				CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
				CLANG_WARN_STRICT_PROTOTYPES = YES;
				CLANG_WARN_SUSPICIOUS_MOVE = YES;
				CLANG_WARN_UNREACHABLE_CODE = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
				COPY_PHASE_STRIP = YES;
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_NO_COMMON_BLOCKS = YES;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = NO;
				SDKROOT = iphoneos;
				USER_HEADER_SEARCH_PATHS = "wolfssl/wolfcrypt wolfssl include";
				VALIDATE_PRODUCT = NO;
			};
			name = Release;
		};
		52B1347316F3C9E800C07B32 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				CLANG_ENABLE_OBJC_WEAK = YES;
				CLANG_LINK_OBJC_RUNTIME = NO;
				DSTROOT = /tmp/wolfssl_ios.dst;
				GCC_PRECOMPILE_PREFIX_HEADER = NO;
				GCC_PREFIX_HEADER = "";
				GCC_PREPROCESSOR_DEFINITIONS = (
					"$(inherited)",
					WOLFSSL_USER_SETTINGS,
				);
				HEADER_SEARCH_PATHS = (
					$SRCROOT,
					$PROJECT_DIR/../..,
				);
				LIBRARY_SEARCH_PATHS = (
					"$(inherited)",
					"$(PROJECT_DIR)/DerivedData/wolfssl/Build/Products/Debug",
				);
				OTHER_LDFLAGS = "";
				PRODUCT_NAME = wolfssl_ios;
				SKIP_INSTALL = YES;
				TARGETED_DEVICE_FAMILY = "1,2";
				USER_HEADER_SEARCH_PATHS = "wolfssl/wolfcrypt wolfssl";
			};
			name = Debug;
		};
		52B1347416F3C9E800C07B32 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				CLANG_ENABLE_OBJC_WEAK = YES;
				CLANG_LINK_OBJC_RUNTIME = NO;
				DSTROOT = /tmp/wolfssl_ios.dst;
				GCC_PRECOMPILE_PREFIX_HEADER = NO;
				GCC_PREFIX_HEADER = "";
				GCC_PREPROCESSOR_DEFINITIONS = WOLFSSL_USER_SETTINGS;
				HEADER_SEARCH_PATHS = (
					$SRCROOT,
					$PROJECT_DIR/../..,
				);
				LIBRARY_SEARCH_PATHS = (
					"$(inherited)",
					"$(PROJECT_DIR)/DerivedData/wolfssl/Build/Products/Debug",
				);
				OTHER_LDFLAGS = "";
				PRODUCT_NAME = wolfssl_ios;
				SKIP_INSTALL = YES;
				TARGETED_DEVICE_FAMILY = "1,2";
				USER_HEADER_SEARCH_PATHS = "wolfssl/wolfcrypt wolfssl";
			};
			name = Release;
		};
		A4F318EC1BC58B1700FDF2BB /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = YES;
				CLANG_ENABLE_OBJC_WEAK = YES;
				CLANG_LINK_OBJC_RUNTIME = NO;
				DSTROOT = /tmp/wolfssl_osx.dst;
				GCC_PRECOMPILE_PREFIX_HEADER = NO;
				GCC_PREFIX_HEADER = "";
				GCC_PREPROCESSOR_DEFINITIONS = (
					"$(inherited)",
					WOLFSSL_USER_SETTINGS,
				);
				HEADER_SEARCH_PATHS = (
					$SRCROOT,
					$PROJECT_DIR/../..,
				);
				OTHER_LDFLAGS = "";
				PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = NO;
				PRODUCT_NAME = "$(TARGET_NAME)";
				SDKROOT = macosx;
				SKIP_INSTALL = YES;
				SYMROOT = $PROJECT_DIR/Build/Products;
				TARGETED_DEVICE_FAMILY = "1,2";
				USER_HEADER_SEARCH_PATHS = "wolfssl/wolfcrypt wolfssl";
			};
			name = Debug;
		};
		A4F318ED1BC58B1700FDF2BB /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = YES;
				CLANG_ENABLE_OBJC_WEAK = YES;
				CLANG_LINK_OBJC_RUNTIME = NO;
				DSTROOT = /tmp/wolfssl_osx.dst;
				GCC_PRECOMPILE_PREFIX_HEADER = NO;
				GCC_PREFIX_HEADER = "";
				GCC_PREPROCESSOR_DEFINITIONS = WOLFSSL_USER_SETTINGS;
				HEADER_SEARCH_PATHS = (
					$SRCROOT,
					$PROJECT_DIR/../..,
				);
				OTHER_LDFLAGS = "";
				PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = NO;
				PRODUCT_NAME = "$(TARGET_NAME)";
				SDKROOT = macosx;
				SKIP_INSTALL = YES;
				SYMROOT = $PROJECT_DIR/Build/Products;
				TARGETED_DEVICE_FAMILY = "1,2";
				USER_HEADER_SEARCH_PATHS = "wolfssl/wolfcrypt wolfssl";
			};
			name = Release;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		30B060531C6DDAEA00D46008 /* Build configuration list for PBXNativeTarget "wolfssl_tvos" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				30B060511C6DDAEA00D46008 /* Debug */,
				30B060521C6DDAEA00D46008 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		52B1344816F3C9E800C07B32 /* Build configuration list for PBXProject "wolfssl" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				52B1347016F3C9E800C07B32 /* Debug */,
				52B1347116F3C9E800C07B32 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		52B1347216F3C9E800C07B32 /* Build configuration list for PBXNativeTarget "wolfssl_ios" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				52B1347316F3C9E800C07B32 /* Debug */,
				52B1347416F3C9E800C07B32 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		A4F318EB1BC58B1700FDF2BB /* Build configuration list for PBXNativeTarget "wolfssl_osx" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				A4F318EC1BC58B1700FDF2BB /* Debug */,
				A4F318ED1BC58B1700FDF2BB /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */
	};
	rootObject = 52B1344516F3C9E800C07B32 /* Project object */;
}