@cipherstash/protect-ffi 0.23.0 → 0.25.0
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/dist/wasm/package.json +3 -0
- package/dist/wasm/protect_ffi.d.ts +84 -0
- package/dist/wasm/protect_ffi.js +9 -0
- package/dist/wasm/protect_ffi_bg.js +1051 -0
- package/dist/wasm/protect_ffi_bg.wasm +0 -0
- package/dist/wasm/protect_ffi_bg.wasm.d.ts +40 -0
- package/dist/wasm/protect_ffi_inline.js +16 -0
- package/lib/index.cjs +1 -1
- package/lib/index.d.cts +17 -11
- package/package.json +36 -16
|
Binary file
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
export const memory: WebAssembly.Memory;
|
|
4
|
+
export const __wbg_wasmclient_free: (a: number, b: number) => void;
|
|
5
|
+
export const decrypt: (a: number, b: any) => any;
|
|
6
|
+
export const decryptBulk: (a: number, b: any) => any;
|
|
7
|
+
export const decryptBulkFallible: (a: number, b: any) => any;
|
|
8
|
+
export const encrypt: (a: number, b: any) => any;
|
|
9
|
+
export const encryptBulk: (a: number, b: any) => any;
|
|
10
|
+
export const encryptQuery: (a: number, b: any) => any;
|
|
11
|
+
export const encryptQueryBulk: (a: number, b: any) => any;
|
|
12
|
+
export const init: () => void;
|
|
13
|
+
export const isEncrypted: (a: any) => number;
|
|
14
|
+
export const newClient: (a: any) => any;
|
|
15
|
+
export const __wbg_intounderlyingsource_free: (a: number, b: number) => void;
|
|
16
|
+
export const intounderlyingsource_cancel: (a: number) => void;
|
|
17
|
+
export const intounderlyingsource_pull: (a: number, b: any) => any;
|
|
18
|
+
export const __wbg_intounderlyingsink_free: (a: number, b: number) => void;
|
|
19
|
+
export const intounderlyingsink_abort: (a: number, b: any) => any;
|
|
20
|
+
export const intounderlyingsink_close: (a: number) => any;
|
|
21
|
+
export const intounderlyingsink_write: (a: number, b: any) => any;
|
|
22
|
+
export const __wbg_intounderlyingbytesource_free: (a: number, b: number) => void;
|
|
23
|
+
export const intounderlyingbytesource_autoAllocateChunkSize: (a: number) => number;
|
|
24
|
+
export const intounderlyingbytesource_cancel: (a: number) => void;
|
|
25
|
+
export const intounderlyingbytesource_pull: (a: number, b: any) => any;
|
|
26
|
+
export const intounderlyingbytesource_start: (a: number, b: any) => void;
|
|
27
|
+
export const intounderlyingbytesource_type: (a: number) => number;
|
|
28
|
+
export const wasm_bindgen__closure__destroy__h379cc5f9ba73967b: (a: number, b: number) => void;
|
|
29
|
+
export const wasm_bindgen__closure__destroy__h18e55ed08acd10aa: (a: number, b: number) => void;
|
|
30
|
+
export const wasm_bindgen__convert__closures_____invoke__h425499e9ab8a95b4: (a: number, b: number, c: any) => [number, number];
|
|
31
|
+
export const wasm_bindgen__convert__closures_____invoke__h1201fec59d36da32: (a: number, b: number, c: any, d: any) => void;
|
|
32
|
+
export const wasm_bindgen__convert__closures_____invoke__hc060a2339985e908: (a: number, b: number) => void;
|
|
33
|
+
export const __wbindgen_malloc: (a: number, b: number) => number;
|
|
34
|
+
export const __wbindgen_realloc: (a: number, b: number, c: number, d: number) => number;
|
|
35
|
+
export const __wbindgen_exn_store: (a: number) => void;
|
|
36
|
+
export const __externref_table_alloc: () => number;
|
|
37
|
+
export const __wbindgen_externrefs: WebAssembly.Table;
|
|
38
|
+
export const __wbindgen_free: (a: number, b: number, c: number) => void;
|
|
39
|
+
export const __externref_table_dealloc: (a: number) => void;
|
|
40
|
+
export const __wbindgen_start: () => void;
|