tfhe 1.4.1 → 1.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/tfhe.d.ts +1 -1
- package/tfhe.js +5 -4
- package/tfhe_bg.wasm +0 -0
package/package.json
CHANGED
package/tfhe.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
-
export function set_server_key(server_key: TfheServerKey): void;
|
|
4
3
|
export function init_panic_hook(): void;
|
|
4
|
+
export function set_server_key(server_key: TfheServerKey): void;
|
|
5
5
|
export function shortint_pke_params_name(param: ShortintCompactPublicKeyEncryptionParametersName): string;
|
|
6
6
|
export function shortint_params_name(param: ShortintParametersName): string;
|
|
7
7
|
export function wbg_rayon_start_worker(receiver: number): void;
|
package/tfhe.js
CHANGED
|
@@ -200,6 +200,11 @@ function _assertClass(instance, klass) {
|
|
|
200
200
|
throw new Error(`expected instance of ${klass.name}`);
|
|
201
201
|
}
|
|
202
202
|
}
|
|
203
|
+
|
|
204
|
+
export function init_panic_hook() {
|
|
205
|
+
wasm.init_panic_hook();
|
|
206
|
+
}
|
|
207
|
+
|
|
203
208
|
/**
|
|
204
209
|
* @param {TfheServerKey} server_key
|
|
205
210
|
*/
|
|
@@ -211,10 +216,6 @@ export function set_server_key(server_key) {
|
|
|
211
216
|
}
|
|
212
217
|
}
|
|
213
218
|
|
|
214
|
-
export function init_panic_hook() {
|
|
215
|
-
wasm.init_panic_hook();
|
|
216
|
-
}
|
|
217
|
-
|
|
218
219
|
/**
|
|
219
220
|
* @param {ShortintCompactPublicKeyEncryptionParametersName} param
|
|
220
221
|
* @returns {string}
|
package/tfhe_bg.wasm
CHANGED
|
Binary file
|