File tree Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import Foundation
1010public class Salt {
1111
1212 /// The byte-array that the salt class wraps around
13- let bytes : Data
13+ public let bytes : Data
1414
1515 /**
1616 Initializes a new `Salt` object with the provided byte array
Original file line number Diff line number Diff line change 1+ #if !canImport(ObjectiveC)
2+ import XCTest
3+
4+ extension Argon2SwiftTests {
5+ // DO NOT MODIFY: This is autogenerated, use:
6+ // `swift test --generate-linuxmain`
7+ // to regenerate.
8+ static let __allTests__Argon2SwiftTests = [
9+ ( " testArgon2d " , testArgon2d) ,
10+ ( " testArgon2i " , testArgon2i) ,
11+ ( " testArgon2id " , testArgon2id) ,
12+ ]
13+ }
14+
15+ public func __allTests( ) -> [ XCTestCaseEntry ] {
16+ return [
17+ testCase ( Argon2SwiftTests . __allTests__Argon2SwiftTests) ,
18+ ]
19+ }
20+ #endif
You can’t perform that action at this time.
0 commit comments