Skip to content

Commit 7ca94d3

Browse files
committed
Make bytes public in salt (getter)
1 parent 2f5799c commit 7ca94d3

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

Sources/Swift/Salt.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import Foundation
1010
public 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

Tests/XCTestManifests.swift

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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

0 commit comments

Comments
 (0)