capacitor-freerasp 2.5.0 → 2.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +20 -0
- package/android/src/main/java/com/aheaditec/freerasp/FreeraspPlugin.kt +15 -14
- package/android/src/main/java/com/aheaditec/freerasp/PluginThreatHandler.kt +23 -30
- package/android/src/main/java/com/aheaditec/freerasp/dispatchers/ExecutionStateDispatcher.kt +4 -2
- package/android/src/main/java/com/aheaditec/freerasp/dispatchers/ThreatDispatcher.kt +4 -2
- package/android/src/main/java/com/aheaditec/freerasp/utils/RandomGenerator.kt +1 -2
- package/ios/Plugin/TalsecRuntime.xcframework/Info.plist +5 -5
- package/ios/Plugin/TalsecRuntime.xcframework/_CodeSignature/CodeDirectory +0 -0
- package/ios/Plugin/TalsecRuntime.xcframework/_CodeSignature/CodeResources +51 -40
- package/ios/Plugin/TalsecRuntime.xcframework/_CodeSignature/CodeSignature +0 -0
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/CurlWrapper.h +1 -1
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/TalsecRuntime-Swift.h +1 -1
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/curl.h +7 -7
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/multi.h +4 -4
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/options.h +1 -1
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Headers/urlapi.h +1 -1
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Info.plist +0 -0
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios.abi.json +185 -185
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/TalsecRuntime +0 -0
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64/TalsecRuntime.framework/_CodeSignature/CodeResources +377 -0
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/CurlWrapper.h +1 -1
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/TalsecRuntime-Swift.h +2 -2
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/curl.h +7 -7
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/multi.h +4 -4
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/options.h +1 -1
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/urlapi.h +1 -1
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Info.plist +0 -0
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios-simulator.abi.json +104 -104
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/x86_64-apple-ios-simulator.abi.json +104 -104
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/TalsecRuntime +0 -0
- package/ios/Plugin/TalsecRuntime.xcframework/ios-arm64_x86_64-simulator/TalsecRuntime.framework/_CodeSignature/CodeResources +17 -39
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,26 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [2.5.1] - 2026-03-24
|
|
9
|
+
|
|
10
|
+
- Android SDK version: 18.0.4
|
|
11
|
+
- iOS SDK version: 6.14.4
|
|
12
|
+
|
|
13
|
+
### Capacitor
|
|
14
|
+
|
|
15
|
+
#### Fixed
|
|
16
|
+
|
|
17
|
+
- Fixed case where event dispatchers on Android were not initialized before calling onResume at the app launch
|
|
18
|
+
|
|
19
|
+
### iOS
|
|
20
|
+
|
|
21
|
+
#### Fixed
|
|
22
|
+
|
|
23
|
+
- Fixed new jailbreak checks false positives on iOS 14 and 13.
|
|
24
|
+
- Fixed false positives with jailbreak on iOS 15 and 16.
|
|
25
|
+
- Fixed issue with app crashing on screenshot/screen recording.
|
|
26
|
+
- Fixed retrigger jailbreak issue on iOS 15 and 16.
|
|
27
|
+
|
|
8
28
|
## [2.5.0] - 2026-03-03
|
|
9
29
|
|
|
10
30
|
- Android SDK version: 18.0.4
|
|
@@ -5,6 +5,8 @@ import android.os.Build
|
|
|
5
5
|
import android.os.Handler
|
|
6
6
|
import android.os.HandlerThread
|
|
7
7
|
import android.os.Looper
|
|
8
|
+
import com.aheaditec.freerasp.dispatchers.ExecutionStateDispatcher
|
|
9
|
+
import com.aheaditec.freerasp.dispatchers.ThreatDispatcher
|
|
8
10
|
import com.aheaditec.freerasp.utils.Utils
|
|
9
11
|
import com.aheaditec.freerasp.utils.getArraySafe
|
|
10
12
|
import com.aheaditec.freerasp.utils.getNestedArraySafe
|
|
@@ -31,10 +33,6 @@ class FreeraspPlugin : Plugin() {
|
|
|
31
33
|
|
|
32
34
|
override fun load() {
|
|
33
35
|
initializeEventKeys()
|
|
34
|
-
val pluginCallback: CapacitorCallback = { eventName, data ->
|
|
35
|
-
notifyListeners(eventName, data, true)
|
|
36
|
-
}
|
|
37
|
-
PluginThreatHandler.initializeDispatchers(PluginListener(context, pluginCallback))
|
|
38
36
|
super.load()
|
|
39
37
|
}
|
|
40
38
|
|
|
@@ -78,11 +76,14 @@ class FreeraspPlugin : Plugin() {
|
|
|
78
76
|
@PluginMethod(returnType = PluginMethod.RETURN_NONE)
|
|
79
77
|
override fun addListener(call: PluginCall) {
|
|
80
78
|
val eventName = call.getString("eventName")
|
|
79
|
+
val pluginCallback: CapacitorCallback = { eventName, data ->
|
|
80
|
+
notifyListeners(eventName, data, true)
|
|
81
|
+
}
|
|
81
82
|
if (eventName == ThreatEvent.CHANNEL_NAME) {
|
|
82
|
-
|
|
83
|
+
ThreatDispatcher.registerListener(PluginListener(context, pluginCallback))
|
|
83
84
|
}
|
|
84
85
|
if (eventName == RaspExecutionStateEvent.CHANNEL_NAME) {
|
|
85
|
-
|
|
86
|
+
ExecutionStateDispatcher.registerListener(PluginListener(context, pluginCallback))
|
|
86
87
|
}
|
|
87
88
|
super.addListener(call)
|
|
88
89
|
}
|
|
@@ -91,31 +92,31 @@ class FreeraspPlugin : Plugin() {
|
|
|
91
92
|
fun removeListenerForEvent(call: PluginCall) {
|
|
92
93
|
val eventName = call.getString("eventName")
|
|
93
94
|
if (eventName == ThreatEvent.CHANNEL_NAME) {
|
|
94
|
-
|
|
95
|
+
ThreatDispatcher.unregisterListener()
|
|
95
96
|
}
|
|
96
97
|
if (eventName == RaspExecutionStateEvent.CHANNEL_NAME) {
|
|
97
|
-
|
|
98
|
+
ExecutionStateDispatcher.unregisterListener()
|
|
98
99
|
}
|
|
99
100
|
}
|
|
100
101
|
|
|
101
102
|
override fun handleOnPause() {
|
|
102
103
|
super.handleOnPause()
|
|
103
|
-
|
|
104
|
-
|
|
104
|
+
ThreatDispatcher.onPause()
|
|
105
|
+
ExecutionStateDispatcher.onPause()
|
|
105
106
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.UPSIDE_DOWN_CAKE) {
|
|
106
107
|
ScreenProtector.unregister(activity)
|
|
107
108
|
}
|
|
108
109
|
if (activity.isFinishing) {
|
|
109
|
-
|
|
110
|
-
|
|
110
|
+
ThreatDispatcher.unregisterListener()
|
|
111
|
+
ExecutionStateDispatcher.unregisterListener()
|
|
111
112
|
PluginThreatHandler.unregisterSDKListener(context)
|
|
112
113
|
}
|
|
113
114
|
}
|
|
114
115
|
|
|
115
116
|
override fun handleOnResume() {
|
|
116
117
|
super.handleOnResume()
|
|
117
|
-
|
|
118
|
-
|
|
118
|
+
ThreatDispatcher.onResume()
|
|
119
|
+
ExecutionStateDispatcher.onResume()
|
|
119
120
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.UPSIDE_DOWN_CAKE) {
|
|
120
121
|
ScreenProtector.register(activity)
|
|
121
122
|
}
|
|
@@ -10,107 +10,100 @@ import com.aheaditec.freerasp.events.ThreatEvent
|
|
|
10
10
|
|
|
11
11
|
internal object PluginThreatHandler {
|
|
12
12
|
|
|
13
|
-
internal lateinit var threatDispatcher: ThreatDispatcher
|
|
14
|
-
internal lateinit var executionStateDispatcher: ExecutionStateDispatcher
|
|
15
|
-
|
|
16
|
-
fun initializeDispatchers(listener: FreeraspPlugin.PluginListener) {
|
|
17
|
-
threatDispatcher = ThreatDispatcher(listener)
|
|
18
|
-
executionStateDispatcher = ExecutionStateDispatcher(listener)
|
|
19
|
-
}
|
|
20
13
|
|
|
21
14
|
private val threatDetected = object : ThreatListener.ThreatDetected() {
|
|
22
15
|
|
|
23
16
|
override fun onRootDetected() {
|
|
24
|
-
|
|
17
|
+
ThreatDispatcher.dispatchThreat(ThreatEvent.PrivilegedAccess)
|
|
25
18
|
}
|
|
26
19
|
|
|
27
20
|
override fun onDebuggerDetected() {
|
|
28
|
-
|
|
21
|
+
ThreatDispatcher.dispatchThreat(ThreatEvent.Debug)
|
|
29
22
|
}
|
|
30
23
|
|
|
31
24
|
override fun onEmulatorDetected() {
|
|
32
|
-
|
|
25
|
+
ThreatDispatcher.dispatchThreat(ThreatEvent.Simulator)
|
|
33
26
|
}
|
|
34
27
|
|
|
35
28
|
override fun onTamperDetected() {
|
|
36
|
-
|
|
29
|
+
ThreatDispatcher.dispatchThreat(ThreatEvent.AppIntegrity)
|
|
37
30
|
}
|
|
38
31
|
|
|
39
32
|
override fun onUntrustedInstallationSourceDetected() {
|
|
40
|
-
|
|
33
|
+
ThreatDispatcher.dispatchThreat(ThreatEvent.UnofficialStore)
|
|
41
34
|
}
|
|
42
35
|
|
|
43
36
|
override fun onHookDetected() {
|
|
44
|
-
|
|
37
|
+
ThreatDispatcher.dispatchThreat(ThreatEvent.Hooks)
|
|
45
38
|
}
|
|
46
39
|
|
|
47
40
|
override fun onDeviceBindingDetected() {
|
|
48
|
-
|
|
41
|
+
ThreatDispatcher.dispatchThreat(ThreatEvent.DeviceBinding)
|
|
49
42
|
}
|
|
50
43
|
|
|
51
44
|
override fun onObfuscationIssuesDetected() {
|
|
52
|
-
|
|
45
|
+
ThreatDispatcher.dispatchThreat(ThreatEvent.ObfuscationIssues)
|
|
53
46
|
}
|
|
54
47
|
|
|
55
48
|
override fun onMalwareDetected(suspiciousAppInfos: MutableList<SuspiciousAppInfo>) {
|
|
56
|
-
|
|
49
|
+
ThreatDispatcher.dispatchMalware(suspiciousAppInfos ?: mutableListOf())
|
|
57
50
|
}
|
|
58
51
|
|
|
59
52
|
override fun onScreenshotDetected() {
|
|
60
|
-
|
|
53
|
+
ThreatDispatcher.dispatchThreat(ThreatEvent.Screenshot)
|
|
61
54
|
}
|
|
62
55
|
|
|
63
56
|
override fun onScreenRecordingDetected() {
|
|
64
|
-
|
|
57
|
+
ThreatDispatcher.dispatchThreat(ThreatEvent.ScreenRecording)
|
|
65
58
|
}
|
|
66
59
|
|
|
67
60
|
override fun onMultiInstanceDetected() {
|
|
68
|
-
|
|
61
|
+
ThreatDispatcher.dispatchThreat(ThreatEvent.MultiInstance)
|
|
69
62
|
}
|
|
70
63
|
|
|
71
64
|
override fun onUnsecureWifiDetected() {
|
|
72
|
-
|
|
65
|
+
ThreatDispatcher.dispatchThreat(ThreatEvent.UnsecureWifi)
|
|
73
66
|
}
|
|
74
67
|
|
|
75
68
|
override fun onTimeSpoofingDetected() {
|
|
76
|
-
|
|
69
|
+
ThreatDispatcher.dispatchThreat(ThreatEvent.TimeSpoofing)
|
|
77
70
|
}
|
|
78
71
|
|
|
79
72
|
override fun onLocationSpoofingDetected() {
|
|
80
|
-
|
|
73
|
+
ThreatDispatcher.dispatchThreat(ThreatEvent.LocationSpoofing)
|
|
81
74
|
}
|
|
82
75
|
|
|
83
76
|
override fun onAutomationDetected() {
|
|
84
|
-
|
|
77
|
+
ThreatDispatcher.dispatchThreat(ThreatEvent.Automation)
|
|
85
78
|
}
|
|
86
79
|
}
|
|
87
80
|
|
|
88
81
|
private val deviceState = object : ThreatListener.DeviceState() {
|
|
89
82
|
|
|
90
83
|
override fun onUnlockedDeviceDetected() {
|
|
91
|
-
|
|
84
|
+
ThreatDispatcher.dispatchThreat(ThreatEvent.Passcode)
|
|
92
85
|
}
|
|
93
86
|
|
|
94
87
|
override fun onHardwareBackedKeystoreNotAvailableDetected() {
|
|
95
|
-
|
|
88
|
+
ThreatDispatcher.dispatchThreat(ThreatEvent.SecureHardwareNotAvailable)
|
|
96
89
|
}
|
|
97
90
|
|
|
98
91
|
override fun onDeveloperModeDetected() {
|
|
99
|
-
|
|
92
|
+
ThreatDispatcher.dispatchThreat(ThreatEvent.DevMode)
|
|
100
93
|
}
|
|
101
94
|
|
|
102
95
|
override fun onADBEnabledDetected() {
|
|
103
|
-
|
|
96
|
+
ThreatDispatcher.dispatchThreat(ThreatEvent.ADBEnabled)
|
|
104
97
|
}
|
|
105
98
|
|
|
106
99
|
override fun onSystemVPNDetected() {
|
|
107
|
-
|
|
100
|
+
ThreatDispatcher.dispatchThreat(ThreatEvent.SystemVPN)
|
|
108
101
|
}
|
|
109
102
|
}
|
|
110
103
|
|
|
111
104
|
private val raspExecutionState = object : ThreatListener.RaspExecutionState() {
|
|
112
105
|
override fun onAllChecksFinished() {
|
|
113
|
-
|
|
106
|
+
ExecutionStateDispatcher.dispatch(RaspExecutionStateEvent.AllChecksFinished)
|
|
114
107
|
}
|
|
115
108
|
}
|
|
116
109
|
|
|
@@ -123,4 +116,4 @@ internal object PluginThreatHandler {
|
|
|
123
116
|
internal fun unregisterSDKListener(context: Context) {
|
|
124
117
|
internalListener.unregisterListener(context)
|
|
125
118
|
}
|
|
126
|
-
}
|
|
119
|
+
}
|
package/android/src/main/java/com/aheaditec/freerasp/dispatchers/ExecutionStateDispatcher.kt
CHANGED
|
@@ -3,13 +3,15 @@ package com.aheaditec.freerasp.dispatchers
|
|
|
3
3
|
import com.aheaditec.freerasp.events.RaspExecutionStateEvent
|
|
4
4
|
import com.aheaditec.freerasp.interfaces.PluginExecutionStateListener
|
|
5
5
|
|
|
6
|
-
internal
|
|
6
|
+
internal object ExecutionStateDispatcher {
|
|
7
|
+
private lateinit var listener: PluginExecutionStateListener
|
|
7
8
|
private val cache = mutableSetOf<RaspExecutionStateEvent>()
|
|
8
9
|
|
|
9
10
|
private var isAppInForeground = false
|
|
10
11
|
private var isListenerRegistered = false
|
|
11
12
|
|
|
12
|
-
fun registerListener() {
|
|
13
|
+
fun registerListener(newListener: PluginExecutionStateListener) {
|
|
14
|
+
listener = newListener
|
|
13
15
|
isListenerRegistered = true
|
|
14
16
|
isAppInForeground = true
|
|
15
17
|
flushCache()
|
|
@@ -4,14 +4,16 @@ import com.aheaditec.talsec_security.security.api.SuspiciousAppInfo
|
|
|
4
4
|
import com.aheaditec.freerasp.events.ThreatEvent
|
|
5
5
|
import com.aheaditec.freerasp.interfaces.PluginThreatListener
|
|
6
6
|
|
|
7
|
-
internal
|
|
7
|
+
internal object ThreatDispatcher {
|
|
8
|
+
private lateinit var listener: PluginThreatListener
|
|
8
9
|
private val threatCache = mutableSetOf<ThreatEvent>()
|
|
9
10
|
private val malwareCache = mutableSetOf<SuspiciousAppInfo>()
|
|
10
11
|
|
|
11
12
|
private var isAppInForeground = false
|
|
12
13
|
private var isListenerRegistered = false
|
|
13
14
|
|
|
14
|
-
fun registerListener() {
|
|
15
|
+
fun registerListener(newListener: PluginThreatListener) {
|
|
16
|
+
listener = newListener
|
|
15
17
|
isListenerRegistered = true
|
|
16
18
|
isAppInForeground = true
|
|
17
19
|
flushCache()
|
|
@@ -8,32 +8,32 @@
|
|
|
8
8
|
<key>BinaryPath</key>
|
|
9
9
|
<string>TalsecRuntime.framework/TalsecRuntime</string>
|
|
10
10
|
<key>LibraryIdentifier</key>
|
|
11
|
-
<string>ios-
|
|
11
|
+
<string>ios-arm64</string>
|
|
12
12
|
<key>LibraryPath</key>
|
|
13
13
|
<string>TalsecRuntime.framework</string>
|
|
14
14
|
<key>SupportedArchitectures</key>
|
|
15
15
|
<array>
|
|
16
16
|
<string>arm64</string>
|
|
17
|
-
<string>x86_64</string>
|
|
18
17
|
</array>
|
|
19
18
|
<key>SupportedPlatform</key>
|
|
20
19
|
<string>ios</string>
|
|
21
|
-
<key>SupportedPlatformVariant</key>
|
|
22
|
-
<string>simulator</string>
|
|
23
20
|
</dict>
|
|
24
21
|
<dict>
|
|
25
22
|
<key>BinaryPath</key>
|
|
26
23
|
<string>TalsecRuntime.framework/TalsecRuntime</string>
|
|
27
24
|
<key>LibraryIdentifier</key>
|
|
28
|
-
<string>ios-
|
|
25
|
+
<string>ios-arm64_x86_64-simulator</string>
|
|
29
26
|
<key>LibraryPath</key>
|
|
30
27
|
<string>TalsecRuntime.framework</string>
|
|
31
28
|
<key>SupportedArchitectures</key>
|
|
32
29
|
<array>
|
|
33
30
|
<string>arm64</string>
|
|
31
|
+
<string>x86_64</string>
|
|
34
32
|
</array>
|
|
35
33
|
<key>SupportedPlatform</key>
|
|
36
34
|
<string>ios</string>
|
|
35
|
+
<key>SupportedPlatformVariant</key>
|
|
36
|
+
<string>simulator</string>
|
|
37
37
|
</dict>
|
|
38
38
|
</array>
|
|
39
39
|
<key>CFBundlePackageType</key>
|
|
Binary file
|
|
@@ -14,11 +14,11 @@
|
|
|
14
14
|
</data>
|
|
15
15
|
<key>ios-arm64/TalsecRuntime.framework/Headers/CurlWrapper.h</key>
|
|
16
16
|
<data>
|
|
17
|
-
|
|
17
|
+
NfaD4ZW492g1gx9/WrVywckio1o=
|
|
18
18
|
</data>
|
|
19
19
|
<key>ios-arm64/TalsecRuntime.framework/Headers/TalsecRuntime-Swift.h</key>
|
|
20
20
|
<data>
|
|
21
|
-
|
|
21
|
+
n9I7IjdMKC826TqlB4j2mUTBUvc=
|
|
22
22
|
</data>
|
|
23
23
|
<key>ios-arm64/TalsecRuntime.framework/Headers/TalsecRuntime_iOS.h</key>
|
|
24
24
|
<data>
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
</data>
|
|
27
27
|
<key>ios-arm64/TalsecRuntime.framework/Headers/curl.h</key>
|
|
28
28
|
<data>
|
|
29
|
-
|
|
29
|
+
mLfbwJxgzpnFoF3PZhOkQXf3vu4=
|
|
30
30
|
</data>
|
|
31
31
|
<key>ios-arm64/TalsecRuntime.framework/Headers/curlver.h</key>
|
|
32
32
|
<data>
|
|
@@ -46,11 +46,11 @@
|
|
|
46
46
|
</data>
|
|
47
47
|
<key>ios-arm64/TalsecRuntime.framework/Headers/multi.h</key>
|
|
48
48
|
<data>
|
|
49
|
-
|
|
49
|
+
CCqpYO+NKWUyeeWp6/AgXg04RlE=
|
|
50
50
|
</data>
|
|
51
51
|
<key>ios-arm64/TalsecRuntime.framework/Headers/options.h</key>
|
|
52
52
|
<data>
|
|
53
|
-
|
|
53
|
+
Pgw7zikdIuxcutfv84E86QtzB8g=
|
|
54
54
|
</data>
|
|
55
55
|
<key>ios-arm64/TalsecRuntime.framework/Headers/stdcheaders.h</key>
|
|
56
56
|
<data>
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
</data>
|
|
67
67
|
<key>ios-arm64/TalsecRuntime.framework/Headers/urlapi.h</key>
|
|
68
68
|
<data>
|
|
69
|
-
|
|
69
|
+
/yXILzgAfQvOojqm3XAHRsAwJrA=
|
|
70
70
|
</data>
|
|
71
71
|
<key>ios-arm64/TalsecRuntime.framework/Headers/websockets.h</key>
|
|
72
72
|
<data>
|
|
@@ -74,11 +74,11 @@
|
|
|
74
74
|
</data>
|
|
75
75
|
<key>ios-arm64/TalsecRuntime.framework/Info.plist</key>
|
|
76
76
|
<data>
|
|
77
|
-
|
|
77
|
+
4pI5j8NGLDqEd/OZJnyc+ocjgxM=
|
|
78
78
|
</data>
|
|
79
79
|
<key>ios-arm64/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios.abi.json</key>
|
|
80
80
|
<data>
|
|
81
|
-
|
|
81
|
+
DsXp/SKqoXs3f0PE7alAsq2ppLs=
|
|
82
82
|
</data>
|
|
83
83
|
<key>ios-arm64/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios.private.swiftinterface</key>
|
|
84
84
|
<data>
|
|
@@ -102,7 +102,11 @@
|
|
|
102
102
|
</data>
|
|
103
103
|
<key>ios-arm64/TalsecRuntime.framework/TalsecRuntime</key>
|
|
104
104
|
<data>
|
|
105
|
-
|
|
105
|
+
5oYuF6xqPXL/2NHy+c4tnOVvR2A=
|
|
106
|
+
</data>
|
|
107
|
+
<key>ios-arm64/TalsecRuntime.framework/_CodeSignature/CodeResources</key>
|
|
108
|
+
<data>
|
|
109
|
+
UxZZt0HagiMiKfoyzLCEHy7BCGI=
|
|
106
110
|
</data>
|
|
107
111
|
<key>ios-arm64/TalsecRuntime.framework/cacert.pem</key>
|
|
108
112
|
<data>
|
|
@@ -122,11 +126,11 @@
|
|
|
122
126
|
</data>
|
|
123
127
|
<key>ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/CurlWrapper.h</key>
|
|
124
128
|
<data>
|
|
125
|
-
|
|
129
|
+
NfaD4ZW492g1gx9/WrVywckio1o=
|
|
126
130
|
</data>
|
|
127
131
|
<key>ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/TalsecRuntime-Swift.h</key>
|
|
128
132
|
<data>
|
|
129
|
-
|
|
133
|
+
wYrk4E3gcbyJsyMMSpzWZIC6Iqw=
|
|
130
134
|
</data>
|
|
131
135
|
<key>ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/TalsecRuntime_iOS.h</key>
|
|
132
136
|
<data>
|
|
@@ -134,7 +138,7 @@
|
|
|
134
138
|
</data>
|
|
135
139
|
<key>ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/curl.h</key>
|
|
136
140
|
<data>
|
|
137
|
-
|
|
141
|
+
mLfbwJxgzpnFoF3PZhOkQXf3vu4=
|
|
138
142
|
</data>
|
|
139
143
|
<key>ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/curlver.h</key>
|
|
140
144
|
<data>
|
|
@@ -154,11 +158,11 @@
|
|
|
154
158
|
</data>
|
|
155
159
|
<key>ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/multi.h</key>
|
|
156
160
|
<data>
|
|
157
|
-
|
|
161
|
+
CCqpYO+NKWUyeeWp6/AgXg04RlE=
|
|
158
162
|
</data>
|
|
159
163
|
<key>ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/options.h</key>
|
|
160
164
|
<data>
|
|
161
|
-
|
|
165
|
+
Pgw7zikdIuxcutfv84E86QtzB8g=
|
|
162
166
|
</data>
|
|
163
167
|
<key>ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/stdcheaders.h</key>
|
|
164
168
|
<data>
|
|
@@ -174,7 +178,7 @@
|
|
|
174
178
|
</data>
|
|
175
179
|
<key>ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/urlapi.h</key>
|
|
176
180
|
<data>
|
|
177
|
-
|
|
181
|
+
/yXILzgAfQvOojqm3XAHRsAwJrA=
|
|
178
182
|
</data>
|
|
179
183
|
<key>ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/websockets.h</key>
|
|
180
184
|
<data>
|
|
@@ -182,11 +186,11 @@
|
|
|
182
186
|
</data>
|
|
183
187
|
<key>ios-arm64_x86_64-simulator/TalsecRuntime.framework/Info.plist</key>
|
|
184
188
|
<data>
|
|
185
|
-
|
|
189
|
+
eL5oFlB6wq1n2HB8CtBm1T2ZgRw=
|
|
186
190
|
</data>
|
|
187
191
|
<key>ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios-simulator.abi.json</key>
|
|
188
192
|
<data>
|
|
189
|
-
|
|
193
|
+
1wk46CVep6NO9TorYlGZFKKW0FM=
|
|
190
194
|
</data>
|
|
191
195
|
<key>ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
|
|
192
196
|
<data>
|
|
@@ -202,7 +206,7 @@
|
|
|
202
206
|
</data>
|
|
203
207
|
<key>ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
|
|
204
208
|
<data>
|
|
205
|
-
|
|
209
|
+
1wk46CVep6NO9TorYlGZFKKW0FM=
|
|
206
210
|
</data>
|
|
207
211
|
<key>ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
|
|
208
212
|
<data>
|
|
@@ -226,11 +230,11 @@
|
|
|
226
230
|
</data>
|
|
227
231
|
<key>ios-arm64_x86_64-simulator/TalsecRuntime.framework/TalsecRuntime</key>
|
|
228
232
|
<data>
|
|
229
|
-
|
|
233
|
+
t2a0lLuBLH14mFGucE/4F3xVxNs=
|
|
230
234
|
</data>
|
|
231
235
|
<key>ios-arm64_x86_64-simulator/TalsecRuntime.framework/_CodeSignature/CodeResources</key>
|
|
232
236
|
<data>
|
|
233
|
-
|
|
237
|
+
GXj3jiKq3xmkacQAzArndFMt/OQ=
|
|
234
238
|
</data>
|
|
235
239
|
<key>ios-arm64_x86_64-simulator/TalsecRuntime.framework/cacert.pem</key>
|
|
236
240
|
<data>
|
|
@@ -261,14 +265,14 @@
|
|
|
261
265
|
<dict>
|
|
262
266
|
<key>hash2</key>
|
|
263
267
|
<data>
|
|
264
|
-
|
|
268
|
+
60kqc6ZOHuNkRlooJo0oLxE7Gfz/QSmz9sPPjCyKB28=
|
|
265
269
|
</data>
|
|
266
270
|
</dict>
|
|
267
271
|
<key>ios-arm64/TalsecRuntime.framework/Headers/TalsecRuntime-Swift.h</key>
|
|
268
272
|
<dict>
|
|
269
273
|
<key>hash2</key>
|
|
270
274
|
<data>
|
|
271
|
-
|
|
275
|
+
2b6fjO8ucwjozDVZR+Yet3WFBS5Q59nbHmzL0eZeHwU=
|
|
272
276
|
</data>
|
|
273
277
|
</dict>
|
|
274
278
|
<key>ios-arm64/TalsecRuntime.framework/Headers/TalsecRuntime_iOS.h</key>
|
|
@@ -282,7 +286,7 @@
|
|
|
282
286
|
<dict>
|
|
283
287
|
<key>hash2</key>
|
|
284
288
|
<data>
|
|
285
|
-
|
|
289
|
+
fy65KlyL8liq58ZX9PzFUPWJ+YFZXaQPLsiz8TBpwgI=
|
|
286
290
|
</data>
|
|
287
291
|
</dict>
|
|
288
292
|
<key>ios-arm64/TalsecRuntime.framework/Headers/curlver.h</key>
|
|
@@ -317,14 +321,14 @@
|
|
|
317
321
|
<dict>
|
|
318
322
|
<key>hash2</key>
|
|
319
323
|
<data>
|
|
320
|
-
|
|
324
|
+
Zu+lbIsFRos0ACKBmEl0LbBi+AujoSKFMHOaQcVa9u8=
|
|
321
325
|
</data>
|
|
322
326
|
</dict>
|
|
323
327
|
<key>ios-arm64/TalsecRuntime.framework/Headers/options.h</key>
|
|
324
328
|
<dict>
|
|
325
329
|
<key>hash2</key>
|
|
326
330
|
<data>
|
|
327
|
-
|
|
331
|
+
Ay82VEWxoOZrPEGsXwqDb6+tLChjFfMNlPicJA8ZKvQ=
|
|
328
332
|
</data>
|
|
329
333
|
</dict>
|
|
330
334
|
<key>ios-arm64/TalsecRuntime.framework/Headers/stdcheaders.h</key>
|
|
@@ -352,7 +356,7 @@
|
|
|
352
356
|
<dict>
|
|
353
357
|
<key>hash2</key>
|
|
354
358
|
<data>
|
|
355
|
-
|
|
359
|
+
2Kf6vHQshJ1YxJ9KnRExXIoKU7ctRGXn87++2tgWato=
|
|
356
360
|
</data>
|
|
357
361
|
</dict>
|
|
358
362
|
<key>ios-arm64/TalsecRuntime.framework/Headers/websockets.h</key>
|
|
@@ -366,14 +370,14 @@
|
|
|
366
370
|
<dict>
|
|
367
371
|
<key>hash2</key>
|
|
368
372
|
<data>
|
|
369
|
-
|
|
373
|
+
TCi1uJQPaYbeJInZZipnibqIrlDrm40pP/Uu1cxF1+8=
|
|
370
374
|
</data>
|
|
371
375
|
</dict>
|
|
372
376
|
<key>ios-arm64/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios.abi.json</key>
|
|
373
377
|
<dict>
|
|
374
378
|
<key>hash2</key>
|
|
375
379
|
<data>
|
|
376
|
-
|
|
380
|
+
zbZ2XZLXNbhSEnpBLTGFcX0IuiCIjOWk/X9RXOmBYuA=
|
|
377
381
|
</data>
|
|
378
382
|
</dict>
|
|
379
383
|
<key>ios-arm64/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios.private.swiftinterface</key>
|
|
@@ -415,7 +419,14 @@
|
|
|
415
419
|
<dict>
|
|
416
420
|
<key>hash2</key>
|
|
417
421
|
<data>
|
|
418
|
-
|
|
422
|
+
pkKq/Cjeu41muHz+JVhgt/PFBEfIxnkhhfZmvRgsbso=
|
|
423
|
+
</data>
|
|
424
|
+
</dict>
|
|
425
|
+
<key>ios-arm64/TalsecRuntime.framework/_CodeSignature/CodeResources</key>
|
|
426
|
+
<dict>
|
|
427
|
+
<key>hash2</key>
|
|
428
|
+
<data>
|
|
429
|
+
Mqff82uyUTphlNakZ7XlmRfE8YV8dwS20lhKSXZ858M=
|
|
419
430
|
</data>
|
|
420
431
|
</dict>
|
|
421
432
|
<key>ios-arm64/TalsecRuntime.framework/cacert.pem</key>
|
|
@@ -450,14 +461,14 @@
|
|
|
450
461
|
<dict>
|
|
451
462
|
<key>hash2</key>
|
|
452
463
|
<data>
|
|
453
|
-
|
|
464
|
+
60kqc6ZOHuNkRlooJo0oLxE7Gfz/QSmz9sPPjCyKB28=
|
|
454
465
|
</data>
|
|
455
466
|
</dict>
|
|
456
467
|
<key>ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/TalsecRuntime-Swift.h</key>
|
|
457
468
|
<dict>
|
|
458
469
|
<key>hash2</key>
|
|
459
470
|
<data>
|
|
460
|
-
|
|
471
|
+
JWbUcvTp98ZUdd6u4ohC2dB5oz315+2AiiXofaYflWY=
|
|
461
472
|
</data>
|
|
462
473
|
</dict>
|
|
463
474
|
<key>ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/TalsecRuntime_iOS.h</key>
|
|
@@ -471,7 +482,7 @@
|
|
|
471
482
|
<dict>
|
|
472
483
|
<key>hash2</key>
|
|
473
484
|
<data>
|
|
474
|
-
|
|
485
|
+
fy65KlyL8liq58ZX9PzFUPWJ+YFZXaQPLsiz8TBpwgI=
|
|
475
486
|
</data>
|
|
476
487
|
</dict>
|
|
477
488
|
<key>ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/curlver.h</key>
|
|
@@ -506,14 +517,14 @@
|
|
|
506
517
|
<dict>
|
|
507
518
|
<key>hash2</key>
|
|
508
519
|
<data>
|
|
509
|
-
|
|
520
|
+
Zu+lbIsFRos0ACKBmEl0LbBi+AujoSKFMHOaQcVa9u8=
|
|
510
521
|
</data>
|
|
511
522
|
</dict>
|
|
512
523
|
<key>ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/options.h</key>
|
|
513
524
|
<dict>
|
|
514
525
|
<key>hash2</key>
|
|
515
526
|
<data>
|
|
516
|
-
|
|
527
|
+
Ay82VEWxoOZrPEGsXwqDb6+tLChjFfMNlPicJA8ZKvQ=
|
|
517
528
|
</data>
|
|
518
529
|
</dict>
|
|
519
530
|
<key>ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/stdcheaders.h</key>
|
|
@@ -541,7 +552,7 @@
|
|
|
541
552
|
<dict>
|
|
542
553
|
<key>hash2</key>
|
|
543
554
|
<data>
|
|
544
|
-
|
|
555
|
+
2Kf6vHQshJ1YxJ9KnRExXIoKU7ctRGXn87++2tgWato=
|
|
545
556
|
</data>
|
|
546
557
|
</dict>
|
|
547
558
|
<key>ios-arm64_x86_64-simulator/TalsecRuntime.framework/Headers/websockets.h</key>
|
|
@@ -555,14 +566,14 @@
|
|
|
555
566
|
<dict>
|
|
556
567
|
<key>hash2</key>
|
|
557
568
|
<data>
|
|
558
|
-
/
|
|
569
|
+
HhnseyPFNJUFTF3S9O8l6y4C7u/9HGIFRFYgGrxXJO8=
|
|
559
570
|
</data>
|
|
560
571
|
</dict>
|
|
561
572
|
<key>ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios-simulator.abi.json</key>
|
|
562
573
|
<dict>
|
|
563
574
|
<key>hash2</key>
|
|
564
575
|
<data>
|
|
565
|
-
|
|
576
|
+
vpWicH82TW1JAimhUErZfSse9YeeAaY4jZHQENzzcOY=
|
|
566
577
|
</data>
|
|
567
578
|
</dict>
|
|
568
579
|
<key>ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
|
|
@@ -590,7 +601,7 @@
|
|
|
590
601
|
<dict>
|
|
591
602
|
<key>hash2</key>
|
|
592
603
|
<data>
|
|
593
|
-
|
|
604
|
+
vpWicH82TW1JAimhUErZfSse9YeeAaY4jZHQENzzcOY=
|
|
594
605
|
</data>
|
|
595
606
|
</dict>
|
|
596
607
|
<key>ios-arm64_x86_64-simulator/TalsecRuntime.framework/Modules/TalsecRuntime.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
|
|
@@ -632,14 +643,14 @@
|
|
|
632
643
|
<dict>
|
|
633
644
|
<key>hash2</key>
|
|
634
645
|
<data>
|
|
635
|
-
|
|
646
|
+
UkmzOXC3eGqclbb2El2fp7opLsnu7OaBMy4y8pcazEM=
|
|
636
647
|
</data>
|
|
637
648
|
</dict>
|
|
638
649
|
<key>ios-arm64_x86_64-simulator/TalsecRuntime.framework/_CodeSignature/CodeResources</key>
|
|
639
650
|
<dict>
|
|
640
651
|
<key>hash2</key>
|
|
641
652
|
<data>
|
|
642
|
-
|
|
653
|
+
Ds9hlSscjDs3Bc8YqdR5KfPZltjDSxD9sVjTA5OcnYI=
|
|
643
654
|
</data>
|
|
644
655
|
</dict>
|
|
645
656
|
<key>ios-arm64_x86_64-simulator/TalsecRuntime.framework/cacert.pem</key>
|