-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathAlgoScryptModified.swift
49 lines (40 loc) · 1.14 KB
/
AlgoScryptModified.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import Foundation
import JSONCodable
/// AlgoScryptModified
public class AlgoScryptModified {
/// Algo type.
public let type: String
/// Salt used to compute hash.
public let salt: String
/// Separator used to compute hash.
public let saltSeparator: String
/// Key used to compute hash.
public let signerKey: String
init(
type: String,
salt: String,
saltSeparator: String,
signerKey: String
) {
self.type = type
self.salt = salt
self.saltSeparator = saltSeparator
self.signerKey = signerKey
}
public func toMap() -> [String: Any] {
return [
"type": type as Any,
"salt": salt as Any,
"saltSeparator": saltSeparator as Any,
"signerKey": signerKey as Any
]
}
public static func from(map: [String: Any] ) -> AlgoScryptModified {
return AlgoScryptModified(
type: map["type"] as! String,
salt: map["salt"] as! String,
saltSeparator: map["saltSeparator"] as! String,
signerKey: map["signerKey"] as! String
)
}
}