-
Notifications
You must be signed in to change notification settings - Fork 557
/
Copy pathsrs.js
200 lines (175 loc) · 5.75 KB
/
srs.js
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
/* global plonk_wasm, caml_jsstring_of_string,
tsBindings, tsRustConversion
*/
// Provides: tsSrs
// Requires: tsBindings, plonk_wasm
var tsSrs = tsBindings.srs(plonk_wasm);
// srs
// Provides: caml_fp_srs_create
// Requires: tsSrs
var caml_fp_srs_create = tsSrs.fp.create;
// Provides: caml_fp_srs_write
// Requires: plonk_wasm, caml_jsstring_of_string
var caml_fp_srs_write = function (append, t, path) {
if (append === 0) {
append = undefined;
} else {
append = append[1];
}
return plonk_wasm.caml_fp_srs_write(append, t, caml_jsstring_of_string(path));
};
// Provides: caml_fp_srs_read
// Requires: plonk_wasm, caml_jsstring_of_string
var caml_fp_srs_read = function (offset, path) {
if (offset === 0) {
offset = undefined;
} else {
offset = offset[1];
}
var res = plonk_wasm.caml_fp_srs_read(offset, caml_jsstring_of_string(path));
if (res) {
return [0, res]; // Some(res)
} else {
return 0; // None
}
};
// Provides: caml_fp_srs_lagrange_commitments_whole_domain
// Requires: tsSrs
var caml_fp_srs_lagrange_commitments_whole_domain = tsSrs.fp.lagrangeCommitmentsWholeDomain;
// Provides: caml_fp_srs_lagrange_commitment
// Requires: tsSrs
var caml_fp_srs_lagrange_commitment = tsSrs.fp.lagrangeCommitment;
// Provides: caml_fp_srs_commit_evaluations
// Requires: plonk_wasm, tsRustConversion
var caml_fp_srs_commit_evaluations = function (t, domain_size, fps) {
var res = plonk_wasm.caml_fp_srs_commit_evaluations(
t,
domain_size,
tsRustConversion.fp.vectorToRust(fps)
);
return tsRustConversion.fp.polyCommFromRust(res);
};
// Provides: caml_fp_srs_b_poly_commitment
// Requires: plonk_wasm, tsRustConversion
var caml_fp_srs_b_poly_commitment = function (srs, chals) {
var res = plonk_wasm.caml_fp_srs_b_poly_commitment(
srs,
tsRustConversion.fieldsToRustFlat(chals)
);
return tsRustConversion.fp.polyCommFromRust(res);
};
// Provides: caml_fp_srs_batch_accumulator_check
// Requires: plonk_wasm, tsRustConversion
var caml_fp_srs_batch_accumulator_check = function (srs, comms, chals) {
var rust_comms = tsRustConversion.fp.pointsToRust(comms);
var rust_chals = tsRustConversion.fp.vectorToRust(chals);
var ok = plonk_wasm.caml_fp_srs_batch_accumulator_check(
srs,
rust_comms,
rust_chals
);
return ok;
};
// Provides: caml_fp_srs_batch_accumulator_generate
// Requires: plonk_wasm, tsRustConversion
var caml_fp_srs_batch_accumulator_generate = function (srs, n_comms, chals) {
var rust_chals = tsRustConversion.fp.vectorToRust(chals);
var rust_comms = plonk_wasm.caml_fp_srs_batch_accumulator_generate(
srs,
n_comms,
rust_chals
);
return tsRustConversion.fp.pointsFromRust(rust_comms);
};
// Provides: caml_fp_srs_h
// Requires: plonk_wasm, tsRustConversion
var caml_fp_srs_h = function (t) {
return tsRustConversion.fp.pointFromRust(plonk_wasm.caml_fp_srs_h(t));
};
// Provides: caml_fp_srs_add_lagrange_basis
// Requires: tsSrs
var caml_fp_srs_add_lagrange_basis = tsSrs.fp.addLagrangeBasis;
// Provides: caml_fq_srs_create
// Requires: tsSrs
var caml_fq_srs_create = tsSrs.fq.create;
// Provides: caml_fq_srs_write
// Requires: plonk_wasm, caml_jsstring_of_string
var caml_fq_srs_write = function (append, t, path) {
if (append === 0) {
append = undefined;
} else {
append = append[1];
}
return plonk_wasm.caml_fq_srs_write(append, t, caml_jsstring_of_string(path));
};
// Provides: caml_fq_srs_read
// Requires: plonk_wasm, caml_jsstring_of_string
var caml_fq_srs_read = function (offset, path) {
if (offset === 0) {
offset = undefined;
} else {
offset = offset[1];
}
var res = plonk_wasm.caml_fq_srs_read(offset, caml_jsstring_of_string(path));
if (res) {
return [0, res]; // Some(res)
} else {
return 0; // None
}
};
// Provides: caml_fq_srs_lagrange_commitments_whole_domain
// Requires: tsSrs
var caml_fq_srs_lagrange_commitments_whole_domain = tsSrs.fq.lagrangeCommitmentsWholeDomain;
// Provides: caml_fq_srs_lagrange_commitment
// Requires: tsSrs
var caml_fq_srs_lagrange_commitment = tsSrs.fq.lagrangeCommitment;
// Provides: caml_fq_srs_commit_evaluations
// Requires: plonk_wasm, tsRustConversion
var caml_fq_srs_commit_evaluations = function (t, domain_size, fqs) {
var res = plonk_wasm.caml_fq_srs_commit_evaluations(
t,
domain_size,
tsRustConversion.fq.vectorToRust(fqs)
);
return tsRustConversion.fq.polyCommFromRust(res);
};
// Provides: caml_fq_srs_b_poly_commitment
// Requires: plonk_wasm, tsRustConversion
var caml_fq_srs_b_poly_commitment = function (srs, chals) {
var res = plonk_wasm.caml_fq_srs_b_poly_commitment(
srs,
tsRustConversion.fieldsToRustFlat(chals)
);
return tsRustConversion.fq.polyCommFromRust(res);
};
// Provides: caml_fq_srs_batch_accumulator_check
// Requires: plonk_wasm, tsRustConversion
var caml_fq_srs_batch_accumulator_check = function (srs, comms, chals) {
var rust_comms = tsRustConversion.fq.pointsToRust(comms);
var rust_chals = tsRustConversion.fq.vectorToRust(chals);
var ok = plonk_wasm.caml_fq_srs_batch_accumulator_check(
srs,
rust_comms,
rust_chals
);
return ok;
};
// Provides: caml_fq_srs_batch_accumulator_generate
// Requires: plonk_wasm, tsRustConversion
var caml_fq_srs_batch_accumulator_generate = function (srs, comms, chals) {
var rust_chals = tsRustConversion.fq.vectorToRust(chals);
var rust_comms = plonk_wasm.caml_fq_srs_batch_accumulator_generate(
srs,
comms,
rust_chals
);
return tsRustConversion.fq.pointsFromRust(rust_comms);
};
// Provides: caml_fq_srs_h
// Requires: plonk_wasm, tsRustConversion
var caml_fq_srs_h = function (t) {
return tsRustConversion.fq.pointFromRust(plonk_wasm.caml_fq_srs_h(t));
};
// Provides: caml_fq_srs_add_lagrange_basis
// Requires: tsSrs
var caml_fq_srs_add_lagrange_basis = tsSrs.fq.addLagrangeBasis;