IDE/XCODE: include dtls.c/dtls13.c/tls13.c/quic.c/kdf.c in projects

pull/5790/head
Per Allansson 2022-11-10 09:44:01 +01:00
parent c573ba9864
commit 364b2ddc8f
No known key found for this signature in database
GPG Key ID: 6471ED8DCBA4FB89
3 changed files with 65 additions and 1 deletions

View File

@ -8,6 +8,10 @@
/* Begin PBXBuildFile section */
52114C8721B5A7320022ADA1 /* sp_c64.c in Sources */ = {isa = PBXBuildFile; fileRef = 52114C8621B5A7320022ADA1 /* sp_c64.c */; };
9D2E31E4291CE4800082B941 /* quic.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D2E31E2291CE4800082B941 /* quic.c */; };
9D2E31E5291CE4800082B941 /* dtls.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D2E31E3291CE4800082B941 /* dtls.c */; };
9D2E31E7291CE4AC0082B941 /* dtls13.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D2E31E6291CE4AC0082B941 /* dtls13.c */; };
9D2E31E9291CE5CB0082B941 /* kdf.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D2E31E8291CE5CB0082B941 /* kdf.c */; };
A46FE16F2493E8F800A25BE7 /* armv8-chacha.c in Sources */ = {isa = PBXBuildFile; fileRef = A46FE14C2493E8F500A25BE7 /* armv8-chacha.c */; };
A46FE1702493E8F800A25BE7 /* sp_int.c in Sources */ = {isa = PBXBuildFile; fileRef = A46FE14D2493E8F600A25BE7 /* sp_int.c */; };
A46FE1742493E8F800A25BE7 /* sp_cortexm.c in Sources */ = {isa = PBXBuildFile; fileRef = A46FE1512493E8F600A25BE7 /* sp_cortexm.c */; };
@ -103,6 +107,10 @@
/* Begin PBXFileReference section */
52114C8621B5A7320022ADA1 /* sp_c64.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = sp_c64.c; path = ../../../wolfcrypt/src/sp_c64.c; sourceTree = "<group>"; };
9D2E31E2291CE4800082B941 /* quic.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = quic.c; path = ../../../src/quic.c; sourceTree = "<group>"; };
9D2E31E3291CE4800082B941 /* dtls.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = dtls.c; path = ../../../src/dtls.c; sourceTree = "<group>"; };
9D2E31E6291CE4AC0082B941 /* dtls13.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = dtls13.c; path = ../../../src/dtls13.c; sourceTree = "<group>"; };
9D2E31E8291CE5CB0082B941 /* kdf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = kdf.c; path = ../../../wolfcrypt/src/kdf.c; sourceTree = "<group>"; };
A46FE14C2493E8F500A25BE7 /* armv8-chacha.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = "armv8-chacha.c"; path = "../../../wolfcrypt/src/port/arm/armv8-chacha.c"; sourceTree = "<group>"; };
A46FE14D2493E8F600A25BE7 /* sp_int.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = sp_int.c; path = ../../../wolfcrypt/src/sp_int.c; sourceTree = "<group>"; };
A46FE1512493E8F600A25BE7 /* sp_cortexm.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = sp_cortexm.c; path = ../../../wolfcrypt/src/sp_cortexm.c; sourceTree = "<group>"; };
@ -253,9 +261,12 @@
A4DFEC3A1FD6B9B600A7BB33 /* test */,
A4DFEC0B1FD4CA8300A7BB33 /* benchmark */,
A4ADF8681FCE0C1C00A06E90 /* crl.c */,
9D2E31E3291CE4800082B941 /* dtls.c */,
9D2E31E6291CE4AC0082B941 /* dtls13.c */,
A4ADF8621FCE0C1B00A06E90 /* internal.c */,
A4ADF8611FCE0C1B00A06E90 /* keys.c */,
A4ADF8641FCE0C1C00A06E90 /* ocsp.c */,
9D2E31E2291CE4800082B941 /* quic.c */,
A4ADF8671FCE0C1C00A06E90 /* sniffer.c */,
A4ADF86A1FCE0C1C00A06E90 /* ssl.c */,
A4ADF8661FCE0C1C00A06E90 /* tls.c */,
@ -309,6 +320,7 @@
A4ADF89A1FCE0C4F00A06E90 /* hash.c */,
A4ADF8751FCE0C4C00A06E90 /* hmac.c */,
A4ADF8A21FCE0C5000A06E90 /* integer.c */,
9D2E31E8291CE5CB0082B941 /* kdf.c */,
A4ADF8AF1FCE0C5100A06E90 /* logging.c */,
A4ADF8A51FCE0C5000A06E90 /* md2.c */,
A4ADF87C1FCE0C4D00A06E90 /* md4.c */,
@ -447,6 +459,7 @@
A4ADF91B1FCE0C5600A06E90 /* srp.c in Sources */,
A46FE16F2493E8F800A25BE7 /* armv8-chacha.c in Sources */,
A4ADF8FE1FCE0C5600A06E90 /* integer.c in Sources */,
9D2E31E5291CE4800082B941 /* dtls.c in Sources */,
A4ADF9231FCE0C5600A06E90 /* camellia.c in Sources */,
A4ADF8321FCE0BD300A06E90 /* ViewController.m in Sources */,
A46FE17A2493E8F800A25BE7 /* cryptocb.c in Sources */,
@ -460,6 +473,7 @@
CB81DE1F24C93EC000B98DA6 /* armv8-curve25519.S in Sources */,
A4ADF8F31FCE0C5600A06E90 /* rsa.c in Sources */,
A46FE1752493E8F800A25BE7 /* blake2s.c in Sources */,
9D2E31E9291CE5CB0082B941 /* kdf.c in Sources */,
A4ADF8FA1FCE0C5600A06E90 /* pkcs12.c in Sources */,
A4ADF86E1FCE0C1C00A06E90 /* ocsp.c in Sources */,
A46FE1842493E8F800A25BE7 /* sp_x86_64.c in Sources */,
@ -479,7 +493,9 @@
A4ADF8E51FCE0C5600A06E90 /* sha.c in Sources */,
A4DFEC101FD4CB8500A7BB33 /* armv8-sha256.c in Sources */,
A4ADF83D1FCE0BD300A06E90 /* main.m in Sources */,
9D2E31E4291CE4800082B941 /* quic.c in Sources */,
A4ADF9271FCE0C5600A06E90 /* ed25519.c in Sources */,
9D2E31E7291CE4AC0082B941 /* dtls13.c in Sources */,
A4ADF8D11FCE0C5600A06E90 /* hmac.c in Sources */,
A4ADF8F01FCE0C5600A06E90 /* memory.c in Sources */,
A4ADF82F1FCE0BD300A06E90 /* AppDelegate.m in Sources */,

View File

@ -165,6 +165,14 @@
525BE5BC1B3885750054BBCD /* hash.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = 525BE5BB1B3885580054BBCD /* hash.h */; };
6AC85136272CAFEC00F2B32A /* kdf.c in Sources */ = {isa = PBXBuildFile; fileRef = 6AC85135272CAFEC00F2B32A /* kdf.c */; };
6AC85137272CAFEC00F2B32A /* kdf.c in Sources */ = {isa = PBXBuildFile; fileRef = 6AC85135272CAFEC00F2B32A /* kdf.c */; };
9D2E31D7291CE2190082B941 /* dtls13.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D2E31D6291CE2190082B941 /* dtls13.c */; };
9D2E31D8291CE2190082B941 /* dtls13.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D2E31D6291CE2190082B941 /* dtls13.c */; };
9D2E31DA291CE2370082B941 /* dtls.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D2E31D9291CE2370082B941 /* dtls.c */; };
9D2E31DB291CE2370082B941 /* dtls.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D2E31D9291CE2370082B941 /* dtls.c */; };
9D2E31DE291CE2740082B941 /* quic.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D2E31DC291CE2740082B941 /* quic.c */; };
9D2E31DF291CE2740082B941 /* quic.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D2E31DC291CE2740082B941 /* quic.c */; };
9D2E31E0291CE2740082B941 /* tls13.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D2E31DD291CE2740082B941 /* tls13.c */; };
9D2E31E1291CE2740082B941 /* tls13.c in Sources */ = {isa = PBXBuildFile; fileRef = 9D2E31DD291CE2740082B941 /* tls13.c */; };
A4A54DF71BC5C3E0002866CD /* wolfcrypt_first.c in Sources */ = {isa = PBXBuildFile; fileRef = 5216481B1A8AC2990062516A /* wolfcrypt_first.c */; };
A4A54DF81BC5C3E0002866CD /* hmac.c in Sources */ = {isa = PBXBuildFile; fileRef = 521648141A8AC2990062516A /* hmac.c */; };
A4A54DF91BC5C3E0002866CD /* random.c in Sources */ = {isa = PBXBuildFile; fileRef = 521648161A8AC2990062516A /* random.c */; };
@ -764,6 +772,10 @@
52B1344D16F3C9E800C07B32 /* libwolfssl_fips_ios.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libwolfssl_fips_ios.a; sourceTree = BUILT_PRODUCTS_DIR; };
6AC85135272CAFEC00F2B32A /* kdf.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = kdf.c; path = ../../wolfcrypt/src/kdf.c; sourceTree = "<group>"; };
6AC8513A272CB01200F2B32A /* kdf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = kdf.h; path = ../../wolfssl/wolfcrypt/kdf.h; sourceTree = "<group>"; };
9D2E31D6291CE2190082B941 /* dtls13.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = dtls13.c; path = ../../src/dtls13.c; sourceTree = "<group>"; };
9D2E31D9291CE2370082B941 /* dtls.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = dtls.c; path = ../../src/dtls.c; sourceTree = "<group>"; };
9D2E31DC291CE2740082B941 /* quic.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = quic.c; path = ../../src/quic.c; sourceTree = "<group>"; };
9D2E31DD291CE2740082B941 /* tls13.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = tls13.c; path = ../../src/tls13.c; sourceTree = "<group>"; };
A4A54DF41BC5C380002866CD /* user_settings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = user_settings.h; sourceTree = "<group>"; };
A4A54EA11BC5C3E0002866CD /* libwolfssl_fips_osx.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libwolfssl_fips_osx.a; sourceTree = BUILT_PRODUCTS_DIR; };
/* End PBXFileReference section */
@ -985,13 +997,17 @@
isa = PBXGroup;
children = (
521646011A89928E0062516A /* crl.c */,
9D2E31D9291CE2370082B941 /* dtls.c */,
9D2E31D6291CE2190082B941 /* dtls13.c */,
521646021A89928E0062516A /* internal.c */,
521646031A89928E0062516A /* wolfio.c */,
521646041A89928E0062516A /* keys.c */,
521646051A89928E0062516A /* ocsp.c */,
9D2E31DC291CE2740082B941 /* quic.c */,
521646061A89928E0062516A /* sniffer.c */,
521646071A89928E0062516A /* ssl.c */,
521646081A89928E0062516A /* tls.c */,
9D2E31DD291CE2740082B941 /* tls13.c */,
521646031A89928E0062516A /* wolfio.c */,
);
name = wolfSSL;
sourceTree = SOURCE_ROOT;
@ -1115,11 +1131,13 @@
521648261A8AC2990062516A /* sha256.c in Sources */,
521648241A8AC2990062516A /* rsa.c in Sources */,
5216481D1A8AC2990062516A /* aes.c in Sources */,
9D2E31DA291CE2370082B941 /* dtls.c in Sources */,
5216481E1A8AC2990062516A /* des3.c in Sources */,
525BE5BA1B38853E0054BBCD /* hash.c in Sources */,
521648251A8AC2990062516A /* sha.c in Sources */,
521648271A8AC2990062516A /* sha512.c in Sources */,
521648201A8AC2990062516A /* fips.c in Sources */,
9D2E31DE291CE2740082B941 /* quic.c in Sources */,
5216481F1A8AC2990062516A /* fips_test.c in Sources */,
521648291A8AC2990062516A /* wolfcrypt_last.c in Sources */,
5216463B1A8992CC0062516A /* dsa.c in Sources */,
@ -1130,6 +1148,7 @@
521646361A8992CC0062516A /* camellia.c in Sources */,
521646521A8992CC0062516A /* wc_port.c in Sources */,
521646491A8992CC0062516A /* pwdbased.c in Sources */,
9D2E31E0291CE2740082B941 /* tls13.c in Sources */,
521646461A8992CC0062516A /* misc.c in Sources */,
521646341A8992CC0062516A /* asn.c in Sources */,
521646501A8992CC0062516A /* sha512.c in Sources */,
@ -1141,6 +1160,7 @@
5216460D1A89928E0062516A /* ocsp.c in Sources */,
521646431A8992CC0062516A /* md4.c in Sources */,
521646321A8992CC0062516A /* aes.c in Sources */,
9D2E31D7291CE2190082B941 /* dtls13.c in Sources */,
521646391A8992CC0062516A /* des3.c in Sources */,
521646351A8992CC0062516A /* blake2b.c in Sources */,
5216464C1A8992CC0062516A /* ripemd.c in Sources */,
@ -1176,11 +1196,13 @@
A4A54DFA1BC5C3E0002866CD /* sha256.c in Sources */,
A4A54DFB1BC5C3E0002866CD /* rsa.c in Sources */,
A4A54DFC1BC5C3E0002866CD /* aes.c in Sources */,
9D2E31DB291CE2370082B941 /* dtls.c in Sources */,
A4A54DFD1BC5C3E0002866CD /* des3.c in Sources */,
A4A54DFE1BC5C3E0002866CD /* hash.c in Sources */,
A4A54DFF1BC5C3E0002866CD /* sha.c in Sources */,
A4A54E001BC5C3E0002866CD /* sha512.c in Sources */,
A4A54E011BC5C3E0002866CD /* fips.c in Sources */,
9D2E31DF291CE2740082B941 /* quic.c in Sources */,
A4A54E021BC5C3E0002866CD /* fips_test.c in Sources */,
A4A54E031BC5C3E0002866CD /* wolfcrypt_last.c in Sources */,
A4A54E041BC5C3E0002866CD /* dsa.c in Sources */,
@ -1191,6 +1213,7 @@
A4A54E091BC5C3E0002866CD /* camellia.c in Sources */,
A4A54E0A1BC5C3E0002866CD /* wc_port.c in Sources */,
A4A54E0B1BC5C3E0002866CD /* pwdbased.c in Sources */,
9D2E31E1291CE2740082B941 /* tls13.c in Sources */,
A4A54E0C1BC5C3E0002866CD /* misc.c in Sources */,
A4A54E0E1BC5C3E0002866CD /* asn.c in Sources */,
A4A54E0F1BC5C3E0002866CD /* sha512.c in Sources */,
@ -1202,6 +1225,7 @@
A4A54E161BC5C3E0002866CD /* ocsp.c in Sources */,
A4A54E171BC5C3E0002866CD /* md4.c in Sources */,
A4A54E181BC5C3E0002866CD /* aes.c in Sources */,
9D2E31D8291CE2190082B941 /* dtls13.c in Sources */,
A4A54E191BC5C3E0002866CD /* des3.c in Sources */,
A4A54E1A1BC5C3E0002866CD /* blake2b.c in Sources */,
A4A54E1B1BC5C3E0002866CD /* ripemd.c in Sources */,

View File

@ -347,6 +347,15 @@
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 */; };
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 */; };
@ -1153,6 +1162,9 @@
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>"; };
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>"; };
@ -1440,9 +1452,12 @@
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 */,
@ -1612,6 +1627,7 @@
A4DAE3312493F21900CEF51F /* ecc_fp.c in Sources */,
A4DAE3372493F21900CEF51F /* wolfevent.c in Sources */,
30B060671C6DDB2B00D46008 /* error.c in Sources */,
9D2E31CE291CDF120082B941 /* quic.c in Sources */,
520775AA2239ABBE00087711 /* sp_int.c in Sources */,
30B060681C6DDB2B00D46008 /* hash.c in Sources */,
6AC8512B272CAF2E00F2B32A /* kdf.c in Sources */,
@ -1624,6 +1640,7 @@
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 */,
@ -1637,6 +1654,7 @@
30B060761C6DDB2B00D46008 /* random.c in Sources */,
30B060771C6DDB2B00D46008 /* ripemd.c in Sources */,
30B060781C6DDB2B00D46008 /* rsa.c in Sources */,
9D2E31D1291CDF120082B941 /* dtls.c in Sources */,
30B060791C6DDB2B00D46008 /* sha.c in Sources */,
30B0607A1C6DDB2B00D46008 /* sha256.c in Sources */,
A4DAE3492493F21900CEF51F /* blake2s.c in Sources */,
@ -1696,6 +1714,7 @@
A4DAE3232493F21900CEF51F /* asm.c in Sources */,
A4DAE3262493F21900CEF51F /* fe_448.c in Sources */,
520775AB2239ABBE00087711 /* sp_int.c in Sources */,
9D2E31CC291CDF120082B941 /* quic.c in Sources */,
521646431A8992CC0062516A /* md4.c in Sources */,
521646321A8992CC0062516A /* aes.c in Sources */,
6AC85129272CAF2E00F2B32A /* kdf.c in Sources */,
@ -1708,6 +1727,7 @@
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 */,
@ -1721,6 +1741,7 @@
5216460E1A89928E0062516A /* sniffer.c in Sources */,
521646421A8992CC0062516A /* md2.c in Sources */,
521646381A8992CC0062516A /* coding.c in Sources */,
9D2E31CF291CDF120082B941 /* dtls.c in Sources */,
5216463D1A8992CC0062516A /* error.c in Sources */,
5216463F1A8992CC0062516A /* hmac.c in Sources */,
A4DAE3352493F21900CEF51F /* wolfevent.c in Sources */,
@ -1780,6 +1801,7 @@
A4DAE3362493F21900CEF51F /* wolfevent.c in Sources */,
A4F3187A1BC58B1700FDF2BB /* keys.c in Sources */,
A4F318511BC58B1700FDF2BB /* logging.c in Sources */,
9D2E31CD291CDF120082B941 /* quic.c in Sources */,
A4F318701BC58B1700FDF2BB /* md2.c in Sources */,
A4F318651BC58B1700FDF2BB /* md4.c in Sources */,
6AC8512A272CAF2E00F2B32A /* kdf.c in Sources */,
@ -1792,6 +1814,7 @@
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 */,
@ -1805,6 +1828,7 @@
A4F3186F1BC58B1700FDF2BB /* sniffer.c in Sources */,
1E8BEB72212F4C340063DCC1 /* sp_c64.c in Sources */,
1E8BEB71212F4C340063DCC1 /* sp_int.c in Sources */,
9D2E31D0291CDF120082B941 /* dtls.c in Sources */,
1E8BEB6D212F4AA10063DCC1 /* sp_x86_64.c in Sources */,
A4F3185F1BC58B1700FDF2BB /* ssl.c in Sources */,
A4DAE3482493F21900CEF51F /* blake2s.c in Sources */,