@genation/bridge-peer 0.1.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/GenationBridgePeer.podspec +17 -0
- package/LICENSE +190 -0
- package/README.md +66 -0
- package/package.json +59 -0
- package/react-native/android/build.gradle +24 -0
- package/react-native/android/src/main/java/com/genation/bridge/GenationBridgePeerModule.kt +182 -0
- package/react-native/android/src/main/java/com/genation/bridge/GenationBridgePeerPackage.kt +15 -0
- package/react-native/android/src/main/jniLibs/arm64-v8a/libgenation_bridge_crypto_uniffi.so +0 -0
- package/react-native/android/src/main/jniLibs/armeabi-v7a/libgenation_bridge_crypto_uniffi.so +0 -0
- package/react-native/android/src/main/jniLibs/x86/libgenation_bridge_crypto_uniffi.so +0 -0
- package/react-native/android/src/main/jniLibs/x86_64/libgenation_bridge_crypto_uniffi.so +0 -0
- package/react-native/generated/kotlin/uniffi/genation_bridge_crypto_uniffi/genation_bridge_crypto_uniffi.kt +2006 -0
- package/react-native/generated/swift/GenationBridgeCryptoMobile.swift +1072 -0
- package/react-native/generated/swift/GenationBridgeCryptoMobileFFI.h +703 -0
- package/react-native/generated/swift/GenationBridgeCryptoMobileFFI.modulemap +7 -0
- package/react-native/ios/GenationBridgePeer.m +14 -0
- package/react-native/ios/GenationBridgePeer.swift +234 -0
- package/react-native/native/GenationBridgeCryptoMobile.xcframework/Info.plist +48 -0
- package/react-native/native/GenationBridgeCryptoMobile.xcframework/ios-arm64/Headers/GenationBridgeCryptoMobileFFI.h +703 -0
- package/react-native/native/GenationBridgeCryptoMobile.xcframework/ios-arm64/Headers/module.modulemap +7 -0
- package/react-native/native/GenationBridgeCryptoMobile.xcframework/ios-arm64/libgenation_bridge_crypto_uniffi.a +0 -0
- package/react-native/native/GenationBridgeCryptoMobile.xcframework/ios-arm64_x86_64-simulator/Headers/GenationBridgeCryptoMobileFFI.h +703 -0
- package/react-native/native/GenationBridgeCryptoMobile.xcframework/ios-arm64_x86_64-simulator/Headers/module.modulemap +7 -0
- package/react-native/native/GenationBridgeCryptoMobile.xcframework/ios-arm64_x86_64-simulator/libgenation_bridge_crypto_uniffi.a +0 -0
- package/react-native.config.js +8 -0
- package/src/core/codec.d.ts +5 -0
- package/src/core/codec.js +46 -0
- package/src/core/errors.d.ts +11 -0
- package/src/core/errors.js +27 -0
- package/src/core/identity.d.ts +16 -0
- package/src/core/identity.js +1 -0
- package/src/core/lifecycle.d.ts +4 -0
- package/src/core/lifecycle.js +1 -0
- package/src/core/mod.d.ts +6 -0
- package/src/core/mod.js +3 -0
- package/src/core/peer.d.ts +67 -0
- package/src/core/peer.js +373 -0
- package/src/core/runtime.d.ts +78 -0
- package/src/core/runtime.js +0 -0
- package/src/node/crypto-core/javascript/mod.d.ts +8 -0
- package/src/node/crypto-core/javascript/mod.js +24 -0
- package/src/node/crypto-core/javascript/provider.d.ts +2 -0
- package/src/node/crypto-core/javascript/provider.js +43 -0
- package/src/node/crypto-core/pkg/wasm/genation_bridge_crypto_wasm.d.ts +122 -0
- package/src/node/crypto-core/pkg/wasm/genation_bridge_crypto_wasm.js +433 -0
- package/src/node/crypto-core/pkg/wasm/genation_bridge_crypto_wasm_bg.wasm +0 -0
- package/src/node/crypto-core/pkg/wasm/genation_bridge_crypto_wasm_bg.wasm.d.ts +25 -0
- package/src/node/encoding.js +1 -0
- package/src/node/file-key-store.d.ts +6 -0
- package/src/node/file-key-store.js +111 -0
- package/src/node/identity-provider.d.ts +8 -0
- package/src/node/identity-provider.js +57 -0
- package/src/node/identity.js +45 -0
- package/src/node/mod.d.ts +16 -0
- package/src/node/mod.js +17 -0
- package/src/node/relay-runtime.d.ts +11 -0
- package/src/node/relay-runtime.js +11 -0
- package/src/react-native/identity-provider.d.ts +4 -0
- package/src/react-native/identity-provider.js +125 -0
- package/src/react-native/lifecycle.d.ts +8 -0
- package/src/react-native/lifecycle.js +9 -0
- package/src/react-native/mod.d.ts +20 -0
- package/src/react-native/mod.js +36 -0
- package/src/react-native/native-module.d.ts +17 -0
- package/src/react-native/native-module.js +9 -0
- package/src/relay/encoding.js +32 -0
- package/src/relay/frame-channel.d.ts +1 -0
- package/src/relay/frame-channel.js +110 -0
- package/src/relay/identity.d.ts +27 -0
- package/src/relay/identity.js +0 -0
- package/src/relay/runtime.d.ts +8 -0
- package/src/relay/runtime.js +900 -0
|
@@ -0,0 +1,703 @@
|
|
|
1
|
+
// This file was autogenerated by some hot garbage in the `uniffi` crate.
|
|
2
|
+
// Trust me, you don't want to mess with it!
|
|
3
|
+
|
|
4
|
+
#pragma once
|
|
5
|
+
|
|
6
|
+
#include <stdbool.h>
|
|
7
|
+
#include <stddef.h>
|
|
8
|
+
#include <stdint.h>
|
|
9
|
+
|
|
10
|
+
// The following structs are used to implement the lowest level
|
|
11
|
+
// of the FFI, and thus useful to multiple uniffied crates.
|
|
12
|
+
// We ensure they are declared exactly once, with a header guard, UNIFFI_SHARED_H.
|
|
13
|
+
#ifdef UNIFFI_SHARED_H
|
|
14
|
+
// We also try to prevent mixing versions of shared uniffi header structs.
|
|
15
|
+
// If you add anything to the #else block, you must increment the version suffix in UNIFFI_SHARED_HEADER_V4
|
|
16
|
+
#ifndef UNIFFI_SHARED_HEADER_V4
|
|
17
|
+
#error Combining helper code from multiple versions of uniffi is not supported
|
|
18
|
+
#endif // ndef UNIFFI_SHARED_HEADER_V4
|
|
19
|
+
#else
|
|
20
|
+
#define UNIFFI_SHARED_H
|
|
21
|
+
#define UNIFFI_SHARED_HEADER_V4
|
|
22
|
+
// ⚠️ Attention: If you change this #else block (ending in `#endif // def UNIFFI_SHARED_H`) you *must* ⚠️
|
|
23
|
+
// ⚠️ increment the version suffix in all instances of UNIFFI_SHARED_HEADER_V4 in this file. ⚠️
|
|
24
|
+
|
|
25
|
+
typedef struct RustBuffer
|
|
26
|
+
{
|
|
27
|
+
uint64_t capacity;
|
|
28
|
+
uint64_t len;
|
|
29
|
+
uint8_t *_Nullable data;
|
|
30
|
+
} RustBuffer;
|
|
31
|
+
|
|
32
|
+
typedef struct ForeignBytes
|
|
33
|
+
{
|
|
34
|
+
int32_t len;
|
|
35
|
+
const uint8_t *_Nullable data;
|
|
36
|
+
} ForeignBytes;
|
|
37
|
+
|
|
38
|
+
// Error definitions
|
|
39
|
+
typedef struct RustCallStatus {
|
|
40
|
+
int8_t code;
|
|
41
|
+
RustBuffer errorBuf;
|
|
42
|
+
} RustCallStatus;
|
|
43
|
+
|
|
44
|
+
// ⚠️ Attention: If you change this #else block (ending in `#endif // def UNIFFI_SHARED_H`) you *must* ⚠️
|
|
45
|
+
// ⚠️ increment the version suffix in all instances of UNIFFI_SHARED_HEADER_V4 in this file. ⚠️
|
|
46
|
+
#endif // def UNIFFI_SHARED_H
|
|
47
|
+
#ifndef UNIFFI_FFIDEF_RUST_FUTURE_CONTINUATION_CALLBACK
|
|
48
|
+
#define UNIFFI_FFIDEF_RUST_FUTURE_CONTINUATION_CALLBACK
|
|
49
|
+
typedef void (*UniffiRustFutureContinuationCallback)(uint64_t, int8_t
|
|
50
|
+
);
|
|
51
|
+
|
|
52
|
+
#endif
|
|
53
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_FREE
|
|
54
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_FREE
|
|
55
|
+
typedef void (*UniffiForeignFutureFree)(uint64_t
|
|
56
|
+
);
|
|
57
|
+
|
|
58
|
+
#endif
|
|
59
|
+
#ifndef UNIFFI_FFIDEF_CALLBACK_INTERFACE_FREE
|
|
60
|
+
#define UNIFFI_FFIDEF_CALLBACK_INTERFACE_FREE
|
|
61
|
+
typedef void (*UniffiCallbackInterfaceFree)(uint64_t
|
|
62
|
+
);
|
|
63
|
+
|
|
64
|
+
#endif
|
|
65
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE
|
|
66
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE
|
|
67
|
+
typedef struct UniffiForeignFuture {
|
|
68
|
+
uint64_t handle;
|
|
69
|
+
UniffiForeignFutureFree _Nonnull free;
|
|
70
|
+
} UniffiForeignFuture;
|
|
71
|
+
|
|
72
|
+
#endif
|
|
73
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_U8
|
|
74
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_U8
|
|
75
|
+
typedef struct UniffiForeignFutureStructU8 {
|
|
76
|
+
uint8_t returnValue;
|
|
77
|
+
RustCallStatus callStatus;
|
|
78
|
+
} UniffiForeignFutureStructU8;
|
|
79
|
+
|
|
80
|
+
#endif
|
|
81
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_U8
|
|
82
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_U8
|
|
83
|
+
typedef void (*UniffiForeignFutureCompleteU8)(uint64_t, UniffiForeignFutureStructU8
|
|
84
|
+
);
|
|
85
|
+
|
|
86
|
+
#endif
|
|
87
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_I8
|
|
88
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_I8
|
|
89
|
+
typedef struct UniffiForeignFutureStructI8 {
|
|
90
|
+
int8_t returnValue;
|
|
91
|
+
RustCallStatus callStatus;
|
|
92
|
+
} UniffiForeignFutureStructI8;
|
|
93
|
+
|
|
94
|
+
#endif
|
|
95
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_I8
|
|
96
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_I8
|
|
97
|
+
typedef void (*UniffiForeignFutureCompleteI8)(uint64_t, UniffiForeignFutureStructI8
|
|
98
|
+
);
|
|
99
|
+
|
|
100
|
+
#endif
|
|
101
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_U16
|
|
102
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_U16
|
|
103
|
+
typedef struct UniffiForeignFutureStructU16 {
|
|
104
|
+
uint16_t returnValue;
|
|
105
|
+
RustCallStatus callStatus;
|
|
106
|
+
} UniffiForeignFutureStructU16;
|
|
107
|
+
|
|
108
|
+
#endif
|
|
109
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_U16
|
|
110
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_U16
|
|
111
|
+
typedef void (*UniffiForeignFutureCompleteU16)(uint64_t, UniffiForeignFutureStructU16
|
|
112
|
+
);
|
|
113
|
+
|
|
114
|
+
#endif
|
|
115
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_I16
|
|
116
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_I16
|
|
117
|
+
typedef struct UniffiForeignFutureStructI16 {
|
|
118
|
+
int16_t returnValue;
|
|
119
|
+
RustCallStatus callStatus;
|
|
120
|
+
} UniffiForeignFutureStructI16;
|
|
121
|
+
|
|
122
|
+
#endif
|
|
123
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_I16
|
|
124
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_I16
|
|
125
|
+
typedef void (*UniffiForeignFutureCompleteI16)(uint64_t, UniffiForeignFutureStructI16
|
|
126
|
+
);
|
|
127
|
+
|
|
128
|
+
#endif
|
|
129
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_U32
|
|
130
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_U32
|
|
131
|
+
typedef struct UniffiForeignFutureStructU32 {
|
|
132
|
+
uint32_t returnValue;
|
|
133
|
+
RustCallStatus callStatus;
|
|
134
|
+
} UniffiForeignFutureStructU32;
|
|
135
|
+
|
|
136
|
+
#endif
|
|
137
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_U32
|
|
138
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_U32
|
|
139
|
+
typedef void (*UniffiForeignFutureCompleteU32)(uint64_t, UniffiForeignFutureStructU32
|
|
140
|
+
);
|
|
141
|
+
|
|
142
|
+
#endif
|
|
143
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_I32
|
|
144
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_I32
|
|
145
|
+
typedef struct UniffiForeignFutureStructI32 {
|
|
146
|
+
int32_t returnValue;
|
|
147
|
+
RustCallStatus callStatus;
|
|
148
|
+
} UniffiForeignFutureStructI32;
|
|
149
|
+
|
|
150
|
+
#endif
|
|
151
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_I32
|
|
152
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_I32
|
|
153
|
+
typedef void (*UniffiForeignFutureCompleteI32)(uint64_t, UniffiForeignFutureStructI32
|
|
154
|
+
);
|
|
155
|
+
|
|
156
|
+
#endif
|
|
157
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_U64
|
|
158
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_U64
|
|
159
|
+
typedef struct UniffiForeignFutureStructU64 {
|
|
160
|
+
uint64_t returnValue;
|
|
161
|
+
RustCallStatus callStatus;
|
|
162
|
+
} UniffiForeignFutureStructU64;
|
|
163
|
+
|
|
164
|
+
#endif
|
|
165
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_U64
|
|
166
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_U64
|
|
167
|
+
typedef void (*UniffiForeignFutureCompleteU64)(uint64_t, UniffiForeignFutureStructU64
|
|
168
|
+
);
|
|
169
|
+
|
|
170
|
+
#endif
|
|
171
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_I64
|
|
172
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_I64
|
|
173
|
+
typedef struct UniffiForeignFutureStructI64 {
|
|
174
|
+
int64_t returnValue;
|
|
175
|
+
RustCallStatus callStatus;
|
|
176
|
+
} UniffiForeignFutureStructI64;
|
|
177
|
+
|
|
178
|
+
#endif
|
|
179
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_I64
|
|
180
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_I64
|
|
181
|
+
typedef void (*UniffiForeignFutureCompleteI64)(uint64_t, UniffiForeignFutureStructI64
|
|
182
|
+
);
|
|
183
|
+
|
|
184
|
+
#endif
|
|
185
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_F32
|
|
186
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_F32
|
|
187
|
+
typedef struct UniffiForeignFutureStructF32 {
|
|
188
|
+
float returnValue;
|
|
189
|
+
RustCallStatus callStatus;
|
|
190
|
+
} UniffiForeignFutureStructF32;
|
|
191
|
+
|
|
192
|
+
#endif
|
|
193
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_F32
|
|
194
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_F32
|
|
195
|
+
typedef void (*UniffiForeignFutureCompleteF32)(uint64_t, UniffiForeignFutureStructF32
|
|
196
|
+
);
|
|
197
|
+
|
|
198
|
+
#endif
|
|
199
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_F64
|
|
200
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_F64
|
|
201
|
+
typedef struct UniffiForeignFutureStructF64 {
|
|
202
|
+
double returnValue;
|
|
203
|
+
RustCallStatus callStatus;
|
|
204
|
+
} UniffiForeignFutureStructF64;
|
|
205
|
+
|
|
206
|
+
#endif
|
|
207
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_F64
|
|
208
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_F64
|
|
209
|
+
typedef void (*UniffiForeignFutureCompleteF64)(uint64_t, UniffiForeignFutureStructF64
|
|
210
|
+
);
|
|
211
|
+
|
|
212
|
+
#endif
|
|
213
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_POINTER
|
|
214
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_POINTER
|
|
215
|
+
typedef struct UniffiForeignFutureStructPointer {
|
|
216
|
+
void*_Nonnull returnValue;
|
|
217
|
+
RustCallStatus callStatus;
|
|
218
|
+
} UniffiForeignFutureStructPointer;
|
|
219
|
+
|
|
220
|
+
#endif
|
|
221
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_POINTER
|
|
222
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_POINTER
|
|
223
|
+
typedef void (*UniffiForeignFutureCompletePointer)(uint64_t, UniffiForeignFutureStructPointer
|
|
224
|
+
);
|
|
225
|
+
|
|
226
|
+
#endif
|
|
227
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_RUST_BUFFER
|
|
228
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_RUST_BUFFER
|
|
229
|
+
typedef struct UniffiForeignFutureStructRustBuffer {
|
|
230
|
+
RustBuffer returnValue;
|
|
231
|
+
RustCallStatus callStatus;
|
|
232
|
+
} UniffiForeignFutureStructRustBuffer;
|
|
233
|
+
|
|
234
|
+
#endif
|
|
235
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_RUST_BUFFER
|
|
236
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_RUST_BUFFER
|
|
237
|
+
typedef void (*UniffiForeignFutureCompleteRustBuffer)(uint64_t, UniffiForeignFutureStructRustBuffer
|
|
238
|
+
);
|
|
239
|
+
|
|
240
|
+
#endif
|
|
241
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_VOID
|
|
242
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_STRUCT_VOID
|
|
243
|
+
typedef struct UniffiForeignFutureStructVoid {
|
|
244
|
+
RustCallStatus callStatus;
|
|
245
|
+
} UniffiForeignFutureStructVoid;
|
|
246
|
+
|
|
247
|
+
#endif
|
|
248
|
+
#ifndef UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_VOID
|
|
249
|
+
#define UNIFFI_FFIDEF_FOREIGN_FUTURE_COMPLETE_VOID
|
|
250
|
+
typedef void (*UniffiForeignFutureCompleteVoid)(uint64_t, UniffiForeignFutureStructVoid
|
|
251
|
+
);
|
|
252
|
+
|
|
253
|
+
#endif
|
|
254
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_FN_CLONE_MOBILEINITIATOR
|
|
255
|
+
#define UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_FN_CLONE_MOBILEINITIATOR
|
|
256
|
+
void*_Nonnull uniffi_genation_bridge_crypto_uniffi_fn_clone_mobileinitiator(void*_Nonnull ptr, RustCallStatus *_Nonnull out_status
|
|
257
|
+
);
|
|
258
|
+
#endif
|
|
259
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_FN_FREE_MOBILEINITIATOR
|
|
260
|
+
#define UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_FN_FREE_MOBILEINITIATOR
|
|
261
|
+
void uniffi_genation_bridge_crypto_uniffi_fn_free_mobileinitiator(void*_Nonnull ptr, RustCallStatus *_Nonnull out_status
|
|
262
|
+
);
|
|
263
|
+
#endif
|
|
264
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_FN_CONSTRUCTOR_MOBILEINITIATOR_NEW
|
|
265
|
+
#define UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_FN_CONSTRUCTOR_MOBILEINITIATOR_NEW
|
|
266
|
+
void*_Nonnull uniffi_genation_bridge_crypto_uniffi_fn_constructor_mobileinitiator_new(RustBuffer prologue, RustBuffer local_private_key, RustBuffer responder_public_key, RustCallStatus *_Nonnull out_status
|
|
267
|
+
);
|
|
268
|
+
#endif
|
|
269
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_FN_METHOD_MOBILEINITIATOR_BEGIN_HANDSHAKE
|
|
270
|
+
#define UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_FN_METHOD_MOBILEINITIATOR_BEGIN_HANDSHAKE
|
|
271
|
+
RustBuffer uniffi_genation_bridge_crypto_uniffi_fn_method_mobileinitiator_begin_handshake(void*_Nonnull ptr, RustCallStatus *_Nonnull out_status
|
|
272
|
+
);
|
|
273
|
+
#endif
|
|
274
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_FN_METHOD_MOBILEINITIATOR_CLOSE_SESSION
|
|
275
|
+
#define UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_FN_METHOD_MOBILEINITIATOR_CLOSE_SESSION
|
|
276
|
+
void uniffi_genation_bridge_crypto_uniffi_fn_method_mobileinitiator_close_session(void*_Nonnull ptr, RustCallStatus *_Nonnull out_status
|
|
277
|
+
);
|
|
278
|
+
#endif
|
|
279
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_FN_METHOD_MOBILEINITIATOR_DECRYPT
|
|
280
|
+
#define UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_FN_METHOD_MOBILEINITIATOR_DECRYPT
|
|
281
|
+
RustBuffer uniffi_genation_bridge_crypto_uniffi_fn_method_mobileinitiator_decrypt(void*_Nonnull ptr, RustBuffer aad, RustBuffer ciphertext, RustCallStatus *_Nonnull out_status
|
|
282
|
+
);
|
|
283
|
+
#endif
|
|
284
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_FN_METHOD_MOBILEINITIATOR_ENCRYPT
|
|
285
|
+
#define UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_FN_METHOD_MOBILEINITIATOR_ENCRYPT
|
|
286
|
+
RustBuffer uniffi_genation_bridge_crypto_uniffi_fn_method_mobileinitiator_encrypt(void*_Nonnull ptr, RustBuffer aad, RustBuffer plaintext, RustCallStatus *_Nonnull out_status
|
|
287
|
+
);
|
|
288
|
+
#endif
|
|
289
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_FN_METHOD_MOBILEINITIATOR_FINISH_HANDSHAKE
|
|
290
|
+
#define UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_FN_METHOD_MOBILEINITIATOR_FINISH_HANDSHAKE
|
|
291
|
+
void uniffi_genation_bridge_crypto_uniffi_fn_method_mobileinitiator_finish_handshake(void*_Nonnull ptr, RustBuffer message, RustCallStatus *_Nonnull out_status
|
|
292
|
+
);
|
|
293
|
+
#endif
|
|
294
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_FN_CLONE_MOBILERESPONDER
|
|
295
|
+
#define UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_FN_CLONE_MOBILERESPONDER
|
|
296
|
+
void*_Nonnull uniffi_genation_bridge_crypto_uniffi_fn_clone_mobileresponder(void*_Nonnull ptr, RustCallStatus *_Nonnull out_status
|
|
297
|
+
);
|
|
298
|
+
#endif
|
|
299
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_FN_FREE_MOBILERESPONDER
|
|
300
|
+
#define UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_FN_FREE_MOBILERESPONDER
|
|
301
|
+
void uniffi_genation_bridge_crypto_uniffi_fn_free_mobileresponder(void*_Nonnull ptr, RustCallStatus *_Nonnull out_status
|
|
302
|
+
);
|
|
303
|
+
#endif
|
|
304
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_FN_CONSTRUCTOR_MOBILERESPONDER_NEW
|
|
305
|
+
#define UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_FN_CONSTRUCTOR_MOBILERESPONDER_NEW
|
|
306
|
+
void*_Nonnull uniffi_genation_bridge_crypto_uniffi_fn_constructor_mobileresponder_new(RustBuffer prologue, RustBuffer local_private_key, RustBuffer initiator_public_key, RustCallStatus *_Nonnull out_status
|
|
307
|
+
);
|
|
308
|
+
#endif
|
|
309
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_FN_METHOD_MOBILERESPONDER_ACCEPT_HANDSHAKE
|
|
310
|
+
#define UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_FN_METHOD_MOBILERESPONDER_ACCEPT_HANDSHAKE
|
|
311
|
+
RustBuffer uniffi_genation_bridge_crypto_uniffi_fn_method_mobileresponder_accept_handshake(void*_Nonnull ptr, RustBuffer message, RustCallStatus *_Nonnull out_status
|
|
312
|
+
);
|
|
313
|
+
#endif
|
|
314
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_FN_METHOD_MOBILERESPONDER_CLOSE_SESSION
|
|
315
|
+
#define UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_FN_METHOD_MOBILERESPONDER_CLOSE_SESSION
|
|
316
|
+
void uniffi_genation_bridge_crypto_uniffi_fn_method_mobileresponder_close_session(void*_Nonnull ptr, RustCallStatus *_Nonnull out_status
|
|
317
|
+
);
|
|
318
|
+
#endif
|
|
319
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_FN_METHOD_MOBILERESPONDER_DECRYPT
|
|
320
|
+
#define UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_FN_METHOD_MOBILERESPONDER_DECRYPT
|
|
321
|
+
RustBuffer uniffi_genation_bridge_crypto_uniffi_fn_method_mobileresponder_decrypt(void*_Nonnull ptr, RustBuffer aad, RustBuffer ciphertext, RustCallStatus *_Nonnull out_status
|
|
322
|
+
);
|
|
323
|
+
#endif
|
|
324
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_FN_METHOD_MOBILERESPONDER_ENCRYPT
|
|
325
|
+
#define UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_FN_METHOD_MOBILERESPONDER_ENCRYPT
|
|
326
|
+
RustBuffer uniffi_genation_bridge_crypto_uniffi_fn_method_mobileresponder_encrypt(void*_Nonnull ptr, RustBuffer aad, RustBuffer plaintext, RustCallStatus *_Nonnull out_status
|
|
327
|
+
);
|
|
328
|
+
#endif
|
|
329
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_FN_FUNC_GENERATE_MOBILE_IDENTITY
|
|
330
|
+
#define UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_FN_FUNC_GENERATE_MOBILE_IDENTITY
|
|
331
|
+
RustBuffer uniffi_genation_bridge_crypto_uniffi_fn_func_generate_mobile_identity(RustCallStatus *_Nonnull out_status
|
|
332
|
+
|
|
333
|
+
);
|
|
334
|
+
#endif
|
|
335
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_FN_FUNC_SIGN_MOBILE_ED25519
|
|
336
|
+
#define UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_FN_FUNC_SIGN_MOBILE_ED25519
|
|
337
|
+
RustBuffer uniffi_genation_bridge_crypto_uniffi_fn_func_sign_mobile_ed25519(RustBuffer private_key, RustBuffer message, RustCallStatus *_Nonnull out_status
|
|
338
|
+
);
|
|
339
|
+
#endif
|
|
340
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUSTBUFFER_ALLOC
|
|
341
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUSTBUFFER_ALLOC
|
|
342
|
+
RustBuffer ffi_genation_bridge_crypto_uniffi_rustbuffer_alloc(uint64_t size, RustCallStatus *_Nonnull out_status
|
|
343
|
+
);
|
|
344
|
+
#endif
|
|
345
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUSTBUFFER_FROM_BYTES
|
|
346
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUSTBUFFER_FROM_BYTES
|
|
347
|
+
RustBuffer ffi_genation_bridge_crypto_uniffi_rustbuffer_from_bytes(ForeignBytes bytes, RustCallStatus *_Nonnull out_status
|
|
348
|
+
);
|
|
349
|
+
#endif
|
|
350
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUSTBUFFER_FREE
|
|
351
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUSTBUFFER_FREE
|
|
352
|
+
void ffi_genation_bridge_crypto_uniffi_rustbuffer_free(RustBuffer buf, RustCallStatus *_Nonnull out_status
|
|
353
|
+
);
|
|
354
|
+
#endif
|
|
355
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUSTBUFFER_RESERVE
|
|
356
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUSTBUFFER_RESERVE
|
|
357
|
+
RustBuffer ffi_genation_bridge_crypto_uniffi_rustbuffer_reserve(RustBuffer buf, uint64_t additional, RustCallStatus *_Nonnull out_status
|
|
358
|
+
);
|
|
359
|
+
#endif
|
|
360
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_POLL_U8
|
|
361
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_POLL_U8
|
|
362
|
+
void ffi_genation_bridge_crypto_uniffi_rust_future_poll_u8(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
|
|
363
|
+
);
|
|
364
|
+
#endif
|
|
365
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_CANCEL_U8
|
|
366
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_CANCEL_U8
|
|
367
|
+
void ffi_genation_bridge_crypto_uniffi_rust_future_cancel_u8(uint64_t handle
|
|
368
|
+
);
|
|
369
|
+
#endif
|
|
370
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_FREE_U8
|
|
371
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_FREE_U8
|
|
372
|
+
void ffi_genation_bridge_crypto_uniffi_rust_future_free_u8(uint64_t handle
|
|
373
|
+
);
|
|
374
|
+
#endif
|
|
375
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_COMPLETE_U8
|
|
376
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_COMPLETE_U8
|
|
377
|
+
uint8_t ffi_genation_bridge_crypto_uniffi_rust_future_complete_u8(uint64_t handle, RustCallStatus *_Nonnull out_status
|
|
378
|
+
);
|
|
379
|
+
#endif
|
|
380
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_POLL_I8
|
|
381
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_POLL_I8
|
|
382
|
+
void ffi_genation_bridge_crypto_uniffi_rust_future_poll_i8(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
|
|
383
|
+
);
|
|
384
|
+
#endif
|
|
385
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_CANCEL_I8
|
|
386
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_CANCEL_I8
|
|
387
|
+
void ffi_genation_bridge_crypto_uniffi_rust_future_cancel_i8(uint64_t handle
|
|
388
|
+
);
|
|
389
|
+
#endif
|
|
390
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_FREE_I8
|
|
391
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_FREE_I8
|
|
392
|
+
void ffi_genation_bridge_crypto_uniffi_rust_future_free_i8(uint64_t handle
|
|
393
|
+
);
|
|
394
|
+
#endif
|
|
395
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_COMPLETE_I8
|
|
396
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_COMPLETE_I8
|
|
397
|
+
int8_t ffi_genation_bridge_crypto_uniffi_rust_future_complete_i8(uint64_t handle, RustCallStatus *_Nonnull out_status
|
|
398
|
+
);
|
|
399
|
+
#endif
|
|
400
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_POLL_U16
|
|
401
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_POLL_U16
|
|
402
|
+
void ffi_genation_bridge_crypto_uniffi_rust_future_poll_u16(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
|
|
403
|
+
);
|
|
404
|
+
#endif
|
|
405
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_CANCEL_U16
|
|
406
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_CANCEL_U16
|
|
407
|
+
void ffi_genation_bridge_crypto_uniffi_rust_future_cancel_u16(uint64_t handle
|
|
408
|
+
);
|
|
409
|
+
#endif
|
|
410
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_FREE_U16
|
|
411
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_FREE_U16
|
|
412
|
+
void ffi_genation_bridge_crypto_uniffi_rust_future_free_u16(uint64_t handle
|
|
413
|
+
);
|
|
414
|
+
#endif
|
|
415
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_COMPLETE_U16
|
|
416
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_COMPLETE_U16
|
|
417
|
+
uint16_t ffi_genation_bridge_crypto_uniffi_rust_future_complete_u16(uint64_t handle, RustCallStatus *_Nonnull out_status
|
|
418
|
+
);
|
|
419
|
+
#endif
|
|
420
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_POLL_I16
|
|
421
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_POLL_I16
|
|
422
|
+
void ffi_genation_bridge_crypto_uniffi_rust_future_poll_i16(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
|
|
423
|
+
);
|
|
424
|
+
#endif
|
|
425
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_CANCEL_I16
|
|
426
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_CANCEL_I16
|
|
427
|
+
void ffi_genation_bridge_crypto_uniffi_rust_future_cancel_i16(uint64_t handle
|
|
428
|
+
);
|
|
429
|
+
#endif
|
|
430
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_FREE_I16
|
|
431
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_FREE_I16
|
|
432
|
+
void ffi_genation_bridge_crypto_uniffi_rust_future_free_i16(uint64_t handle
|
|
433
|
+
);
|
|
434
|
+
#endif
|
|
435
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_COMPLETE_I16
|
|
436
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_COMPLETE_I16
|
|
437
|
+
int16_t ffi_genation_bridge_crypto_uniffi_rust_future_complete_i16(uint64_t handle, RustCallStatus *_Nonnull out_status
|
|
438
|
+
);
|
|
439
|
+
#endif
|
|
440
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_POLL_U32
|
|
441
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_POLL_U32
|
|
442
|
+
void ffi_genation_bridge_crypto_uniffi_rust_future_poll_u32(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
|
|
443
|
+
);
|
|
444
|
+
#endif
|
|
445
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_CANCEL_U32
|
|
446
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_CANCEL_U32
|
|
447
|
+
void ffi_genation_bridge_crypto_uniffi_rust_future_cancel_u32(uint64_t handle
|
|
448
|
+
);
|
|
449
|
+
#endif
|
|
450
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_FREE_U32
|
|
451
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_FREE_U32
|
|
452
|
+
void ffi_genation_bridge_crypto_uniffi_rust_future_free_u32(uint64_t handle
|
|
453
|
+
);
|
|
454
|
+
#endif
|
|
455
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_COMPLETE_U32
|
|
456
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_COMPLETE_U32
|
|
457
|
+
uint32_t ffi_genation_bridge_crypto_uniffi_rust_future_complete_u32(uint64_t handle, RustCallStatus *_Nonnull out_status
|
|
458
|
+
);
|
|
459
|
+
#endif
|
|
460
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_POLL_I32
|
|
461
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_POLL_I32
|
|
462
|
+
void ffi_genation_bridge_crypto_uniffi_rust_future_poll_i32(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
|
|
463
|
+
);
|
|
464
|
+
#endif
|
|
465
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_CANCEL_I32
|
|
466
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_CANCEL_I32
|
|
467
|
+
void ffi_genation_bridge_crypto_uniffi_rust_future_cancel_i32(uint64_t handle
|
|
468
|
+
);
|
|
469
|
+
#endif
|
|
470
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_FREE_I32
|
|
471
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_FREE_I32
|
|
472
|
+
void ffi_genation_bridge_crypto_uniffi_rust_future_free_i32(uint64_t handle
|
|
473
|
+
);
|
|
474
|
+
#endif
|
|
475
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_COMPLETE_I32
|
|
476
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_COMPLETE_I32
|
|
477
|
+
int32_t ffi_genation_bridge_crypto_uniffi_rust_future_complete_i32(uint64_t handle, RustCallStatus *_Nonnull out_status
|
|
478
|
+
);
|
|
479
|
+
#endif
|
|
480
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_POLL_U64
|
|
481
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_POLL_U64
|
|
482
|
+
void ffi_genation_bridge_crypto_uniffi_rust_future_poll_u64(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
|
|
483
|
+
);
|
|
484
|
+
#endif
|
|
485
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_CANCEL_U64
|
|
486
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_CANCEL_U64
|
|
487
|
+
void ffi_genation_bridge_crypto_uniffi_rust_future_cancel_u64(uint64_t handle
|
|
488
|
+
);
|
|
489
|
+
#endif
|
|
490
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_FREE_U64
|
|
491
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_FREE_U64
|
|
492
|
+
void ffi_genation_bridge_crypto_uniffi_rust_future_free_u64(uint64_t handle
|
|
493
|
+
);
|
|
494
|
+
#endif
|
|
495
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_COMPLETE_U64
|
|
496
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_COMPLETE_U64
|
|
497
|
+
uint64_t ffi_genation_bridge_crypto_uniffi_rust_future_complete_u64(uint64_t handle, RustCallStatus *_Nonnull out_status
|
|
498
|
+
);
|
|
499
|
+
#endif
|
|
500
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_POLL_I64
|
|
501
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_POLL_I64
|
|
502
|
+
void ffi_genation_bridge_crypto_uniffi_rust_future_poll_i64(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
|
|
503
|
+
);
|
|
504
|
+
#endif
|
|
505
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_CANCEL_I64
|
|
506
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_CANCEL_I64
|
|
507
|
+
void ffi_genation_bridge_crypto_uniffi_rust_future_cancel_i64(uint64_t handle
|
|
508
|
+
);
|
|
509
|
+
#endif
|
|
510
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_FREE_I64
|
|
511
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_FREE_I64
|
|
512
|
+
void ffi_genation_bridge_crypto_uniffi_rust_future_free_i64(uint64_t handle
|
|
513
|
+
);
|
|
514
|
+
#endif
|
|
515
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_COMPLETE_I64
|
|
516
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_COMPLETE_I64
|
|
517
|
+
int64_t ffi_genation_bridge_crypto_uniffi_rust_future_complete_i64(uint64_t handle, RustCallStatus *_Nonnull out_status
|
|
518
|
+
);
|
|
519
|
+
#endif
|
|
520
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_POLL_F32
|
|
521
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_POLL_F32
|
|
522
|
+
void ffi_genation_bridge_crypto_uniffi_rust_future_poll_f32(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
|
|
523
|
+
);
|
|
524
|
+
#endif
|
|
525
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_CANCEL_F32
|
|
526
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_CANCEL_F32
|
|
527
|
+
void ffi_genation_bridge_crypto_uniffi_rust_future_cancel_f32(uint64_t handle
|
|
528
|
+
);
|
|
529
|
+
#endif
|
|
530
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_FREE_F32
|
|
531
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_FREE_F32
|
|
532
|
+
void ffi_genation_bridge_crypto_uniffi_rust_future_free_f32(uint64_t handle
|
|
533
|
+
);
|
|
534
|
+
#endif
|
|
535
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_COMPLETE_F32
|
|
536
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_COMPLETE_F32
|
|
537
|
+
float ffi_genation_bridge_crypto_uniffi_rust_future_complete_f32(uint64_t handle, RustCallStatus *_Nonnull out_status
|
|
538
|
+
);
|
|
539
|
+
#endif
|
|
540
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_POLL_F64
|
|
541
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_POLL_F64
|
|
542
|
+
void ffi_genation_bridge_crypto_uniffi_rust_future_poll_f64(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
|
|
543
|
+
);
|
|
544
|
+
#endif
|
|
545
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_CANCEL_F64
|
|
546
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_CANCEL_F64
|
|
547
|
+
void ffi_genation_bridge_crypto_uniffi_rust_future_cancel_f64(uint64_t handle
|
|
548
|
+
);
|
|
549
|
+
#endif
|
|
550
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_FREE_F64
|
|
551
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_FREE_F64
|
|
552
|
+
void ffi_genation_bridge_crypto_uniffi_rust_future_free_f64(uint64_t handle
|
|
553
|
+
);
|
|
554
|
+
#endif
|
|
555
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_COMPLETE_F64
|
|
556
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_COMPLETE_F64
|
|
557
|
+
double ffi_genation_bridge_crypto_uniffi_rust_future_complete_f64(uint64_t handle, RustCallStatus *_Nonnull out_status
|
|
558
|
+
);
|
|
559
|
+
#endif
|
|
560
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_POLL_POINTER
|
|
561
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_POLL_POINTER
|
|
562
|
+
void ffi_genation_bridge_crypto_uniffi_rust_future_poll_pointer(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
|
|
563
|
+
);
|
|
564
|
+
#endif
|
|
565
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_CANCEL_POINTER
|
|
566
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_CANCEL_POINTER
|
|
567
|
+
void ffi_genation_bridge_crypto_uniffi_rust_future_cancel_pointer(uint64_t handle
|
|
568
|
+
);
|
|
569
|
+
#endif
|
|
570
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_FREE_POINTER
|
|
571
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_FREE_POINTER
|
|
572
|
+
void ffi_genation_bridge_crypto_uniffi_rust_future_free_pointer(uint64_t handle
|
|
573
|
+
);
|
|
574
|
+
#endif
|
|
575
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_COMPLETE_POINTER
|
|
576
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_COMPLETE_POINTER
|
|
577
|
+
void*_Nonnull ffi_genation_bridge_crypto_uniffi_rust_future_complete_pointer(uint64_t handle, RustCallStatus *_Nonnull out_status
|
|
578
|
+
);
|
|
579
|
+
#endif
|
|
580
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_POLL_RUST_BUFFER
|
|
581
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_POLL_RUST_BUFFER
|
|
582
|
+
void ffi_genation_bridge_crypto_uniffi_rust_future_poll_rust_buffer(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
|
|
583
|
+
);
|
|
584
|
+
#endif
|
|
585
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_CANCEL_RUST_BUFFER
|
|
586
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_CANCEL_RUST_BUFFER
|
|
587
|
+
void ffi_genation_bridge_crypto_uniffi_rust_future_cancel_rust_buffer(uint64_t handle
|
|
588
|
+
);
|
|
589
|
+
#endif
|
|
590
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_FREE_RUST_BUFFER
|
|
591
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_FREE_RUST_BUFFER
|
|
592
|
+
void ffi_genation_bridge_crypto_uniffi_rust_future_free_rust_buffer(uint64_t handle
|
|
593
|
+
);
|
|
594
|
+
#endif
|
|
595
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_COMPLETE_RUST_BUFFER
|
|
596
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_COMPLETE_RUST_BUFFER
|
|
597
|
+
RustBuffer ffi_genation_bridge_crypto_uniffi_rust_future_complete_rust_buffer(uint64_t handle, RustCallStatus *_Nonnull out_status
|
|
598
|
+
);
|
|
599
|
+
#endif
|
|
600
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_POLL_VOID
|
|
601
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_POLL_VOID
|
|
602
|
+
void ffi_genation_bridge_crypto_uniffi_rust_future_poll_void(uint64_t handle, UniffiRustFutureContinuationCallback _Nonnull callback, uint64_t callback_data
|
|
603
|
+
);
|
|
604
|
+
#endif
|
|
605
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_CANCEL_VOID
|
|
606
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_CANCEL_VOID
|
|
607
|
+
void ffi_genation_bridge_crypto_uniffi_rust_future_cancel_void(uint64_t handle
|
|
608
|
+
);
|
|
609
|
+
#endif
|
|
610
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_FREE_VOID
|
|
611
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_FREE_VOID
|
|
612
|
+
void ffi_genation_bridge_crypto_uniffi_rust_future_free_void(uint64_t handle
|
|
613
|
+
);
|
|
614
|
+
#endif
|
|
615
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_COMPLETE_VOID
|
|
616
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_RUST_FUTURE_COMPLETE_VOID
|
|
617
|
+
void ffi_genation_bridge_crypto_uniffi_rust_future_complete_void(uint64_t handle, RustCallStatus *_Nonnull out_status
|
|
618
|
+
);
|
|
619
|
+
#endif
|
|
620
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_CHECKSUM_FUNC_GENERATE_MOBILE_IDENTITY
|
|
621
|
+
#define UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_CHECKSUM_FUNC_GENERATE_MOBILE_IDENTITY
|
|
622
|
+
uint16_t uniffi_genation_bridge_crypto_uniffi_checksum_func_generate_mobile_identity(void
|
|
623
|
+
|
|
624
|
+
);
|
|
625
|
+
#endif
|
|
626
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_CHECKSUM_FUNC_SIGN_MOBILE_ED25519
|
|
627
|
+
#define UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_CHECKSUM_FUNC_SIGN_MOBILE_ED25519
|
|
628
|
+
uint16_t uniffi_genation_bridge_crypto_uniffi_checksum_func_sign_mobile_ed25519(void
|
|
629
|
+
|
|
630
|
+
);
|
|
631
|
+
#endif
|
|
632
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_CHECKSUM_METHOD_MOBILEINITIATOR_BEGIN_HANDSHAKE
|
|
633
|
+
#define UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_CHECKSUM_METHOD_MOBILEINITIATOR_BEGIN_HANDSHAKE
|
|
634
|
+
uint16_t uniffi_genation_bridge_crypto_uniffi_checksum_method_mobileinitiator_begin_handshake(void
|
|
635
|
+
|
|
636
|
+
);
|
|
637
|
+
#endif
|
|
638
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_CHECKSUM_METHOD_MOBILEINITIATOR_CLOSE_SESSION
|
|
639
|
+
#define UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_CHECKSUM_METHOD_MOBILEINITIATOR_CLOSE_SESSION
|
|
640
|
+
uint16_t uniffi_genation_bridge_crypto_uniffi_checksum_method_mobileinitiator_close_session(void
|
|
641
|
+
|
|
642
|
+
);
|
|
643
|
+
#endif
|
|
644
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_CHECKSUM_METHOD_MOBILEINITIATOR_DECRYPT
|
|
645
|
+
#define UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_CHECKSUM_METHOD_MOBILEINITIATOR_DECRYPT
|
|
646
|
+
uint16_t uniffi_genation_bridge_crypto_uniffi_checksum_method_mobileinitiator_decrypt(void
|
|
647
|
+
|
|
648
|
+
);
|
|
649
|
+
#endif
|
|
650
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_CHECKSUM_METHOD_MOBILEINITIATOR_ENCRYPT
|
|
651
|
+
#define UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_CHECKSUM_METHOD_MOBILEINITIATOR_ENCRYPT
|
|
652
|
+
uint16_t uniffi_genation_bridge_crypto_uniffi_checksum_method_mobileinitiator_encrypt(void
|
|
653
|
+
|
|
654
|
+
);
|
|
655
|
+
#endif
|
|
656
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_CHECKSUM_METHOD_MOBILEINITIATOR_FINISH_HANDSHAKE
|
|
657
|
+
#define UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_CHECKSUM_METHOD_MOBILEINITIATOR_FINISH_HANDSHAKE
|
|
658
|
+
uint16_t uniffi_genation_bridge_crypto_uniffi_checksum_method_mobileinitiator_finish_handshake(void
|
|
659
|
+
|
|
660
|
+
);
|
|
661
|
+
#endif
|
|
662
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_CHECKSUM_METHOD_MOBILERESPONDER_ACCEPT_HANDSHAKE
|
|
663
|
+
#define UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_CHECKSUM_METHOD_MOBILERESPONDER_ACCEPT_HANDSHAKE
|
|
664
|
+
uint16_t uniffi_genation_bridge_crypto_uniffi_checksum_method_mobileresponder_accept_handshake(void
|
|
665
|
+
|
|
666
|
+
);
|
|
667
|
+
#endif
|
|
668
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_CHECKSUM_METHOD_MOBILERESPONDER_CLOSE_SESSION
|
|
669
|
+
#define UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_CHECKSUM_METHOD_MOBILERESPONDER_CLOSE_SESSION
|
|
670
|
+
uint16_t uniffi_genation_bridge_crypto_uniffi_checksum_method_mobileresponder_close_session(void
|
|
671
|
+
|
|
672
|
+
);
|
|
673
|
+
#endif
|
|
674
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_CHECKSUM_METHOD_MOBILERESPONDER_DECRYPT
|
|
675
|
+
#define UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_CHECKSUM_METHOD_MOBILERESPONDER_DECRYPT
|
|
676
|
+
uint16_t uniffi_genation_bridge_crypto_uniffi_checksum_method_mobileresponder_decrypt(void
|
|
677
|
+
|
|
678
|
+
);
|
|
679
|
+
#endif
|
|
680
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_CHECKSUM_METHOD_MOBILERESPONDER_ENCRYPT
|
|
681
|
+
#define UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_CHECKSUM_METHOD_MOBILERESPONDER_ENCRYPT
|
|
682
|
+
uint16_t uniffi_genation_bridge_crypto_uniffi_checksum_method_mobileresponder_encrypt(void
|
|
683
|
+
|
|
684
|
+
);
|
|
685
|
+
#endif
|
|
686
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_CHECKSUM_CONSTRUCTOR_MOBILEINITIATOR_NEW
|
|
687
|
+
#define UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_CHECKSUM_CONSTRUCTOR_MOBILEINITIATOR_NEW
|
|
688
|
+
uint16_t uniffi_genation_bridge_crypto_uniffi_checksum_constructor_mobileinitiator_new(void
|
|
689
|
+
|
|
690
|
+
);
|
|
691
|
+
#endif
|
|
692
|
+
#ifndef UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_CHECKSUM_CONSTRUCTOR_MOBILERESPONDER_NEW
|
|
693
|
+
#define UNIFFI_FFIDEF_UNIFFI_GENATION_BRIDGE_CRYPTO_UNIFFI_CHECKSUM_CONSTRUCTOR_MOBILERESPONDER_NEW
|
|
694
|
+
uint16_t uniffi_genation_bridge_crypto_uniffi_checksum_constructor_mobileresponder_new(void
|
|
695
|
+
|
|
696
|
+
);
|
|
697
|
+
#endif
|
|
698
|
+
#ifndef UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_UNIFFI_CONTRACT_VERSION
|
|
699
|
+
#define UNIFFI_FFIDEF_FFI_GENATION_BRIDGE_CRYPTO_UNIFFI_UNIFFI_CONTRACT_VERSION
|
|
700
|
+
uint32_t ffi_genation_bridge_crypto_uniffi_uniffi_contract_version(void
|
|
701
|
+
|
|
702
|
+
);
|
|
703
|
+
#endif
|