We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e111e8 commit bc35972Copy full SHA for bc35972
src/lib/crypto/kimchi_bindings/js/node_js/node_backend.js
@@ -23,5 +23,14 @@ function override(functionName) {
23
}
24
25
// Overwrite only the functions that are already available in native
26
-override('caml_pasta_fp_poseidon_block_cipher');
27
-override('caml_pasta_fq_poseidon_block_cipher');
+[
+ 'caml_pasta_fp_poseidon_block_cipher', // Poseidon
28
+ 'caml_pasta_fq_poseidon_block_cipher', // Poseidon
29
+ 'WasmFpPolyComm', // PolyComm
30
+ 'WasmFqPolyComm', // PolyComm
31
+ 'WasmGPallas', // Group
32
+ 'WasmGVesta', // Group
33
+ 'WasmVecVecFp', // Vector
34
+ 'WasmVecVecFq', // Vector
35
+].forEach(override);
36
+
0 commit comments