UNPKG

tlsn-wasm

Version:

A core WebAssembly package for TLSNotary.

1,420 lines (1,316 loc) 47 kB
import { startSpawnerWorker } from './snippets/web-spawn-0303048270a97ee1/js/spawn.js'; let wasm; let WASM_VECTOR_LEN = 0; let cachedUint8ArrayMemory0 = null; function getUint8ArrayMemory0() { if (cachedUint8ArrayMemory0 === null || cachedUint8ArrayMemory0.buffer !== wasm.memory.buffer) { cachedUint8ArrayMemory0 = new Uint8Array(wasm.memory.buffer); } return cachedUint8ArrayMemory0; } const cachedTextEncoder = (typeof TextEncoder !== 'undefined' ? new TextEncoder('utf-8') : { encode: () => { throw Error('TextEncoder not available') } } ); const encodeString = function (arg, view) { const buf = cachedTextEncoder.encode(arg); view.set(buf); return { read: arg.length, written: buf.length }; }; function passStringToWasm0(arg, malloc, realloc) { if (realloc === undefined) { const buf = cachedTextEncoder.encode(arg); const ptr = malloc(buf.length, 1) >>> 0; getUint8ArrayMemory0().subarray(ptr, ptr + buf.length).set(buf); WASM_VECTOR_LEN = buf.length; return ptr; } let len = arg.length; let ptr = malloc(len, 1) >>> 0; const mem = getUint8ArrayMemory0(); let offset = 0; for (; offset < len; offset++) { const code = arg.charCodeAt(offset); if (code > 0x7F) break; mem[ptr + offset] = code; } if (offset !== len) { if (offset !== 0) { arg = arg.slice(offset); } ptr = realloc(ptr, len, len = offset + arg.length * 3, 1) >>> 0; const view = getUint8ArrayMemory0().subarray(ptr + offset, ptr + len); const ret = encodeString(arg, view); offset += ret.written; ptr = realloc(ptr, len, offset, 1) >>> 0; } WASM_VECTOR_LEN = offset; return ptr; } let cachedDataViewMemory0 = null; function getDataViewMemory0() { if (cachedDataViewMemory0 === null || cachedDataViewMemory0.buffer !== wasm.memory.buffer) { cachedDataViewMemory0 = new DataView(wasm.memory.buffer); } return cachedDataViewMemory0; } function addToExternrefTable0(obj) { const idx = wasm.__externref_table_alloc(); wasm.__wbindgen_export_5.set(idx, obj); return idx; } function handleError(f, args) { try { return f.apply(this, args); } catch (e) { const idx = addToExternrefTable0(e); wasm.__wbindgen_exn_store(idx); } } const cachedTextDecoder = (typeof TextDecoder !== 'undefined' ? new TextDecoder('utf-8', { ignoreBOM: true, fatal: true }) : { decode: () => { throw Error('TextDecoder not available') } } ); if (typeof TextDecoder !== 'undefined') { cachedTextDecoder.decode(); }; function getStringFromWasm0(ptr, len) { ptr = ptr >>> 0; return cachedTextDecoder.decode(getUint8ArrayMemory0().slice(ptr, ptr + len)); } function isLikeNone(x) { return x === undefined || x === null; } const CLOSURE_DTORS = (typeof FinalizationRegistry === 'undefined') ? { register: () => {}, unregister: () => {} } : new FinalizationRegistry(state => { wasm.__wbindgen_export_7.get(state.dtor)(state.a, state.b) }); function makeMutClosure(arg0, arg1, dtor, f) { const state = { a: arg0, b: arg1, cnt: 1, dtor }; const real = (...args) => { // First up with a closure we increment the internal reference // count. This ensures that the Rust closure environment won't // be deallocated while we're invoking it. state.cnt++; const a = state.a; state.a = 0; try { return f(a, state.b, ...args); } finally { if (--state.cnt === 0) { wasm.__wbindgen_export_7.get(state.dtor)(a, state.b); CLOSURE_DTORS.unregister(state); } else { state.a = a; } } }; real.original = state; CLOSURE_DTORS.register(real, state, state); return real; } function debugString(val) { // primitive types const type = typeof val; if (type == 'number' || type == 'boolean' || val == null) { return `${val}`; } if (type == 'string') { return `"${val}"`; } if (type == 'symbol') { const description = val.description; if (description == null) { return 'Symbol'; } else { return `Symbol(${description})`; } } if (type == 'function') { const name = val.name; if (typeof name == 'string' && name.length > 0) { return `Function(${name})`; } else { return 'Function'; } } // objects if (Array.isArray(val)) { const length = val.length; let debug = '['; if (length > 0) { debug += debugString(val[0]); } for(let i = 1; i < length; i++) { debug += ', ' + debugString(val[i]); } debug += ']'; return debug; } // Test for built-in const builtInMatches = /\[object ([^\]]+)\]/.exec(toString.call(val)); let className; if (builtInMatches && builtInMatches.length > 1) { className = builtInMatches[1]; } else { // Failed to match the standard '[object ClassName]' return toString.call(val); } if (className == 'Object') { // we're a user defined class or Object // JSON.stringify avoids problems with cycles, and is generally much // easier than looping through ownProperties of `val`. try { return 'Object(' + JSON.stringify(val) + ')'; } catch (_) { return 'Object'; } } // errors if (val instanceof Error) { return `${val.name}: ${val.message}\n${val.stack}`; } // TODO we could test for more things here, like `Set`s and `Map`s. return className; } function takeFromExternrefTable0(idx) { const value = wasm.__wbindgen_export_5.get(idx); wasm.__externref_table_dealloc(idx); return value; } function getArrayU8FromWasm0(ptr, len) { ptr = ptr >>> 0; return getUint8ArrayMemory0().subarray(ptr / 1, ptr / 1 + len); } function passArray8ToWasm0(arg, malloc) { const ptr = malloc(arg.length * 1, 1) >>> 0; getUint8ArrayMemory0().set(arg, ptr / 1); WASM_VECTOR_LEN = arg.length; return ptr; } function _assertClass(instance, klass) { if (!(instance instanceof klass)) { throw new Error(`expected instance of ${klass.name}`); } } /** * Initializes the module. * @param {LoggingConfig | null | undefined} logging_config * @param {number} thread_count * @returns {Promise<void>} */ export function initialize(logging_config, thread_count) { const ret = wasm.initialize(isLikeNone(logging_config) ? 0 : addToExternrefTable0(logging_config), thread_count); return ret; } /** * Builds a presentation. * @param {Attestation} attestation * @param {Secrets} secrets * @param {Reveal} reveal * @returns {Presentation} */ export function build_presentation(attestation, secrets, reveal) { _assertClass(attestation, Attestation); _assertClass(secrets, Secrets); const ret = wasm.build_presentation(attestation.__wbg_ptr, secrets.__wbg_ptr, reveal); if (ret[2]) { throw takeFromExternrefTable0(ret[1]); } return Presentation.__wrap(ret[0]); } /** * @param {number} worker */ export function web_spawn_start_worker(worker) { wasm.web_spawn_start_worker(worker); } /** * @param {number} spawner * @returns {Spawner} */ export function web_spawn_recover_spawner(spawner) { const ret = wasm.web_spawn_recover_spawner(spawner); return Spawner.__wrap(ret); } /** * Starts the thread spawner on a dedicated worker thread. * @returns {Promise<any>} */ export function startSpawner() { const ret = wasm.startSpawner(); return ret; } function __wbg_adapter_56(arg0, arg1) { wasm._dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h36d577a13c442f93(arg0, arg1); } function __wbg_adapter_59(arg0, arg1, arg2) { wasm.closure1094_externref_shim(arg0, arg1, arg2); } function __wbg_adapter_62(arg0, arg1, arg2) { wasm.closure3738_externref_shim(arg0, arg1, arg2); } function __wbg_adapter_257(arg0, arg1, arg2, arg3) { wasm.closure4289_externref_shim(arg0, arg1, arg2, arg3); } const __wbindgen_enum_BinaryType = ["blob", "arraybuffer"]; const __wbindgen_enum_WorkerType = ["classic", "module"]; const AttestationFinalization = (typeof FinalizationRegistry === 'undefined') ? { register: () => {}, unregister: () => {} } : new FinalizationRegistry(ptr => wasm.__wbg_attestation_free(ptr >>> 0, 1)); export class Attestation { static __wrap(ptr) { ptr = ptr >>> 0; const obj = Object.create(Attestation.prototype); obj.__wbg_ptr = ptr; AttestationFinalization.register(obj, obj.__wbg_ptr, obj); return obj; } __destroy_into_raw() { const ptr = this.__wbg_ptr; this.__wbg_ptr = 0; AttestationFinalization.unregister(this); return ptr; } free() { const ptr = this.__destroy_into_raw(); wasm.__wbg_attestation_free(ptr, 0); } /** * @returns {VerifyingKey} */ verifying_key() { const ret = wasm.attestation_verifying_key(this.__wbg_ptr); return ret; } /** * Serializes to a byte array. * @returns {Uint8Array} */ serialize() { const ret = wasm.attestation_serialize(this.__wbg_ptr); var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice(); wasm.__wbindgen_free(ret[0], ret[1] * 1, 1); return v1; } /** * Deserializes from a byte array. * @param {Uint8Array} bytes * @returns {Attestation} */ static deserialize(bytes) { const ptr0 = passArray8ToWasm0(bytes, wasm.__wbindgen_malloc); const len0 = WASM_VECTOR_LEN; const ret = wasm.attestation_deserialize(ptr0, len0); if (ret[2]) { throw takeFromExternrefTable0(ret[1]); } return Attestation.__wrap(ret[0]); } } const NotarizationOutputFinalization = (typeof FinalizationRegistry === 'undefined') ? { register: () => {}, unregister: () => {} } : new FinalizationRegistry(ptr => wasm.__wbg_notarizationoutput_free(ptr >>> 0, 1)); export class NotarizationOutput { static __wrap(ptr) { ptr = ptr >>> 0; const obj = Object.create(NotarizationOutput.prototype); obj.__wbg_ptr = ptr; NotarizationOutputFinalization.register(obj, obj.__wbg_ptr, obj); return obj; } __destroy_into_raw() { const ptr = this.__wbg_ptr; this.__wbg_ptr = 0; NotarizationOutputFinalization.unregister(this); return ptr; } free() { const ptr = this.__destroy_into_raw(); wasm.__wbg_notarizationoutput_free(ptr, 0); } /** * @returns {Attestation} */ get attestation() { const ret = wasm.__wbg_get_notarizationoutput_attestation(this.__wbg_ptr); return Attestation.__wrap(ret); } /** * @param {Attestation} arg0 */ set attestation(arg0) { _assertClass(arg0, Attestation); var ptr0 = arg0.__destroy_into_raw(); wasm.__wbg_set_notarizationoutput_attestation(this.__wbg_ptr, ptr0); } /** * @returns {Secrets} */ get secrets() { const ret = wasm.__wbg_get_notarizationoutput_secrets(this.__wbg_ptr); return Secrets.__wrap(ret); } /** * @param {Secrets} arg0 */ set secrets(arg0) { _assertClass(arg0, Secrets); var ptr0 = arg0.__destroy_into_raw(); wasm.__wbg_set_notarizationoutput_secrets(this.__wbg_ptr, ptr0); } } const PresentationFinalization = (typeof FinalizationRegistry === 'undefined') ? { register: () => {}, unregister: () => {} } : new FinalizationRegistry(ptr => wasm.__wbg_presentation_free(ptr >>> 0, 1)); export class Presentation { static __wrap(ptr) { ptr = ptr >>> 0; const obj = Object.create(Presentation.prototype); obj.__wbg_ptr = ptr; PresentationFinalization.register(obj, obj.__wbg_ptr, obj); return obj; } __destroy_into_raw() { const ptr = this.__wbg_ptr; this.__wbg_ptr = 0; PresentationFinalization.unregister(this); return ptr; } free() { const ptr = this.__destroy_into_raw(); wasm.__wbg_presentation_free(ptr, 0); } /** * Returns the verifying key. * @returns {VerifyingKey} */ verifying_key() { const ret = wasm.presentation_verifying_key(this.__wbg_ptr); return ret; } /** * Verifies the presentation. * @returns {PresentationOutput} */ verify() { const ret = wasm.presentation_verify(this.__wbg_ptr); if (ret[2]) { throw takeFromExternrefTable0(ret[1]); } return takeFromExternrefTable0(ret[0]); } /** * @returns {Uint8Array} */ serialize() { const ret = wasm.presentation_serialize(this.__wbg_ptr); var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice(); wasm.__wbindgen_free(ret[0], ret[1] * 1, 1); return v1; } /** * @param {Uint8Array} bytes * @returns {Presentation} */ static deserialize(bytes) { const ptr0 = passArray8ToWasm0(bytes, wasm.__wbindgen_malloc); const len0 = WASM_VECTOR_LEN; const ret = wasm.presentation_deserialize(ptr0, len0); if (ret[2]) { throw takeFromExternrefTable0(ret[1]); } return Presentation.__wrap(ret[0]); } } const ProverFinalization = (typeof FinalizationRegistry === 'undefined') ? { register: () => {}, unregister: () => {} } : new FinalizationRegistry(ptr => wasm.__wbg_prover_free(ptr >>> 0, 1)); export class Prover { __destroy_into_raw() { const ptr = this.__wbg_ptr; this.__wbg_ptr = 0; ProverFinalization.unregister(this); return ptr; } free() { const ptr = this.__destroy_into_raw(); wasm.__wbg_prover_free(ptr, 0); } /** * @param {ProverConfig} config */ constructor(config) { const ret = wasm.prover_new(config); this.__wbg_ptr = ret >>> 0; ProverFinalization.register(this, this.__wbg_ptr, this); return this; } /** * Set up the prover. * * This performs all MPC setup prior to establishing the connection to the * application server. * @param {string} verifier_url * @returns {Promise<void>} */ setup(verifier_url) { const ptr0 = passStringToWasm0(verifier_url, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); const len0 = WASM_VECTOR_LEN; const ret = wasm.prover_setup(this.__wbg_ptr, ptr0, len0); return ret; } /** * Send the HTTP request to the server. * @param {string} ws_proxy_url * @param {HttpRequest} request * @returns {Promise<HttpResponse>} */ send_request(ws_proxy_url, request) { const ptr0 = passStringToWasm0(ws_proxy_url, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); const len0 = WASM_VECTOR_LEN; const ret = wasm.prover_send_request(this.__wbg_ptr, ptr0, len0, request); return ret; } /** * Returns the transcript. * @returns {Transcript} */ transcript() { const ret = wasm.prover_transcript(this.__wbg_ptr); if (ret[2]) { throw takeFromExternrefTable0(ret[1]); } return takeFromExternrefTable0(ret[0]); } /** * Runs the notarization protocol. * @param {Commit} commit * @returns {Promise<NotarizationOutput>} */ notarize(commit) { const ret = wasm.prover_notarize(this.__wbg_ptr, commit); return ret; } /** * Reveals data to the verifier and finalizes the protocol. * @param {Reveal} reveal * @returns {Promise<void>} */ reveal(reveal) { const ret = wasm.prover_reveal(this.__wbg_ptr, reveal); return ret; } } const SecretsFinalization = (typeof FinalizationRegistry === 'undefined') ? { register: () => {}, unregister: () => {} } : new FinalizationRegistry(ptr => wasm.__wbg_secrets_free(ptr >>> 0, 1)); export class Secrets { static __wrap(ptr) { ptr = ptr >>> 0; const obj = Object.create(Secrets.prototype); obj.__wbg_ptr = ptr; SecretsFinalization.register(obj, obj.__wbg_ptr, obj); return obj; } __destroy_into_raw() { const ptr = this.__wbg_ptr; this.__wbg_ptr = 0; SecretsFinalization.unregister(this); return ptr; } free() { const ptr = this.__destroy_into_raw(); wasm.__wbg_secrets_free(ptr, 0); } /** * Returns the transcript. * @returns {Transcript} */ transcript() { const ret = wasm.secrets_transcript(this.__wbg_ptr); return ret; } /** * Serializes to a byte array. * @returns {Uint8Array} */ serialize() { const ret = wasm.secrets_serialize(this.__wbg_ptr); var v1 = getArrayU8FromWasm0(ret[0], ret[1]).slice(); wasm.__wbindgen_free(ret[0], ret[1] * 1, 1); return v1; } /** * Deserializes from a byte array. * @param {Uint8Array} bytes * @returns {Secrets} */ static deserialize(bytes) { const ptr0 = passArray8ToWasm0(bytes, wasm.__wbindgen_malloc); const len0 = WASM_VECTOR_LEN; const ret = wasm.secrets_deserialize(ptr0, len0); if (ret[2]) { throw takeFromExternrefTable0(ret[1]); } return Secrets.__wrap(ret[0]); } } const SpawnerFinalization = (typeof FinalizationRegistry === 'undefined') ? { register: () => {}, unregister: () => {} } : new FinalizationRegistry(ptr => wasm.__wbg_spawner_free(ptr >>> 0, 1)); /** * Global spawner which spawns closures into web workers. */ export class Spawner { static __wrap(ptr) { ptr = ptr >>> 0; const obj = Object.create(Spawner.prototype); obj.__wbg_ptr = ptr; SpawnerFinalization.register(obj, obj.__wbg_ptr, obj); return obj; } __destroy_into_raw() { const ptr = this.__wbg_ptr; this.__wbg_ptr = 0; SpawnerFinalization.unregister(this); return ptr; } free() { const ptr = this.__destroy_into_raw(); wasm.__wbg_spawner_free(ptr, 0); } /** * @returns {number} */ intoRaw() { const ptr = this.__destroy_into_raw(); const ret = wasm.spawner_intoRaw(ptr); return ret >>> 0; } /** * Runs the spawner. * @param {string} url * @returns {Promise<void>} */ run(url) { const ptr0 = passStringToWasm0(url, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); const len0 = WASM_VECTOR_LEN; const ret = wasm.spawner_run(this.__wbg_ptr, ptr0, len0); return ret; } } const VerifierFinalization = (typeof FinalizationRegistry === 'undefined') ? { register: () => {}, unregister: () => {} } : new FinalizationRegistry(ptr => wasm.__wbg_verifier_free(ptr >>> 0, 1)); export class Verifier { __destroy_into_raw() { const ptr = this.__wbg_ptr; this.__wbg_ptr = 0; VerifierFinalization.unregister(this); return ptr; } free() { const ptr = this.__destroy_into_raw(); wasm.__wbg_verifier_free(ptr, 0); } /** * @param {VerifierConfig} config */ constructor(config) { const ret = wasm.verifier_new(config); this.__wbg_ptr = ret >>> 0; VerifierFinalization.register(this, this.__wbg_ptr, this); return this; } /** * Connect to the prover. * @param {string} prover_url * @returns {Promise<void>} */ connect(prover_url) { const ptr0 = passStringToWasm0(prover_url, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); const len0 = WASM_VECTOR_LEN; const ret = wasm.verifier_connect(this.__wbg_ptr, ptr0, len0); return ret; } /** * Verifies the connection and finalizes the protocol. * @returns {Promise<VerifierOutput>} */ verify() { const ret = wasm.verifier_verify(this.__wbg_ptr); return ret; } } const WorkerDataFinalization = (typeof FinalizationRegistry === 'undefined') ? { register: () => {}, unregister: () => {} } : new FinalizationRegistry(ptr => wasm.__wbg_workerdata_free(ptr >>> 0, 1)); export class WorkerData { __destroy_into_raw() { const ptr = this.__wbg_ptr; this.__wbg_ptr = 0; WorkerDataFinalization.unregister(this); return ptr; } free() { const ptr = this.__destroy_into_raw(); wasm.__wbg_workerdata_free(ptr, 0); } } async function __wbg_load(module, imports) { if (typeof Response === 'function' && module instanceof Response) { if (typeof WebAssembly.instantiateStreaming === 'function') { try { return await WebAssembly.instantiateStreaming(module, imports); } catch (e) { if (module.headers.get('Content-Type') != 'application/wasm') { console.warn("`WebAssembly.instantiateStreaming` failed because your server does not serve Wasm with `application/wasm` MIME type. Falling back to `WebAssembly.instantiate` which is slower. Original error:\n", e); } else { throw e; } } } const bytes = await module.arrayBuffer(); return await WebAssembly.instantiate(bytes, imports); } else { const instance = await WebAssembly.instantiate(module, imports); if (instance instanceof WebAssembly.Instance) { return { instance, module }; } else { return instance; } } } function __wbg_get_imports() { const imports = {}; imports.wbg = {}; imports.wbg.__wbg_String_8f0eb39a4a4c2f66 = function(arg0, arg1) { const ret = String(arg1); const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); const len1 = WASM_VECTOR_LEN; getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true); getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true); }; imports.wbg.__wbg_async_9ff6d9e405f13772 = function(arg0) { const ret = arg0.async; return ret; }; imports.wbg.__wbg_buffer_609cc3eee51ed158 = function(arg0) { const ret = arg0.buffer; return ret; }; imports.wbg.__wbg_call_672a4d21634d4a24 = function() { return handleError(function (arg0, arg1) { const ret = arg0.call(arg1); return ret; }, arguments) }; imports.wbg.__wbg_call_7cccdd69e0791ae2 = function() { return handleError(function (arg0, arg1, arg2) { const ret = arg0.call(arg1, arg2); return ret; }, arguments) }; imports.wbg.__wbg_close_2893b7d056a0627d = function() { return handleError(function (arg0) { arg0.close(); }, arguments) }; imports.wbg.__wbg_code_cfd8f6868bdaed9b = function(arg0) { const ret = arg0.code; return ret; }; imports.wbg.__wbg_code_f4ec1e6e2e1b0417 = function(arg0) { const ret = arg0.code; return ret; }; imports.wbg.__wbg_crypto_574e78ad8b13b65f = function(arg0) { const ret = arg0.crypto; return ret; }; imports.wbg.__wbg_data_432d9c3df2630942 = function(arg0) { const ret = arg0.data; return ret; }; imports.wbg.__wbg_debug_3cb59063b29f58c1 = function(arg0) { console.debug(arg0); }; imports.wbg.__wbg_debug_e17b51583ca6a632 = function(arg0, arg1, arg2, arg3) { console.debug(arg0, arg1, arg2, arg3); }; imports.wbg.__wbg_done_769e5ede4b31c67b = function(arg0) { const ret = arg0.done; return ret; }; imports.wbg.__wbg_entries_3265d4158b33e5dc = function(arg0) { const ret = Object.entries(arg0); return ret; }; imports.wbg.__wbg_error_524f506f44df1645 = function(arg0) { console.error(arg0); }; imports.wbg.__wbg_error_7534b8e9a36f1ab4 = function(arg0, arg1) { let deferred0_0; let deferred0_1; try { deferred0_0 = arg0; deferred0_1 = arg1; console.error(getStringFromWasm0(arg0, arg1)); } finally { wasm.__wbindgen_free(deferred0_0, deferred0_1, 1); } }; imports.wbg.__wbg_error_80de38b3f7cc3c3c = function(arg0, arg1, arg2, arg3) { console.error(arg0, arg1, arg2, arg3); }; imports.wbg.__wbg_getRandomValues_80578b2ff2a093ba = function() { return handleError(function (arg0) { globalThis.crypto.getRandomValues(arg0); }, arguments) }; imports.wbg.__wbg_getRandomValues_b8f5dbd5f3995a9e = function() { return handleError(function (arg0, arg1) { arg0.getRandomValues(arg1); }, arguments) }; imports.wbg.__wbg_get_67b2ba62fc30de12 = function() { return handleError(function (arg0, arg1) { const ret = Reflect.get(arg0, arg1); return ret; }, arguments) }; imports.wbg.__wbg_get_b9b93047fe3cf45b = function(arg0, arg1) { const ret = arg0[arg1 >>> 0]; return ret; }; imports.wbg.__wbg_getwithrefkey_1dc361bd10053bfe = function(arg0, arg1) { const ret = arg0[arg1]; return ret; }; imports.wbg.__wbg_info_033d8b8a0838f1d3 = function(arg0, arg1, arg2, arg3) { console.info(arg0, arg1, arg2, arg3); }; imports.wbg.__wbg_info_3daf2e093e091b66 = function(arg0) { console.info(arg0); }; imports.wbg.__wbg_instanceof_ArrayBuffer_e14585432e3737fc = function(arg0) { let result; try { result = arg0 instanceof ArrayBuffer; } catch (_) { result = false; } const ret = result; return ret; }; imports.wbg.__wbg_instanceof_Blob_ca721ef3bdab15d1 = function(arg0) { let result; try { result = arg0 instanceof Blob; } catch (_) { result = false; } const ret = result; return ret; }; imports.wbg.__wbg_instanceof_Map_f3469ce2244d2430 = function(arg0) { let result; try { result = arg0 instanceof Map; } catch (_) { result = false; } const ret = result; return ret; }; imports.wbg.__wbg_instanceof_Uint8Array_17156bcf118086a9 = function(arg0) { let result; try { result = arg0 instanceof Uint8Array; } catch (_) { result = false; } const ret = result; return ret; }; imports.wbg.__wbg_isArray_a1eab7e0d067391b = function(arg0) { const ret = Array.isArray(arg0); return ret; }; imports.wbg.__wbg_isSafeInteger_343e2beeeece1bb0 = function(arg0) { const ret = Number.isSafeInteger(arg0); return ret; }; imports.wbg.__wbg_iterator_9a24c88df860dc65 = function() { const ret = Symbol.iterator; return ret; }; imports.wbg.__wbg_length_a446193dc22c12f8 = function(arg0) { const ret = arg0.length; return ret; }; imports.wbg.__wbg_length_e2d2a49132c1b256 = function(arg0) { const ret = arg0.length; return ret; }; imports.wbg.__wbg_msCrypto_a61aeb35a24c1329 = function(arg0) { const ret = arg0.msCrypto; return ret; }; imports.wbg.__wbg_new_23a2665fac83c611 = function(arg0, arg1) { try { var state0 = {a: arg0, b: arg1}; var cb0 = (arg0, arg1) => { const a = state0.a; state0.a = 0; try { return __wbg_adapter_257(a, state0.b, arg0, arg1); } finally { state0.a = a; } }; const ret = new Promise(cb0); return ret; } finally { state0.a = state0.b = 0; } }; imports.wbg.__wbg_new_405e22f390576ce2 = function() { const ret = new Object(); return ret; }; imports.wbg.__wbg_new_757fd34d47ff40d2 = function(arg0) { const ret = new ArrayBuffer(arg0 >>> 0); return ret; }; imports.wbg.__wbg_new_78feb108b6472713 = function() { const ret = new Array(); return ret; }; imports.wbg.__wbg_new_8a6f238a6ece86ea = function() { const ret = new Error(); return ret; }; imports.wbg.__wbg_new_92c54fc74574ef55 = function() { return handleError(function (arg0, arg1) { const ret = new WebSocket(getStringFromWasm0(arg0, arg1)); return ret; }, arguments) }; imports.wbg.__wbg_new_a12002a7f91c75be = function(arg0) { const ret = new Uint8Array(arg0); return ret; }; imports.wbg.__wbg_new_b1a33e5095abf678 = function() { return handleError(function (arg0, arg1) { const ret = new Worker(getStringFromWasm0(arg0, arg1)); return ret; }, arguments) }; imports.wbg.__wbg_new_e9a4a67dbababe57 = function(arg0) { const ret = new Int32Array(arg0); return ret; }; imports.wbg.__wbg_newnoargs_105ed471475aaf50 = function(arg0, arg1) { const ret = new Function(getStringFromWasm0(arg0, arg1)); return ret; }; imports.wbg.__wbg_newwithbyteoffsetandlength_d97e637ebe145a9a = function(arg0, arg1, arg2) { const ret = new Uint8Array(arg0, arg1 >>> 0, arg2 >>> 0); return ret; }; imports.wbg.__wbg_newwithlength_a381634e90c276d4 = function(arg0) { const ret = new Uint8Array(arg0 >>> 0); return ret; }; imports.wbg.__wbg_newwithoptions_0419cac3977d7f7f = function() { return handleError(function (arg0, arg1, arg2) { const ret = new Worker(getStringFromWasm0(arg0, arg1), arg2); return ret; }, arguments) }; imports.wbg.__wbg_newwithstrsequence_6e9d6479e1cf978d = function() { return handleError(function (arg0, arg1, arg2) { const ret = new WebSocket(getStringFromWasm0(arg0, arg1), arg2); return ret; }, arguments) }; imports.wbg.__wbg_next_25feadfc0913fea9 = function(arg0) { const ret = arg0.next; return ret; }; imports.wbg.__wbg_next_6574e1a8a62d1055 = function() { return handleError(function (arg0) { const ret = arg0.next(); return ret; }, arguments) }; imports.wbg.__wbg_node_905d3e251edff8a2 = function(arg0) { const ret = arg0.node; return ret; }; imports.wbg.__wbg_notarizationoutput_new = function(arg0) { const ret = NotarizationOutput.__wrap(arg0); return ret; }; imports.wbg.__wbg_now_2c95c9de01293173 = function(arg0) { const ret = arg0.now(); return ret; }; imports.wbg.__wbg_now_807e54c39636c349 = function() { const ret = Date.now(); return ret; }; imports.wbg.__wbg_of_4a05197bfc89556f = function(arg0, arg1, arg2) { const ret = Array.of(arg0, arg1, arg2); return ret; }; imports.wbg.__wbg_performance_7a3ffd0b17f663ad = function(arg0) { const ret = arg0.performance; return ret; }; imports.wbg.__wbg_postMessage_6edafa8f7b9c2f52 = function() { return handleError(function (arg0, arg1) { arg0.postMessage(arg1); }, arguments) }; imports.wbg.__wbg_process_dc0fbacc7c1c06f7 = function(arg0) { const ret = arg0.process; return ret; }; imports.wbg.__wbg_push_737cfc8c1432c2c6 = function(arg0, arg1) { const ret = arg0.push(arg1); return ret; }; imports.wbg.__wbg_queueMicrotask_97d92b4fcc8a61c5 = function(arg0) { queueMicrotask(arg0); }; imports.wbg.__wbg_queueMicrotask_d3219def82552485 = function(arg0) { const ret = arg0.queueMicrotask; return ret; }; imports.wbg.__wbg_randomFillSync_ac0988aba3254290 = function() { return handleError(function (arg0, arg1) { arg0.randomFillSync(arg1); }, arguments) }; imports.wbg.__wbg_readyState_7ef6e63c349899ed = function(arg0) { const ret = arg0.readyState; return ret; }; imports.wbg.__wbg_reason_49f1cede8bcf23dd = function(arg0, arg1) { const ret = arg1.reason; const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); const len1 = WASM_VECTOR_LEN; getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true); getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true); }; imports.wbg.__wbg_require_60cc747a6bc5215a = function() { return handleError(function () { const ret = module.require; return ret; }, arguments) }; imports.wbg.__wbg_resolve_4851785c9c5f573d = function(arg0) { const ret = Promise.resolve(arg0); return ret; }; imports.wbg.__wbg_send_0293179ba074ffb4 = function() { return handleError(function (arg0, arg1, arg2) { arg0.send(getStringFromWasm0(arg1, arg2)); }, arguments) }; imports.wbg.__wbg_send_7c4769e24cf1d784 = function() { return handleError(function (arg0, arg1) { arg0.send(arg1); }, arguments) }; imports.wbg.__wbg_set_37837023f3d740e8 = function(arg0, arg1, arg2) { arg0[arg1 >>> 0] = arg2; }; imports.wbg.__wbg_set_3f1d0b984ed272ed = function(arg0, arg1, arg2) { arg0[arg1] = arg2; }; imports.wbg.__wbg_set_65595bdd868b3009 = function(arg0, arg1, arg2) { arg0.set(arg1, arg2 >>> 0); }; imports.wbg.__wbg_set_bb8cecf6a62b9f46 = function() { return handleError(function (arg0, arg1, arg2) { const ret = Reflect.set(arg0, arg1, arg2); return ret; }, arguments) }; imports.wbg.__wbg_setbinaryType_92fa1ffd873b327c = function(arg0, arg1) { arg0.binaryType = __wbindgen_enum_BinaryType[arg1]; }; imports.wbg.__wbg_setname_73878b09a5ee3d0c = function(arg0, arg1, arg2) { arg0.name = getStringFromWasm0(arg1, arg2); }; imports.wbg.__wbg_setonclose_14fc475a49d488fc = function(arg0, arg1) { arg0.onclose = arg1; }; imports.wbg.__wbg_setonerror_8639efe354b947cd = function(arg0, arg1) { arg0.onerror = arg1; }; imports.wbg.__wbg_setonmessage_5a885b16bdc6dca6 = function(arg0, arg1) { arg0.onmessage = arg1; }; imports.wbg.__wbg_setonmessage_6eccab530a8fb4c7 = function(arg0, arg1) { arg0.onmessage = arg1; }; imports.wbg.__wbg_setonopen_2da654e1f39745d5 = function(arg0, arg1) { arg0.onopen = arg1; }; imports.wbg.__wbg_settype_47fae7d6c82625e7 = function(arg0, arg1) { arg0.type = __wbindgen_enum_WorkerType[arg1]; }; imports.wbg.__wbg_stack_0ed75d68575b0f3c = function(arg0, arg1) { const ret = arg1.stack; const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); const len1 = WASM_VECTOR_LEN; getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true); getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true); }; imports.wbg.__wbg_startSpawnerWorker_74e47ad8e112560b = function(arg0, arg1, arg2) { const ret = startSpawnerWorker(arg0, arg1, Spawner.__wrap(arg2)); return ret; }; imports.wbg.__wbg_static_accessor_GLOBAL_88a902d13a557d07 = function() { const ret = typeof global === 'undefined' ? null : global; return isLikeNone(ret) ? 0 : addToExternrefTable0(ret); }; imports.wbg.__wbg_static_accessor_GLOBAL_THIS_56578be7e9f832b0 = function() { const ret = typeof globalThis === 'undefined' ? null : globalThis; return isLikeNone(ret) ? 0 : addToExternrefTable0(ret); }; imports.wbg.__wbg_static_accessor_SELF_37c5d418e4bf5819 = function() { const ret = typeof self === 'undefined' ? null : self; return isLikeNone(ret) ? 0 : addToExternrefTable0(ret); }; imports.wbg.__wbg_static_accessor_WINDOW_5de37043a91a9c40 = function() { const ret = typeof window === 'undefined' ? null : window; return isLikeNone(ret) ? 0 : addToExternrefTable0(ret); }; imports.wbg.__wbg_subarray_aa9065fa9dc5df96 = function(arg0, arg1, arg2) { const ret = arg0.subarray(arg1 >>> 0, arg2 >>> 0); return ret; }; imports.wbg.__wbg_then_44b73946d2fb3e7d = function(arg0, arg1) { const ret = arg0.then(arg1); return ret; }; imports.wbg.__wbg_then_48b406749878a531 = function(arg0, arg1, arg2) { const ret = arg0.then(arg1, arg2); return ret; }; imports.wbg.__wbg_timeOrigin_9f29a08704a944d0 = function(arg0) { const ret = arg0.timeOrigin; return ret; }; imports.wbg.__wbg_url_ce9ab75bf9627ae4 = function(arg0, arg1) { const ret = arg1.url; const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); const len1 = WASM_VECTOR_LEN; getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true); getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true); }; imports.wbg.__wbg_value_cd1ffa7b1ab794f1 = function(arg0) { const ret = arg0.value; return ret; }; imports.wbg.__wbg_value_dab73d3d5d4abaaf = function(arg0) { const ret = arg0.value; return ret; }; imports.wbg.__wbg_versions_c01dfd4722a88165 = function(arg0) { const ret = arg0.versions; return ret; }; imports.wbg.__wbg_waitAsync_61f0a081053dd3c2 = function(arg0, arg1, arg2) { const ret = Atomics.waitAsync(arg0, arg1 >>> 0, arg2); return ret; }; imports.wbg.__wbg_waitAsync_7ce6c8a047c752c3 = function() { const ret = Atomics.waitAsync; return ret; }; imports.wbg.__wbg_warn_4ca3906c248c47c4 = function(arg0) { console.warn(arg0); }; imports.wbg.__wbg_warn_aaf1f4664a035bd6 = function(arg0, arg1, arg2, arg3) { console.warn(arg0, arg1, arg2, arg3); }; imports.wbg.__wbg_wasClean_605b4fd66d44354a = function(arg0) { const ret = arg0.wasClean; return ret; }; imports.wbg.__wbindgen_as_number = function(arg0) { const ret = +arg0; return ret; }; imports.wbg.__wbindgen_bigint_from_i64 = function(arg0) { const ret = arg0; return ret; }; imports.wbg.__wbindgen_bigint_from_u64 = function(arg0) { const ret = BigInt.asUintN(64, arg0); return ret; }; imports.wbg.__wbindgen_bigint_get_as_i64 = function(arg0, arg1) { const v = arg1; const ret = typeof(v) === 'bigint' ? v : undefined; getDataViewMemory0().setBigInt64(arg0 + 8 * 1, isLikeNone(ret) ? BigInt(0) : ret, true); getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true); }; imports.wbg.__wbindgen_boolean_get = function(arg0) { const v = arg0; const ret = typeof(v) === 'boolean' ? (v ? 1 : 0) : 2; return ret; }; imports.wbg.__wbindgen_cb_drop = function(arg0) { const obj = arg0.original; if (obj.cnt-- == 1) { obj.a = 0; return true; } const ret = false; return ret; }; imports.wbg.__wbindgen_closure_wrapper1017 = function(arg0, arg1, arg2) { const ret = makeMutClosure(arg0, arg1, 1093, __wbg_adapter_56); return ret; }; imports.wbg.__wbindgen_closure_wrapper1019 = function(arg0, arg1, arg2) { const ret = makeMutClosure(arg0, arg1, 1093, __wbg_adapter_59); return ret; }; imports.wbg.__wbindgen_closure_wrapper12426 = function(arg0, arg1, arg2) { const ret = makeMutClosure(arg0, arg1, 3739, __wbg_adapter_62); return ret; }; imports.wbg.__wbindgen_closure_wrapper12427 = function(arg0, arg1, arg2) { const ret = makeMutClosure(arg0, arg1, 3739, __wbg_adapter_62); return ret; }; imports.wbg.__wbindgen_debug_string = function(arg0, arg1) { const ret = debugString(arg1); const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); const len1 = WASM_VECTOR_LEN; getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true); getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true); }; imports.wbg.__wbindgen_error_new = function(arg0, arg1) { const ret = new Error(getStringFromWasm0(arg0, arg1)); return ret; }; imports.wbg.__wbindgen_in = function(arg0, arg1) { const ret = arg0 in arg1; return ret; }; imports.wbg.__wbindgen_init_externref_table = function() { const table = wasm.__wbindgen_export_5; const offset = table.grow(4); table.set(0, undefined); table.set(offset + 0, undefined); table.set(offset + 1, null); table.set(offset + 2, true); table.set(offset + 3, false); ; }; imports.wbg.__wbindgen_is_bigint = function(arg0) { const ret = typeof(arg0) === 'bigint'; return ret; }; imports.wbg.__wbindgen_is_function = function(arg0) { const ret = typeof(arg0) === 'function'; return ret; }; imports.wbg.__wbindgen_is_object = function(arg0) { const val = arg0; const ret = typeof(val) === 'object' && val !== null; return ret; }; imports.wbg.__wbindgen_is_string = function(arg0) { const ret = typeof(arg0) === 'string'; return ret; }; imports.wbg.__wbindgen_is_undefined = function(arg0) { const ret = arg0 === undefined; return ret; }; imports.wbg.__wbindgen_jsval_eq = function(arg0, arg1) { const ret = arg0 === arg1; return ret; }; imports.wbg.__wbindgen_jsval_loose_eq = function(arg0, arg1) { const ret = arg0 == arg1; return ret; }; imports.wbg.__wbindgen_link_9579f016b4522a24 = function(arg0) { const val = `onmessage = function (ev) { let [ia, index, value] = ev.data; ia = new Int32Array(ia.buffer); let result = Atomics.wait(ia, index, value); postMessage(result); }; `; const ret = typeof URL.createObjectURL === 'undefined' ? "data:application/javascript," + encodeURIComponent(val) : URL.createObjectURL(new Blob([val], { type: "text/javascript" })); const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); const len1 = WASM_VECTOR_LEN; getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true); getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true); }; imports.wbg.__wbindgen_memory = function() { const ret = wasm.memory; return ret; }; imports.wbg.__wbindgen_module = function() { const ret = __wbg_init.__wbindgen_wasm_module; return ret; }; imports.wbg.__wbindgen_number_get = function(arg0, arg1) { const obj = arg1; const ret = typeof(obj) === 'number' ? obj : undefined; getDataViewMemory0().setFloat64(arg0 + 8 * 1, isLikeNone(ret) ? 0 : ret, true); getDataViewMemory0().setInt32(arg0 + 4 * 0, !isLikeNone(ret), true); }; imports.wbg.__wbindgen_number_new = function(arg0) { const ret = arg0; return ret; }; imports.wbg.__wbindgen_rethrow = function(arg0) { throw arg0; }; imports.wbg.__wbindgen_string_get = function(arg0, arg1) { const obj = arg1; const ret = typeof(obj) === 'string' ? obj : undefined; var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc); var len1 = WASM_VECTOR_LEN; getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true); getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true); }; imports.wbg.__wbindgen_string_new = function(arg0, arg1) { const ret = getStringFromWasm0(arg0, arg1); return ret; }; imports.wbg.__wbindgen_throw = function(arg0, arg1) { throw new Error(getStringFromWasm0(arg0, arg1)); }; return imports; } function __wbg_init_memory(imports, memory) { imports.wbg.memory = memory || new WebAssembly.Memory({initial:99,maximum:65536,shared:true}); } function __wbg_finalize_init(instance, module, thread_stack_size) { wasm = instance.exports; __wbg_init.__wbindgen_wasm_module = module; cachedDataViewMemory0 = null; cachedUint8ArrayMemory0 = null; if (typeof thread_stack_size !== 'undefined' && (typeof thread_stack_size !== 'number' || thread_stack_size === 0 || thread_stack_size % 65536 !== 0)) { throw 'invalid stack size' } wasm.__wbindgen_start(thread_stack_size); return wasm; } function initSync(module, memory) { if (wasm !== undefined) return wasm; let thread_stack_size if (typeof module !== 'undefined') { if (Object.getPrototypeOf(module) === Object.prototype) { ({module, memory, thread_stack_size} = module) } else { console.warn('using deprecated parameters for `initSync()`; pass a single object instead') } } const imports = __wbg_get_imports(); __wbg_init_memory(imports, memory); if (!(module instanceof WebAssembly.Module)) { module = new WebAssembly.Module(module); } const instance = new WebAssembly.Instance(module, imports); return __wbg_finalize_init(instance, module, thread_stack_size); } async function __wbg_init(module_or_path, memory) { if (wasm !== undefined) return wasm; let thread_stack_size if (typeof module_or_path !== 'undefined') { if (Object.getPrototypeOf(module_or_path) === Object.prototype) { ({module_or_path, memory, thread_stack_size} = module_or_path) } else { console.warn('using deprecated parameters for the initialization function; pass a single object instead') } } if (typeof module_or_path === 'undefined') { module_or_path = new URL('tlsn_wasm_bg.wasm', import.meta.url); } const imports = __wbg_get_imports(); if (typeof module_or_path === 'string' || (typeof Request === 'function' && module_or_path instanceof Request) || (typeof URL === 'function' && module_or_path instanceof URL)) { module_or_path = fetch(module_or_path); } __wbg_init_memory(imports, memory); const { instance, module } = await __wbg_load(await module_or_path, imports); return __wbg_finalize_init(instance, module, thread_stack_size); } export { initSync }; export default __wbg_init;