@vouch-protocol-official/core-wasm 0.1.0 → 2.0.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 +3 -3
- package/package.json +1 -1
- package/vouch_core_wasm.d.ts +310 -5
- package/vouch_core_wasm.js +3086 -28
- package/vouch_core_wasm_bg.wasm +0 -0
- package/vouch_core_wasm_bg.wasm.d.ts +93 -2
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.
|
|
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
|
-
- `
|
|
92
|
-
- `
|
|
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.
|
|
8
|
+
"version": "2.0.0",
|
|
9
9
|
"license": "Apache-2.0",
|
|
10
10
|
"repository": {
|
|
11
11
|
"type": "git",
|
package/vouch_core_wasm.d.ts
CHANGED
|
@@ -40,13 +40,229 @@ 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
|
|
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 roboticsBuildDecommission(signer_seed_b64: string, params_json: string): string;
|
|
70
|
+
|
|
71
|
+
export function roboticsBuildEmbodiment(agent_seed_b64: string, params_json: string): string;
|
|
72
|
+
|
|
73
|
+
export function roboticsBuildFusedAttestation(robot_seed_b64: string, params_json: string): string;
|
|
74
|
+
|
|
75
|
+
export function roboticsBuildHandoff(receiver_seed_b64: string, params_json: string): string;
|
|
76
|
+
|
|
77
|
+
export function roboticsBuildHeartbeat(robot_seed_b64: string, params_json: string): string;
|
|
78
|
+
|
|
79
|
+
export function roboticsBuildHello(signer_seed_b64: string, params_json: string): string;
|
|
80
|
+
|
|
81
|
+
export function roboticsBuildKeyRotation(old_key_seed_b64: string, params_json: string): string;
|
|
82
|
+
|
|
83
|
+
export function roboticsBuildKillswitch(authority_seed_b64: string, params_json: string): string;
|
|
84
|
+
|
|
85
|
+
export function roboticsBuildLease(signer_seed_b64: string, params_json: string): string;
|
|
86
|
+
|
|
87
|
+
export function roboticsBuildOwnershipTransfer(current_owner_seed_b64: string, params_json: string): string;
|
|
88
|
+
|
|
89
|
+
export function roboticsBuildPassport(signer_seed_b64: string, params_json: string): string;
|
|
90
|
+
|
|
91
|
+
export function roboticsBuildPerception(robot_seed_b64: string, params_json: string): string;
|
|
92
|
+
|
|
93
|
+
export function roboticsBuildProvenance(signer_seed_b64: string, params_json: string): string;
|
|
94
|
+
|
|
95
|
+
export function roboticsBuildSafetyRecord(signer_seed_b64: string, params_json: string): string;
|
|
96
|
+
|
|
97
|
+
export function roboticsBuildScope(signer_seed_b64: string, params_json: string): string;
|
|
98
|
+
|
|
99
|
+
export function roboticsBuildStatusEntry(status_list_credential: string, status_list_index: bigint, status_purpose: string, entry_id?: string | null): string;
|
|
100
|
+
|
|
101
|
+
export function roboticsBuildWearAttestation(robot_seed_b64: string, params_json: string): string;
|
|
102
|
+
|
|
103
|
+
export function roboticsCheckAction(scope_json: string, action_json: string): string;
|
|
104
|
+
|
|
105
|
+
export function roboticsCheckConformance(credentials_json: string, profile_id: string): string;
|
|
106
|
+
|
|
107
|
+
export function roboticsCheckNoFork(params_json: string): string;
|
|
108
|
+
|
|
109
|
+
export function roboticsCheckStatus(credential_json: string, status_list_credential_json: string, status_purpose: string): boolean;
|
|
110
|
+
|
|
111
|
+
export function roboticsConfigHash(config_json: string): string;
|
|
112
|
+
|
|
113
|
+
export function roboticsDecodePassport(uri: string): string;
|
|
114
|
+
|
|
115
|
+
export function roboticsEncodePassport(passport_json: string): string;
|
|
116
|
+
|
|
117
|
+
export function roboticsFusionInputsDigest(params_json: string): string;
|
|
118
|
+
|
|
119
|
+
export function roboticsGenesisPrevHash(): string;
|
|
120
|
+
|
|
121
|
+
export function roboticsHashFrame(frame_b64: string): string;
|
|
122
|
+
|
|
123
|
+
export function roboticsHashFusedOutput(output_b64: string): string;
|
|
124
|
+
|
|
125
|
+
export function roboticsHolderAt(params_json: string): string;
|
|
126
|
+
|
|
127
|
+
export function roboticsIsLive(credential_json: string, now_iso: string, interval_seconds: bigint | null | undefined, grace_intervals: bigint): boolean;
|
|
128
|
+
|
|
129
|
+
export function roboticsIsPq(credential_json: string): boolean;
|
|
130
|
+
|
|
131
|
+
export function roboticsLeasePermits(params_json: string): boolean;
|
|
132
|
+
|
|
133
|
+
export function roboticsLocateConditionChange(params_json: string): string;
|
|
134
|
+
|
|
135
|
+
export function roboticsMigrateToPq(credential_json: string, ed25519_seed_b64: string, mldsa_secret_b64: string, mldsa_public_b64: string, created: string): string;
|
|
136
|
+
|
|
137
|
+
export function roboticsMintIdentity(robot_seed_b64: string, params_json: string): string;
|
|
138
|
+
|
|
139
|
+
export function roboticsMotionDigest(params_json: string): string;
|
|
140
|
+
|
|
141
|
+
export function roboticsPerceptionRecord(params_json: string): string;
|
|
142
|
+
|
|
143
|
+
export function roboticsReportDigest(report_json: string): string;
|
|
144
|
+
|
|
145
|
+
export function roboticsSafetyAppend(params_json: string): string;
|
|
146
|
+
|
|
147
|
+
export function roboticsSignPq(credential_json: string, ed25519_seed_b64: string, mldsa_secret_b64: string, mldsa_public_b64: string, created: string): string;
|
|
148
|
+
|
|
149
|
+
export function roboticsSummarizeSafety(entries_json: string, head?: string | null): string;
|
|
150
|
+
|
|
151
|
+
export function roboticsValidateMotionDigest(digest_json: string): boolean;
|
|
152
|
+
|
|
153
|
+
export function roboticsVerifyAccept(accept_json: string, accept_public_b64: string, expected_nonce: string, policy_json?: string | null): string;
|
|
154
|
+
|
|
155
|
+
export function roboticsVerifyAccessGrant(credential_json: string, operator_public_b64: string): string;
|
|
156
|
+
|
|
157
|
+
export function roboticsVerifyActionAuthorization(params_json: string): string;
|
|
158
|
+
|
|
159
|
+
export function roboticsVerifyChain(entries_json: string, genesis_prev_hash?: string | null): string;
|
|
160
|
+
|
|
161
|
+
export function roboticsVerifyConfirm(confirm_json: string, confirm_public_b64: string, session_id: string, expected_nonce: string): boolean;
|
|
162
|
+
|
|
163
|
+
export function roboticsVerifyConformanceAttestation(credential_json: string, public_b64: string): string;
|
|
164
|
+
|
|
165
|
+
export function roboticsVerifyContinuityChain(params_json: string, agent_public_b64: string): string;
|
|
166
|
+
|
|
167
|
+
export function roboticsVerifyCustodyChain(params_json: string): string;
|
|
168
|
+
|
|
169
|
+
export function roboticsVerifyDecommission(credential_json: string, public_b64: string, trusted_authorities_json?: string | null): string;
|
|
170
|
+
|
|
171
|
+
export function roboticsVerifyEmbodiment(credential_json: string, agent_public_b64: string): string;
|
|
172
|
+
|
|
173
|
+
export function roboticsVerifyFusedAttestation(credential_json: string, public_b64: string, fused_output_b64?: string | null): string;
|
|
174
|
+
|
|
175
|
+
export function roboticsVerifyFusionInputs(params_json: string): string;
|
|
176
|
+
|
|
177
|
+
export function roboticsVerifyHandoff(credential_json: string, receiver_public_b64: string): string;
|
|
178
|
+
|
|
179
|
+
export function roboticsVerifyHandoffChain(params_json: string): string;
|
|
180
|
+
|
|
181
|
+
export function roboticsVerifyHeartbeat(credential_json: string, robot_public_b64: string): string;
|
|
182
|
+
|
|
183
|
+
export function roboticsVerifyIdentity(credential_json: string, robot_public_b64: string): string;
|
|
184
|
+
|
|
185
|
+
export function roboticsVerifyKeyHistory(params_json: string): string;
|
|
186
|
+
|
|
187
|
+
export function roboticsVerifyKeyRotation(credential_json: string, old_public_b64: string): string;
|
|
188
|
+
|
|
189
|
+
export function roboticsVerifyKillswitch(credential_json: string, public_b64: string, trusted_authorities_json?: string | null): string;
|
|
190
|
+
|
|
191
|
+
export function roboticsVerifyLease(credential_json: string, public_b64: string, now_iso?: string | null, parent_scope_json?: string | null): string;
|
|
192
|
+
|
|
193
|
+
export function roboticsVerifyOwnershipTransfer(credential_json: string, public_b64: string): string;
|
|
194
|
+
|
|
195
|
+
export function roboticsVerifyPassport(passport_json: string, public_b64: string, now_iso: string): string;
|
|
196
|
+
|
|
197
|
+
export function roboticsVerifyPassportUri(uri: string, public_b64: string, now_iso: string): string;
|
|
198
|
+
|
|
199
|
+
export function roboticsVerifyPerception(credential_json: string, public_b64: string, frame_b64?: string | null): string;
|
|
200
|
+
|
|
201
|
+
export function roboticsVerifyPerceptionLog(entries_json: string, genesis_prev_hash?: string | null): string;
|
|
202
|
+
|
|
203
|
+
/**
|
|
204
|
+
* Verify a hybrid robot credential. `mldsa44_public_b64` is base64 of raw
|
|
205
|
+
* 1312-byte bytes or of an ML-DSA-44 Multikey string (UTF-8).
|
|
206
|
+
*/
|
|
207
|
+
export function roboticsVerifyPq(credential_json: string, ed25519_public_b64: string, mldsa44_public_b64: string): boolean;
|
|
208
|
+
|
|
209
|
+
export function roboticsVerifyProvenance(attestation_json: string, public_b64: string, config_json?: string | null): string;
|
|
210
|
+
|
|
211
|
+
/**
|
|
212
|
+
* Dual verify auto-detected from the proof. `mldsa44_public_b64`, when present,
|
|
213
|
+
* is base64 of raw 1312-byte bytes or of an ML-DSA-44 Multikey string (UTF-8);
|
|
214
|
+
* a hybrid credential requires it, a classical credential ignores it.
|
|
215
|
+
*/
|
|
216
|
+
export function roboticsVerifyRobotCredential(credential_json: string, ed25519_public_b64: string, mldsa44_public_b64?: string | null): boolean;
|
|
217
|
+
|
|
218
|
+
export function roboticsVerifySafetyLog(entries_json: string, genesis_prev_hash?: string | null): string;
|
|
219
|
+
|
|
220
|
+
export function roboticsVerifySafetyRecord(credential_json: string, public_b64: string): string;
|
|
221
|
+
|
|
222
|
+
export function roboticsVerifyWearAttestation(credential_json: string, public_b64: string): string;
|
|
223
|
+
|
|
224
|
+
export function roboticsVerifyWearChain(params_json: string, public_b64: string): string;
|
|
225
|
+
|
|
226
|
+
export function sign(credential_json: string, seed_b64: string, verification_method: string, created: string): string;
|
|
44
227
|
|
|
45
228
|
/**
|
|
46
229
|
* Build a dual proof (Ed25519 + ML-DSA-44) and attach it to the credential.
|
|
47
230
|
*/
|
|
48
231
|
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
232
|
|
|
233
|
+
/**
|
|
234
|
+
* Combine signature shares into the final signature. commitmentsJson and
|
|
235
|
+
* sharesJson map each signer's base64 identifier to its base64 commitment /
|
|
236
|
+
* signature share. groupPublicKeyJson is the group_public_key object from
|
|
237
|
+
* thresholdGenerateKey. Returns the base64-encoded 64-byte Ed25519 signature.
|
|
238
|
+
*/
|
|
239
|
+
export function thresholdAggregate(message_b64: string, commitments_json: string, shares_json: string, group_public_key_json: string): string;
|
|
240
|
+
|
|
241
|
+
/**
|
|
242
|
+
* Round 1 for one signer (one entry from thresholdGenerateKey's shares
|
|
243
|
+
* array). Returns JSON {nonces, commitments}. nonces is SECRET: keep it on
|
|
244
|
+
* this signer's device only, use it for exactly one thresholdSignShare call,
|
|
245
|
+
* then discard it.
|
|
246
|
+
*/
|
|
247
|
+
export function thresholdCommit(key_share_json: string): string;
|
|
248
|
+
|
|
249
|
+
/**
|
|
250
|
+
* Mint a fresh threshold-native Ed25519 identity: maxSigners key shares, any
|
|
251
|
+
* minSigners of which can sign together. Returns JSON
|
|
252
|
+
* {shares: [{identifier, key_package}, ...], group_public_key: {verifying_key, public_key_package}}.
|
|
253
|
+
*/
|
|
254
|
+
export function thresholdGenerateKey(min_signers: number, max_signers: number): string;
|
|
255
|
+
|
|
256
|
+
/**
|
|
257
|
+
* Round 2 for one signer. messageB64 is the base64-encoded bytes to sign.
|
|
258
|
+
* commitmentsJson maps every participating signer's base64 identifier to its
|
|
259
|
+
* base64 commitment, including this signer's own. Returns the
|
|
260
|
+
* base64-encoded signature share.
|
|
261
|
+
*/
|
|
262
|
+
export function thresholdSignShare(message_b64: string, key_share_json: string, nonces_b64: string, commitments_json: string): string;
|
|
263
|
+
|
|
264
|
+
export function verify(credential_json: string, public_b64: string, now_iso: string, clock_skew_seconds: number): string;
|
|
265
|
+
|
|
50
266
|
/**
|
|
51
267
|
* Validate the time-bound rule over a delegation chain (JSON array of links).
|
|
52
268
|
*/
|
|
@@ -54,8 +270,6 @@ export function verifyChainTimeBound(chain_json: string, now_iso: string, clock_
|
|
|
54
270
|
|
|
55
271
|
export function verifyComposite(credential_json: string, ed25519_public_b64: string, mldsa_public_b64: string): boolean;
|
|
56
272
|
|
|
57
|
-
export function verifyCredential(credential_json: string, public_b64: string, now_iso: string, clock_skew_seconds: number): string;
|
|
58
|
-
|
|
59
273
|
export function verifyDual(credential_json: string, ed25519_public_b64: string, mldsa_public_b64: string): boolean;
|
|
60
274
|
|
|
61
275
|
export function verifyProof(credential_json: string, public_b64: string): boolean;
|
|
@@ -84,11 +298,102 @@ export interface InitOutput {
|
|
|
84
298
|
readonly generateMldsa44: (a: number) => void;
|
|
85
299
|
readonly mldsa44Sign: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
86
300
|
readonly mldsa44Verify: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
87
|
-
readonly
|
|
301
|
+
readonly roboticsAttachStatus: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
302
|
+
readonly roboticsAttenuateForWear: (a: number, b: number, c: number) => void;
|
|
303
|
+
readonly roboticsAttenuates: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
304
|
+
readonly roboticsAttenuatesGrant: (a: number, b: number, c: number) => void;
|
|
305
|
+
readonly roboticsAuthorizeAccess: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
306
|
+
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;
|
|
307
|
+
readonly roboticsBlackboxOpen: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
308
|
+
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;
|
|
309
|
+
readonly roboticsBuildAccessGrant: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
310
|
+
readonly roboticsBuildAccessRequest: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
311
|
+
readonly roboticsBuildActionApproval: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
312
|
+
readonly roboticsBuildConfirm: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => void;
|
|
313
|
+
readonly roboticsBuildConformanceAttestation: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
314
|
+
readonly roboticsBuildDecommission: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
315
|
+
readonly roboticsBuildEmbodiment: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
316
|
+
readonly roboticsBuildFusedAttestation: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
317
|
+
readonly roboticsBuildHandoff: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
318
|
+
readonly roboticsBuildHeartbeat: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
319
|
+
readonly roboticsBuildHello: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
320
|
+
readonly roboticsBuildKeyRotation: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
321
|
+
readonly roboticsBuildKillswitch: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
322
|
+
readonly roboticsBuildLease: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
323
|
+
readonly roboticsBuildOwnershipTransfer: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
324
|
+
readonly roboticsBuildPassport: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
325
|
+
readonly roboticsBuildPerception: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
326
|
+
readonly roboticsBuildProvenance: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
327
|
+
readonly roboticsBuildSafetyRecord: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
328
|
+
readonly roboticsBuildScope: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
329
|
+
readonly roboticsBuildStatusEntry: (a: number, b: number, c: number, d: bigint, e: number, f: number, g: number, h: number) => void;
|
|
330
|
+
readonly roboticsBuildWearAttestation: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
331
|
+
readonly roboticsCheckAction: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
332
|
+
readonly roboticsCheckConformance: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
333
|
+
readonly roboticsCheckNoFork: (a: number, b: number, c: number) => void;
|
|
334
|
+
readonly roboticsCheckStatus: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
335
|
+
readonly roboticsConfigHash: (a: number, b: number, c: number) => void;
|
|
336
|
+
readonly roboticsDecodePassport: (a: number, b: number, c: number) => void;
|
|
337
|
+
readonly roboticsEncodePassport: (a: number, b: number, c: number) => void;
|
|
338
|
+
readonly roboticsFusionInputsDigest: (a: number, b: number, c: number) => void;
|
|
339
|
+
readonly roboticsGenesisPrevHash: (a: number) => void;
|
|
340
|
+
readonly roboticsHashFrame: (a: number, b: number, c: number) => void;
|
|
341
|
+
readonly roboticsHashFusedOutput: (a: number, b: number, c: number) => void;
|
|
342
|
+
readonly roboticsHolderAt: (a: number, b: number, c: number) => void;
|
|
343
|
+
readonly roboticsIsLive: (a: number, b: number, c: number, d: number, e: number, f: number, g: bigint, h: bigint) => void;
|
|
344
|
+
readonly roboticsIsPq: (a: number, b: number, c: number) => void;
|
|
345
|
+
readonly roboticsLeasePermits: (a: number, b: number, c: number) => void;
|
|
346
|
+
readonly roboticsLocateConditionChange: (a: number, b: number, c: number) => void;
|
|
347
|
+
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;
|
|
348
|
+
readonly roboticsMintIdentity: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
349
|
+
readonly roboticsMotionDigest: (a: number, b: number, c: number) => void;
|
|
350
|
+
readonly roboticsPerceptionRecord: (a: number, b: number, c: number) => void;
|
|
351
|
+
readonly roboticsReportDigest: (a: number, b: number, c: number) => void;
|
|
352
|
+
readonly roboticsSafetyAppend: (a: number, b: number, c: number) => void;
|
|
353
|
+
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;
|
|
354
|
+
readonly roboticsSummarizeSafety: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
355
|
+
readonly roboticsValidateMotionDigest: (a: number, b: number, c: number) => void;
|
|
356
|
+
readonly roboticsVerifyAccept: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => void;
|
|
357
|
+
readonly roboticsVerifyAccessGrant: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
358
|
+
readonly roboticsVerifyActionAuthorization: (a: number, b: number, c: number) => void;
|
|
359
|
+
readonly roboticsVerifyChain: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
360
|
+
readonly roboticsVerifyConfirm: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => void;
|
|
361
|
+
readonly roboticsVerifyConformanceAttestation: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
362
|
+
readonly roboticsVerifyContinuityChain: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
363
|
+
readonly roboticsVerifyCustodyChain: (a: number, b: number, c: number) => void;
|
|
364
|
+
readonly roboticsVerifyDecommission: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
365
|
+
readonly roboticsVerifyEmbodiment: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
366
|
+
readonly roboticsVerifyFusedAttestation: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
367
|
+
readonly roboticsVerifyFusionInputs: (a: number, b: number, c: number) => void;
|
|
368
|
+
readonly roboticsVerifyHandoff: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
369
|
+
readonly roboticsVerifyHandoffChain: (a: number, b: number, c: number) => void;
|
|
370
|
+
readonly roboticsVerifyHeartbeat: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
371
|
+
readonly roboticsVerifyIdentity: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
372
|
+
readonly roboticsVerifyKeyHistory: (a: number, b: number, c: number) => void;
|
|
373
|
+
readonly roboticsVerifyKeyRotation: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
374
|
+
readonly roboticsVerifyKillswitch: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
375
|
+
readonly roboticsVerifyLease: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => void;
|
|
376
|
+
readonly roboticsVerifyOwnershipTransfer: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
377
|
+
readonly roboticsVerifyPassport: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
378
|
+
readonly roboticsVerifyPassportUri: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
379
|
+
readonly roboticsVerifyPerception: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
380
|
+
readonly roboticsVerifyPerceptionLog: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
381
|
+
readonly roboticsVerifyPq: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
382
|
+
readonly roboticsVerifyProvenance: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
383
|
+
readonly roboticsVerifyRobotCredential: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
384
|
+
readonly roboticsVerifySafetyLog: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
385
|
+
readonly roboticsVerifySafetyRecord: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
386
|
+
readonly roboticsVerifyWearAttestation: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
387
|
+
readonly roboticsVerifyWearChain: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
388
|
+
readonly sign: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => void;
|
|
88
389
|
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;
|
|
390
|
+
readonly thresholdAggregate: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => void;
|
|
391
|
+
readonly thresholdCommit: (a: number, b: number, c: number) => void;
|
|
392
|
+
readonly thresholdGenerateKey: (a: number, b: number, c: number) => void;
|
|
393
|
+
readonly thresholdSignShare: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number) => void;
|
|
394
|
+
readonly verify: (a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number) => void;
|
|
89
395
|
readonly verifyChainTimeBound: (a: number, b: number, c: number, d: number, e: number, f: number) => void;
|
|
90
396
|
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
397
|
readonly verifyDual: (a: number, b: number, c: number, d: number, e: number, f: number, g: number) => void;
|
|
93
398
|
readonly verifyProof: (a: number, b: number, c: number, d: number, e: number) => void;
|
|
94
399
|
readonly verifyStatus: (a: number, b: number, c: number, d: number, e: number) => void;
|