@vouch-protocol-official/core-wasm 0.1.0 → 2.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/README.md CHANGED
@@ -37,7 +37,7 @@ import init, * as core from '@vouch-protocol-official/core-wasm';
37
37
  await init(); // fetches the .wasm next to the module
38
38
 
39
39
  const kp = JSON.parse(core.generateEd25519());
40
- const signed = core.signCredential(
40
+ const signed = core.sign(
41
41
  JSON.stringify(myCredential),
42
42
  kp.seed_b64,
43
43
  kp.did_key + '#key-1',
@@ -88,8 +88,8 @@ input. Highlights:
88
88
  - `encodeEd25519Multikey(public_b64) -> string`, `decodeMultikey(mk) -> {algorithm, raw_b64}`
89
89
  - `didKeyFromEd25519(public_b64) -> string`, `ed25519FromDidKey(did) -> string`
90
90
  - `buildProof(credentialJson, seed_b64, verificationMethod, createdIso) -> proofJson`
91
- - `signCredential(...)`, `verifyProof(credentialJson, public_b64) -> bool`
92
- - `verifyCredential(credentialJson, public_b64, nowIso, clockSkewSeconds) -> {proofValid, timeValid, valid}`
91
+ - `sign(...)`, `verifyProof(credentialJson, public_b64) -> bool`
92
+ - `verify(credentialJson, public_b64, nowIso, clockSkewSeconds) -> {proofValid, timeValid, valid}`
93
93
  - `verifyChainTimeBound(chainJson, nowIso, clockSkewSeconds) -> bool`
94
94
  - `generateMldsa44() -> {secret_b64, public_b64}`, `mldsa44Sign(...)`, `mldsa44Verify(...)`
95
95
  - `signDual(...)`, `verifyDual(...)`, `verifyComposite(...)`
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "Ramprasad Anandam Gaddam"
6
6
  ],
7
7
  "description": "Vouch Protocol canonical core (WASM): JCS canonicalization, Ed25519, did:key/multikey, Data Integrity (eddsa-jcs-2022), credentials, delegation, dual-proof ML-DSA-44, and BitstringStatusList revocation. One byte-exact Rust implementation shared across every Vouch SDK.",
8
- "version": "0.1.0",
8
+ "version": "2.1.0",
9
9
  "license": "Apache-2.0",
10
10
  "repository": {
11
11
  "type": "git",
@@ -40,13 +40,249 @@ export function mldsa44Sign(secret_b64: string, public_b64: string, message_b64:
40
40
 
41
41
  export function mldsa44Verify(public_b64: string, message_b64: string, signature_b64: string): boolean;
42
42
 
43
- export function signCredential(credential_json: string, seed_b64: string, verification_method: string, created: string): string;
43
+ export function roboticsAttachStatus(credential_json: string, signer_seed_b64: string, params_json: string): string;
44
+
45
+ export function roboticsAttenuateForWear(params_json: string): string;
46
+
47
+ export function roboticsAttenuates(parent_json: string, child_json: string): boolean;
48
+
49
+ export function roboticsAttenuatesGrant(params_json: string): string;
50
+
51
+ export function roboticsAuthorizeAccess(params_json: string, operator_public_b64: string, robot_public_b64: string): string;
52
+
53
+ export function roboticsBlackboxAppend(key_b64: string, seq: bigint, event: string, payload_json: string, timestamp: string, prev_hash: string): string;
54
+
55
+ export function roboticsBlackboxOpen(entry_json: string, key_b64: string): string;
56
+
57
+ export function roboticsBuildAccept(signer_seed_b64: string, hello_json: string, hello_public_b64: string, policy_json: string, params_json: string): string;
58
+
59
+ export function roboticsBuildAccessGrant(operator_seed_b64: string, params_json: string): string;
60
+
61
+ export function roboticsBuildAccessRequest(robot_seed_b64: string, params_json: string): string;
62
+
63
+ export function roboticsBuildActionApproval(approver_seed_b64: string, params_json: string): string;
64
+
65
+ export function roboticsBuildConfirm(signer_seed_b64: string, from_did: string, session_json: string, created: string): string;
66
+
67
+ export function roboticsBuildConformanceAttestation(signer_seed_b64: string, params_json: string): string;
68
+
69
+ export function roboticsBuildConsentEvidence(robot_seed_b64: string, params_json: string): string;
70
+
71
+ export function roboticsBuildConsentToken(bystander_seed_b64: string, params_json: string): string;
72
+
73
+ export function roboticsBuildDecommission(signer_seed_b64: string, params_json: string): string;
74
+
75
+ export function roboticsBuildEmbodiment(agent_seed_b64: string, params_json: string): string;
76
+
77
+ export function roboticsBuildFusedAttestation(robot_seed_b64: string, params_json: string): string;
78
+
79
+ export function roboticsBuildHandoff(receiver_seed_b64: string, params_json: string): string;
80
+
81
+ export function roboticsBuildHeartbeat(robot_seed_b64: string, params_json: string): string;
82
+
83
+ export function roboticsBuildHello(signer_seed_b64: string, params_json: string): string;
84
+
85
+ export function roboticsBuildKeyRotation(old_key_seed_b64: string, params_json: string): string;
86
+
87
+ export function roboticsBuildKillswitch(authority_seed_b64: string, params_json: string): string;
88
+
89
+ export function roboticsBuildLease(signer_seed_b64: string, params_json: string): string;
90
+
91
+ export function roboticsBuildOwnershipTransfer(current_owner_seed_b64: string, params_json: string): string;
92
+
93
+ export function roboticsBuildPassport(signer_seed_b64: string, params_json: string): string;
94
+
95
+ export function roboticsBuildPerception(robot_seed_b64: string, params_json: string): string;
96
+
97
+ export function roboticsBuildProvenance(signer_seed_b64: string, params_json: string): string;
98
+
99
+ export function roboticsBuildSafetyEvidence(signer_seed_b64: string, params_json: string): string;
100
+
101
+ export function roboticsBuildSafetyRecord(signer_seed_b64: string, params_json: string): string;
102
+
103
+ export function roboticsBuildScope(signer_seed_b64: string, params_json: string): string;
104
+
105
+ export function roboticsBuildStatusEntry(status_list_credential: string, status_list_index: bigint, status_purpose: string, entry_id?: string | null): string;
106
+
107
+ export function roboticsBuildWearAttestation(robot_seed_b64: string, params_json: string): string;
108
+
109
+ export function roboticsCheckAction(scope_json: string, action_json: string): string;
110
+
111
+ export function roboticsCheckConformance(credentials_json: string, profile_id: string): string;
112
+
113
+ export function roboticsCheckNoFork(params_json: string): string;
114
+
115
+ export function roboticsCheckStatus(credential_json: string, status_list_credential_json: string, status_purpose: string): boolean;
116
+
117
+ export function roboticsConfigHash(config_json: string): string;
118
+
119
+ export function roboticsDecodePassport(uri: string): string;
120
+
121
+ export function roboticsEncodePassport(passport_json: string): string;
122
+
123
+ export function roboticsFusionInputsDigest(params_json: string): string;
124
+
125
+ export function roboticsGenesisPrevHash(): string;
126
+
127
+ export function roboticsHashCapture(capture_b64: string): string;
128
+
129
+ export function roboticsHashFrame(frame_b64: string): string;
130
+
131
+ export function roboticsHashFusedOutput(output_b64: string): string;
132
+
133
+ export function roboticsHolderAt(params_json: string): string;
134
+
135
+ export function roboticsIsLive(credential_json: string, now_iso: string, interval_seconds: bigint | null | undefined, grace_intervals: bigint): boolean;
136
+
137
+ export function roboticsIsPq(credential_json: string): boolean;
138
+
139
+ export function roboticsLeasePermits(params_json: string): boolean;
140
+
141
+ export function roboticsLocateConditionChange(params_json: string): string;
142
+
143
+ export function roboticsMigrateToPq(credential_json: string, ed25519_seed_b64: string, mldsa_secret_b64: string, mldsa_public_b64: string, created: string): string;
144
+
145
+ export function roboticsMintIdentity(robot_seed_b64: string, params_json: string): string;
146
+
147
+ export function roboticsMotionDigest(params_json: string): string;
148
+
149
+ export function roboticsPerceptionRecord(params_json: string): string;
150
+
151
+ export function roboticsReportDigest(report_json: string): string;
152
+
153
+ export function roboticsSafetyAppend(params_json: string): string;
154
+
155
+ export function roboticsSignPq(credential_json: string, ed25519_seed_b64: string, mldsa_secret_b64: string, mldsa_public_b64: string, created: string): string;
156
+
157
+ export function roboticsSummarizeSafety(entries_json: string, head?: string | null): string;
158
+
159
+ export function roboticsValidateMotionDigest(digest_json: string): boolean;
160
+
161
+ export function roboticsVerifyAccept(accept_json: string, accept_public_b64: string, expected_nonce: string, policy_json?: string | null): string;
162
+
163
+ export function roboticsVerifyAccessGrant(credential_json: string, operator_public_b64: string): string;
164
+
165
+ export function roboticsVerifyActionAuthorization(params_json: string): string;
166
+
167
+ export function roboticsVerifyChain(entries_json: string, genesis_prev_hash?: string | null): string;
168
+
169
+ export function roboticsVerifyConfirm(confirm_json: string, confirm_public_b64: string, session_id: string, expected_nonce: string): boolean;
170
+
171
+ export function roboticsVerifyConformanceAttestation(credential_json: string, public_b64: string): string;
172
+
173
+ export function roboticsVerifyConsentEvidence(params_json: string, robot_public_b64: string): string;
174
+
175
+ export function roboticsVerifyConsentToken(params_json: string, bystander_public_b64: string): string;
176
+
177
+ export function roboticsVerifyContinuityChain(params_json: string, agent_public_b64: string): string;
178
+
179
+ export function roboticsVerifyCustodyChain(params_json: string): string;
180
+
181
+ export function roboticsVerifyDecommission(credential_json: string, public_b64: string, trusted_authorities_json?: string | null): string;
182
+
183
+ export function roboticsVerifyEmbodiment(credential_json: string, agent_public_b64: string): string;
184
+
185
+ export function roboticsVerifyFusedAttestation(credential_json: string, public_b64: string, fused_output_b64?: string | null): string;
186
+
187
+ export function roboticsVerifyFusionInputs(params_json: string): string;
188
+
189
+ export function roboticsVerifyHandoff(credential_json: string, receiver_public_b64: string): string;
190
+
191
+ export function roboticsVerifyHandoffChain(params_json: string): string;
192
+
193
+ export function roboticsVerifyHeartbeat(credential_json: string, robot_public_b64: string): string;
194
+
195
+ export function roboticsVerifyIdentity(credential_json: string, robot_public_b64: string): string;
196
+
197
+ export function roboticsVerifyKeyHistory(params_json: string): string;
198
+
199
+ export function roboticsVerifyKeyRotation(credential_json: string, old_public_b64: string): string;
200
+
201
+ export function roboticsVerifyKillswitch(credential_json: string, public_b64: string, trusted_authorities_json?: string | null): string;
202
+
203
+ export function roboticsVerifyLease(credential_json: string, public_b64: string, now_iso?: string | null, parent_scope_json?: string | null): string;
204
+
205
+ export function roboticsVerifyOwnershipTransfer(credential_json: string, public_b64: string): string;
206
+
207
+ export function roboticsVerifyPassport(passport_json: string, public_b64: string, now_iso: string): string;
208
+
209
+ export function roboticsVerifyPassportUri(uri: string, public_b64: string, now_iso: string): string;
210
+
211
+ export function roboticsVerifyPerception(credential_json: string, public_b64: string, frame_b64?: string | null): string;
212
+
213
+ export function roboticsVerifyPerceptionLog(entries_json: string, genesis_prev_hash?: string | null): string;
214
+
215
+ /**
216
+ * Verify a hybrid robot credential. `mldsa44_public_b64` is base64 of raw
217
+ * 1312-byte bytes or of an ML-DSA-44 Multikey string (UTF-8).
218
+ */
219
+ export function roboticsVerifyPq(credential_json: string, ed25519_public_b64: string, mldsa44_public_b64: string): boolean;
220
+
221
+ export function roboticsVerifyProvenance(attestation_json: string, public_b64: string, config_json?: string | null): string;
222
+
223
+ /**
224
+ * Dual verify auto-detected from the proof. `mldsa44_public_b64`, when present,
225
+ * is base64 of raw 1312-byte bytes or of an ML-DSA-44 Multikey string (UTF-8);
226
+ * a hybrid credential requires it, a classical credential ignores it.
227
+ */
228
+ export function roboticsVerifyRobotCredential(credential_json: string, ed25519_public_b64: string, mldsa44_public_b64?: string | null): boolean;
229
+
230
+ export function roboticsVerifySafetyEvidence(credential_json: string, robot_public_b64: string, entries_json: string): string;
231
+
232
+ export function roboticsVerifySafetyLog(entries_json: string, genesis_prev_hash?: string | null): string;
233
+
234
+ export function roboticsVerifySafetyRecord(credential_json: string, public_b64: string): string;
235
+
236
+ export function roboticsVerifyWearAttestation(credential_json: string, public_b64: string): string;
237
+
238
+ export function roboticsVerifyWearChain(params_json: string, public_b64: string): string;
239
+
240
+ export function sign(credential_json: string, seed_b64: string, verification_method: string, created: string): string;
44
241
 
45
242
  /**
46
243
  * Build a dual proof (Ed25519 + ML-DSA-44) and attach it to the credential.
47
244
  */
48
245
  export function signDual(credential_json: string, ed25519_seed_b64: string, mldsa_secret_b64: string, mldsa_public_b64: string, ed25519_vm: string, mldsa_vm: string, created: string): string;
49
246
 
247
+ /**
248
+ * Combine signature shares into the final signature. commitmentsJson and
249
+ * sharesJson map each signer's base64 identifier to its base64 commitment /
250
+ * signature share. groupPublicKeyJson is the group_public_key object from
251
+ * thresholdGenerateKey. Returns the base64-encoded 64-byte Ed25519 signature.
252
+ */
253
+ export function thresholdAggregate(message_b64: string, commitments_json: string, shares_json: string, group_public_key_json: string): string;
254
+
255
+ /**
256
+ * Round 1 for one signer (one entry from thresholdGenerateKey's shares
257
+ * array). Returns JSON {nonces, commitments}. nonces is SECRET: keep it on
258
+ * this signer's device only, use it for exactly one thresholdSignShare call,
259
+ * then discard it.
260
+ */
261
+ export function thresholdCommit(key_share_json: string): string;
262
+
263
+ /**
264
+ * Mint a fresh threshold-native Ed25519 identity: maxSigners key shares, any
265
+ * minSigners of which can sign together. Returns JSON
266
+ * {shares: [{identifier, key_package}, ...], group_public_key: {verifying_key, public_key_package}}.
267
+ */
268
+ export function thresholdGenerateKey(min_signers: number, max_signers: number): string;
269
+
270
+ /**
271
+ * Round 2 for one signer. messageB64 is the base64-encoded bytes to sign.
272
+ * commitmentsJson maps every participating signer's base64 identifier to its
273
+ * base64 commitment, including this signer's own. Returns the
274
+ * base64-encoded signature share.
275
+ */
276
+ export function thresholdSignShare(message_b64: string, key_share_json: string, nonces_b64: string, commitments_json: string): string;
277
+
278
+ /**
279
+ * v1.7 capability-attenuation chain validation. Infallible JSON boundary:
280
+ * returns a `{"valid": bool, ...}` verdict string (see core::attenuation).
281
+ */
282
+ export function validateDelegationChain(request_json: string): string;
283
+
284
+ export function verify(credential_json: string, public_b64: string, now_iso: string, clock_skew_seconds: number): string;
285
+
50
286
  /**
51
287
  * Validate the time-bound rule over a delegation chain (JSON array of links).
52
288
  */
@@ -54,8 +290,6 @@ export function verifyChainTimeBound(chain_json: string, now_iso: string, clock_
54
290
 
55
291
  export function verifyComposite(credential_json: string, ed25519_public_b64: string, mldsa_public_b64: string): boolean;
56
292
 
57
- export function verifyCredential(credential_json: string, public_b64: string, now_iso: string, clock_skew_seconds: number): string;
58
-
59
293
  export function verifyDual(credential_json: string, ed25519_public_b64: string, mldsa_public_b64: string): boolean;
60
294
 
61
295
  export function verifyProof(credential_json: string, public_b64: string): boolean;
@@ -84,11 +318,110 @@ export interface InitOutput {
84
318
  readonly generateMldsa44: (a: number) => void;
85
319
  readonly mldsa44Sign: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
86
320
  readonly mldsa44Verify: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
87
- readonly signCredential: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => void;
321
+ readonly roboticsAttachStatus: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
322
+ readonly roboticsAttenuateForWear: (a: number, b: number, c: number) => void;
323
+ readonly roboticsAttenuates: (a: number, b: number, c: number, d: number, e: number) => void;
324
+ readonly roboticsAttenuatesGrant: (a: number, b: number, c: number) => void;
325
+ readonly roboticsAuthorizeAccess: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
326
+ readonly roboticsBlackboxAppend: (a: number, b: number, c: number, d: bigint, e: number, f: number, g: number, h: number, i: number, j: number, k: number, l: number) => void;
327
+ readonly roboticsBlackboxOpen: (a: number, b: number, c: number, d: number, e: number) => void;
328
+ readonly roboticsBuildAccept: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number, j: number, k: number) => void;
329
+ readonly roboticsBuildAccessGrant: (a: number, b: number, c: number, d: number, e: number) => void;
330
+ readonly roboticsBuildAccessRequest: (a: number, b: number, c: number, d: number, e: number) => void;
331
+ readonly roboticsBuildActionApproval: (a: number, b: number, c: number, d: number, e: number) => void;
332
+ readonly roboticsBuildConfirm: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => void;
333
+ readonly roboticsBuildConformanceAttestation: (a: number, b: number, c: number, d: number, e: number) => void;
334
+ readonly roboticsBuildConsentEvidence: (a: number, b: number, c: number, d: number, e: number) => void;
335
+ readonly roboticsBuildConsentToken: (a: number, b: number, c: number, d: number, e: number) => void;
336
+ readonly roboticsBuildDecommission: (a: number, b: number, c: number, d: number, e: number) => void;
337
+ readonly roboticsBuildEmbodiment: (a: number, b: number, c: number, d: number, e: number) => void;
338
+ readonly roboticsBuildFusedAttestation: (a: number, b: number, c: number, d: number, e: number) => void;
339
+ readonly roboticsBuildHandoff: (a: number, b: number, c: number, d: number, e: number) => void;
340
+ readonly roboticsBuildHeartbeat: (a: number, b: number, c: number, d: number, e: number) => void;
341
+ readonly roboticsBuildHello: (a: number, b: number, c: number, d: number, e: number) => void;
342
+ readonly roboticsBuildKeyRotation: (a: number, b: number, c: number, d: number, e: number) => void;
343
+ readonly roboticsBuildKillswitch: (a: number, b: number, c: number, d: number, e: number) => void;
344
+ readonly roboticsBuildLease: (a: number, b: number, c: number, d: number, e: number) => void;
345
+ readonly roboticsBuildOwnershipTransfer: (a: number, b: number, c: number, d: number, e: number) => void;
346
+ readonly roboticsBuildPassport: (a: number, b: number, c: number, d: number, e: number) => void;
347
+ readonly roboticsBuildPerception: (a: number, b: number, c: number, d: number, e: number) => void;
348
+ readonly roboticsBuildProvenance: (a: number, b: number, c: number, d: number, e: number) => void;
349
+ readonly roboticsBuildSafetyEvidence: (a: number, b: number, c: number, d: number, e: number) => void;
350
+ readonly roboticsBuildSafetyRecord: (a: number, b: number, c: number, d: number, e: number) => void;
351
+ readonly roboticsBuildScope: (a: number, b: number, c: number, d: number, e: number) => void;
352
+ readonly roboticsBuildStatusEntry: (a: number, b: number, c: number, d: bigint, e: number, f: number, g: number, h: number) => void;
353
+ readonly roboticsBuildWearAttestation: (a: number, b: number, c: number, d: number, e: number) => void;
354
+ readonly roboticsCheckAction: (a: number, b: number, c: number, d: number, e: number) => void;
355
+ readonly roboticsCheckConformance: (a: number, b: number, c: number, d: number, e: number) => void;
356
+ readonly roboticsCheckNoFork: (a: number, b: number, c: number) => void;
357
+ readonly roboticsCheckStatus: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
358
+ readonly roboticsConfigHash: (a: number, b: number, c: number) => void;
359
+ readonly roboticsDecodePassport: (a: number, b: number, c: number) => void;
360
+ readonly roboticsEncodePassport: (a: number, b: number, c: number) => void;
361
+ readonly roboticsFusionInputsDigest: (a: number, b: number, c: number) => void;
362
+ readonly roboticsGenesisPrevHash: (a: number) => void;
363
+ readonly roboticsHashCapture: (a: number, b: number, c: number) => void;
364
+ readonly roboticsHashFrame: (a: number, b: number, c: number) => void;
365
+ readonly roboticsHashFusedOutput: (a: number, b: number, c: number) => void;
366
+ readonly roboticsHolderAt: (a: number, b: number, c: number) => void;
367
+ readonly roboticsIsLive: (a: number, b: number, c: number, d: number, e: number, f: number, g: bigint, h: bigint) => void;
368
+ readonly roboticsIsPq: (a: number, b: number, c: number) => void;
369
+ readonly roboticsLeasePermits: (a: number, b: number, c: number) => void;
370
+ readonly roboticsLocateConditionChange: (a: number, b: number, c: number) => void;
371
+ readonly roboticsMigrateToPq: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number, j: number, k: number) => void;
372
+ readonly roboticsMintIdentity: (a: number, b: number, c: number, d: number, e: number) => void;
373
+ readonly roboticsMotionDigest: (a: number, b: number, c: number) => void;
374
+ readonly roboticsPerceptionRecord: (a: number, b: number, c: number) => void;
375
+ readonly roboticsReportDigest: (a: number, b: number, c: number) => void;
376
+ readonly roboticsSafetyAppend: (a: number, b: number, c: number) => void;
377
+ readonly roboticsSignPq: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number, j: number, k: number) => void;
378
+ readonly roboticsSummarizeSafety: (a: number, b: number, c: number, d: number, e: number) => void;
379
+ readonly roboticsValidateMotionDigest: (a: number, b: number, c: number) => void;
380
+ readonly roboticsVerifyAccept: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => void;
381
+ readonly roboticsVerifyAccessGrant: (a: number, b: number, c: number, d: number, e: number) => void;
382
+ readonly roboticsVerifyActionAuthorization: (a: number, b: number, c: number) => void;
383
+ readonly roboticsVerifyChain: (a: number, b: number, c: number, d: number, e: number) => void;
384
+ readonly roboticsVerifyConfirm: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => void;
385
+ readonly roboticsVerifyConformanceAttestation: (a: number, b: number, c: number, d: number, e: number) => void;
386
+ readonly roboticsVerifyConsentEvidence: (a: number, b: number, c: number, d: number, e: number) => void;
387
+ readonly roboticsVerifyConsentToken: (a: number, b: number, c: number, d: number, e: number) => void;
388
+ readonly roboticsVerifyContinuityChain: (a: number, b: number, c: number, d: number, e: number) => void;
389
+ readonly roboticsVerifyCustodyChain: (a: number, b: number, c: number) => void;
390
+ readonly roboticsVerifyDecommission: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
391
+ readonly roboticsVerifyEmbodiment: (a: number, b: number, c: number, d: number, e: number) => void;
392
+ readonly roboticsVerifyFusedAttestation: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
393
+ readonly roboticsVerifyFusionInputs: (a: number, b: number, c: number) => void;
394
+ readonly roboticsVerifyHandoff: (a: number, b: number, c: number, d: number, e: number) => void;
395
+ readonly roboticsVerifyHandoffChain: (a: number, b: number, c: number) => void;
396
+ readonly roboticsVerifyHeartbeat: (a: number, b: number, c: number, d: number, e: number) => void;
397
+ readonly roboticsVerifyIdentity: (a: number, b: number, c: number, d: number, e: number) => void;
398
+ readonly roboticsVerifyKeyHistory: (a: number, b: number, c: number) => void;
399
+ readonly roboticsVerifyKeyRotation: (a: number, b: number, c: number, d: number, e: number) => void;
400
+ readonly roboticsVerifyKillswitch: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
401
+ readonly roboticsVerifyLease: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => void;
402
+ readonly roboticsVerifyOwnershipTransfer: (a: number, b: number, c: number, d: number, e: number) => void;
403
+ readonly roboticsVerifyPassport: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
404
+ readonly roboticsVerifyPassportUri: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
405
+ readonly roboticsVerifyPerception: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
406
+ readonly roboticsVerifyPerceptionLog: (a: number, b: number, c: number, d: number, e: number) => void;
407
+ readonly roboticsVerifyPq: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
408
+ readonly roboticsVerifyProvenance: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
409
+ readonly roboticsVerifyRobotCredential: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
410
+ readonly roboticsVerifySafetyEvidence: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
411
+ readonly roboticsVerifySafetyLog: (a: number, b: number, c: number, d: number, e: number) => void;
412
+ readonly roboticsVerifySafetyRecord: (a: number, b: number, c: number, d: number, e: number) => void;
413
+ readonly roboticsVerifyWearAttestation: (a: number, b: number, c: number, d: number, e: number) => void;
414
+ readonly roboticsVerifyWearChain: (a: number, b: number, c: number, d: number, e: number) => void;
415
+ readonly sign: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => void;
88
416
  readonly signDual: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number, j: number, k: number, l: number, m: number, n: number, o: number) => void;
417
+ readonly thresholdAggregate: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => void;
418
+ readonly thresholdCommit: (a: number, b: number, c: number) => void;
419
+ readonly thresholdGenerateKey: (a: number, b: number, c: number) => void;
420
+ readonly thresholdSignShare: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => void;
421
+ readonly validateDelegationChain: (a: number, b: number, c: number) => void;
422
+ readonly verify: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => void;
89
423
  readonly verifyChainTimeBound: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
90
424
  readonly verifyComposite: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
91
- readonly verifyCredential: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => void;
92
425
  readonly verifyDual: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
93
426
  readonly verifyProof: (a: number, b: number, c: number, d: number, e: number) => void;
94
427
  readonly verifyStatus: (a: number, b: number, c: number, d: number, e: number) => void;