-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPublicPolynomial.swift
65 lines (56 loc) · 2.14 KB
/
PublicPolynomial.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import Foundation
#if canImport(tkey)
import tkey
#endif
public final class PublicPolynomial {
private(set) var pointer: OpaquePointer?
internal let curveN = "fffffffffffffffffffffffffffffffebaaedce6af48a03bbfd25e8cd0364141"
/// Instantiate a `PublicPolynomial` object using the underlying pointer.
///
/// - Parameters:
/// - pointer: The pointer to the underlying foreign function interface object.
///
/// - Returns: `Polynomial`
///
/// - Throws: `RuntimeError`, indicates underlying pointer is invalid.
public init(pointer: OpaquePointer) {
self.pointer = pointer;
}
/// Threshold for the `PublicPolynomial`.
///
/// - Returns: `UInt32`
///
/// - Throws: `RuntimeError`, indicates underlying pointer is invalid.
public func getThreshold() throws -> UInt32 {
var errorCode: Int32 = -1
let result = withUnsafeMutablePointer(to: &errorCode, {error in
public_polynomial_get_threshold(self.pointer, error)
})
guard errorCode == 0 else {
throw RuntimeError("Error in Public Polynomial, get threshold")
}
return result;
}
/// Returns the `KeyPoint` at the respective share index.
/// - Parameters:
/// - index: Share index to be used.
///
/// - Returns: `KeyPoint`
///
/// - Throws: `RuntimeError`, indicates underlying pointer is invalid.
public func polyCommitmentEval(index: String) throws -> KeyPoint {
var errorCode: Int32 = -1
let curvePointer = UnsafeMutablePointer<Int8>(mutating: (curveN as NSString).utf8String)
let indexesPointer = UnsafeMutablePointer<Int8>(mutating: (index as NSString).utf8String)
let result = withUnsafeMutablePointer(to: &errorCode, {error in
public_polynomial_poly_commitment_eval(self.pointer, indexesPointer,curvePointer, error)
})
guard errorCode == 0 else {
throw RuntimeError("Error in PublicPolynomial, polyCommitmentEval")
}
return KeyPoint(pointer: result!);
}
deinit {
public_polynomial_free(pointer);
}
}