Skip to content

Commit bdc33c9

Browse files
committed
Offset Sequence Scoring and More
1 parent adb6d27 commit bdc33c9

13 files changed

Lines changed: 1049 additions & 653 deletions

File tree

AdversaryLabSwift.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
460CF7E82076C76D00FB3723 /* ShutdownRedisServerScript.sh in Resources */ = {isa = PBXBuildFile; fileRef = 460CF7E72076C76D00FB3723 /* ShutdownRedisServerScript.sh */; };
1414
460CF7EA2076EB0800FB3723 /* redis.conf in Resources */ = {isa = PBXBuildFile; fileRef = 460CF7E92076EB0800FB3723 /* redis.conf */; };
1515
460CF7EC2076F75A00FB3723 /* redis-cli in Resources */ = {isa = PBXBuildFile; fileRef = 460CF7EB2076F75A00FB3723 /* redis-cli */; };
16-
4610875E207BE18D00E7EC50 /* subsequences.so in Resources */ = {isa = PBXBuildFile; fileRef = 4610875D207BE18D00E7EC50 /* subsequences.so */; };
1716
46175B6920253F86009311D6 /* FakeConnectionGenerator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46175B6820253F86009311D6 /* FakeConnectionGenerator.swift */; };
1817
46175B6C202CE3DB009311D6 /* Entropy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46175B6B202CE3DB009311D6 /* Entropy.swift */; };
1918
46175B75202D2CDE009311D6 /* ConnectionInspector.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46175B74202D2CDE009311D6 /* ConnectionInspector.swift */; };
@@ -35,6 +34,7 @@
3534
468B264C2023C099000A2B5D /* Datable.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46D8512F201FE4B50052DF49 /* Datable.framework */; };
3635
468B264D2023C099000A2B5D /* Datable.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 46D8512F201FE4B50052DF49 /* Datable.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
3736
468B26522023D016000A2B5D /* ObservedConnections.swift in Sources */ = {isa = PBXBuildFile; fileRef = 468B26512023D016000A2B5D /* ObservedConnections.swift */; };
37+
468EF6B6207FEDA40007D0DF /* subsequences.so in Resources */ = {isa = PBXBuildFile; fileRef = 468EF6B5207FEDA40007D0DF /* subsequences.so */; };
3838
CA727CD42050A3580051A01B /* README.md in Resources */ = {isa = PBXBuildFile; fileRef = CA727CD32050A3580051A01B /* README.md */; };
3939
CAA6C98320642A2D00EE8DF1 /* KnownProtocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAA6C97A20642A2D00EE8DF1 /* KnownProtocols.swift */; };
4040
CAA6C98420642A2D00EE8DF1 /* TLS12.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAA6C97B20642A2D00EE8DF1 /* TLS12.swift */; };
@@ -137,7 +137,6 @@
137137
460CF7E72076C76D00FB3723 /* ShutdownRedisServerScript.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; path = ShutdownRedisServerScript.sh; sourceTree = "<group>"; };
138138
460CF7E92076EB0800FB3723 /* redis.conf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = redis.conf; sourceTree = "<group>"; };
139139
460CF7EB2076F75A00FB3723 /* redis-cli */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.executable"; path = "redis-cli"; sourceTree = "<group>"; };
140-
4610875D207BE18D00E7EC50 /* subsequences.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = subsequences.so; sourceTree = "<group>"; };
141140
46175B6820253F86009311D6 /* FakeConnectionGenerator.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FakeConnectionGenerator.swift; sourceTree = "<group>"; };
142141
46175B6B202CE3DB009311D6 /* Entropy.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Entropy.swift; sourceTree = "<group>"; };
143142
46175B74202D2CDE009311D6 /* ConnectionInspector.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConnectionInspector.swift; sourceTree = "<group>"; };
@@ -160,6 +159,7 @@
160159
467E49392017F166008B19E3 /* Constants.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Constants.swift; sourceTree = "<group>"; };
161160
468B26232023B609000A2B5D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
162161
468B26512023D016000A2B5D /* ObservedConnections.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ObservedConnections.swift; sourceTree = "<group>"; };
162+
468EF6B5207FEDA40007D0DF /* subsequences.so */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.bundle"; path = subsequences.so; sourceTree = "<group>"; };
163163
CA727CD32050A3580051A01B /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
164164
CAA6C97A20642A2D00EE8DF1 /* KnownProtocols.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = KnownProtocols.swift; sourceTree = "<group>"; };
165165
CAA6C97B20642A2D00EE8DF1 /* TLS12.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TLS12.swift; sourceTree = "<group>"; };
@@ -230,7 +230,7 @@
230230
460CF7E72076C76D00FB3723 /* ShutdownRedisServerScript.sh */,
231231
460CF7E52076C3D800FB3723 /* LaunchRedisServerScript.sh */,
232232
460CF7E92076EB0800FB3723 /* redis.conf */,
233-
4610875D207BE18D00E7EC50 /* subsequences.so */,
233+
468EF6B5207FEDA40007D0DF /* subsequences.so */,
234234
460CF7D220758D2C00FB3723 /* redis-server */,
235235
460CF7EB2076F75A00FB3723 /* redis-cli */,
236236
CA727CD32050A3580051A01B /* README.md */,
@@ -484,7 +484,7 @@
484484
460CF7E62076C3D800FB3723 /* LaunchRedisServerScript.sh in Resources */,
485485
4651A15820083BF700037D31 /* Main.storyboard in Resources */,
486486
460CF7E82076C76D00FB3723 /* ShutdownRedisServerScript.sh in Resources */,
487-
4610875E207BE18D00E7EC50 /* subsequences.so in Resources */,
487+
468EF6B6207FEDA40007D0DF /* subsequences.so in Resources */,
488488
460CF7EC2076F75A00FB3723 /* redis-cli in Resources */,
489489
460CF7DA20758D2C00FB3723 /* redis-server in Resources */,
490490
460CF7EA2076EB0800FB3723 /* redis.conf in Resources */,

AdversaryLabSwift.xcodeproj/xcuserdata/Lita.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -117,22 +117,6 @@
117117
landmarkType = "7">
118118
</BreakpointContent>
119119
</BreakpointProxy>
120-
<BreakpointProxy
121-
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
122-
<BreakpointContent
123-
shouldBeEnabled = "Yes"
124-
ignoreCount = "0"
125-
continueAfterRunningActions = "No"
126-
filePath = "AdversaryLabSwiftPackage/.build/checkouts/Auburn.git-2950637113269748138/Sources/Auburn/RSortedSet.swift"
127-
timestampString = "544985013.758042"
128-
startingColumnNumber = "9223372036854775807"
129-
endingColumnNumber = "9223372036854775807"
130-
startingLineNumber = "516"
131-
endingLineNumber = "516"
132-
landmarkName = "addSubsequences(sequence:)"
133-
landmarkType = "7">
134-
</BreakpointContent>
135-
</BreakpointProxy>
136120
<BreakpointProxy
137121
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
138122
<BreakpointContent

0 commit comments

Comments
 (0)