File tree 2 files changed +21
-1
lines changed
2 files changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import Foundation
10
10
public class Salt {
11
11
12
12
/// The byte-array that the salt class wraps around
13
- let bytes : Data
13
+ public let bytes : Data
14
14
15
15
/**
16
16
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