-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpacker.ts
190 lines (171 loc) · 4.61 KB
/
packer.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
import { DID } from '@iden3/js-iden3-core';
import { DataPrepareHandlerFunc, VerificationHandlerFunc } from '../packers';
import { ProvingMethodAlg } from '@iden3/js-jwz';
import { CircuitId } from '../../circuits';
import { MediaType, PROTOCOL_MESSAGE_TYPE } from '../constants';
import { DIDDocument, VerificationMethod } from 'did-resolver';
import { StateVerificationOpts } from './models';
import { DirectiveAttachment } from './protocol/directives';
/**
* Protocol message type
*/
export type ProtocolMessage = (typeof PROTOCOL_MESSAGE_TYPE)[keyof typeof PROTOCOL_MESSAGE_TYPE];
/**
* JSONValue
*/
export type JSONValue = string | number | boolean | object | Array<object>;
/**
* JSON object
*/
export type JSONObject = {
[x: string]: JSONValue;
};
/**
* JSON document object
*/
export type JsonDocumentObject = { [key: string]: JsonDocumentObjectValue };
/**
* JSON document object allowed values
*/
export type JsonDocumentObjectValue =
| string
| number
| boolean
| JsonDocumentObject
| JsonDocumentObjectValue[];
/**
* Basic message with all possible fields optional
*/
export type BasicMessage = {
id: string;
typ?: MediaType;
type: ProtocolMessage;
thid?: string;
body?: unknown;
from?: string;
to?: string;
created_time?: number;
expires_time?: number;
attachments?: DirectiveAttachment[];
};
/**
* Basic message with all possible fields required
*/
export type RequiredBasicMessage = Omit<
Required<BasicMessage>,
'created_time' | 'expires_time' | 'attachments'
> & {
created_time?: number;
expires_time?: number;
attachments?: DirectiveAttachment[];
};
/**
* parameters for any packer
*/
export type PackerParams = {
[key in string]: any; //eslint-disable-line @typescript-eslint/no-explicit-any
};
/**
* parameters for zkp packer
*/
export type ZKPPackerParams = PackerParams & {
senderDID: DID;
/** @deprecated */
profileNonce?: number | string;
provingMethodAlg: ProvingMethodAlg;
};
/**
* SignerFn Is function to sign data with a verification method
* @returns Promise of signature bytes;
*/
export type SignerFn = (vm: VerificationMethod, dataToSign: Uint8Array) => Promise<Uint8Array>;
/**
* JWSPackerParams are parameters for JWS packer
*/
export type JWSPackerParams = PackerParams & {
alg: string;
kid?: string;
didDocument?: DIDDocument;
signer?: SignerFn;
};
/**
* parameters for plain packer
*/
export type PlainPackerParams = PackerParams;
/**
* signature of auth signals function preparer
*/
export type AuthDataPrepareFunc = (
hash: Uint8Array,
did: DID,
circuitId: CircuitId
) => Promise<Uint8Array>;
/**
* signature of state function verifier
*/
export type StateVerificationFunc = (
id: string,
pubSignals: Array<string>,
opts?: StateVerificationOpts
) => Promise<boolean>;
/**
* Defines method that must be implemented by any packer
*
* @public
* @interface IPacker
*/
export interface IPacker {
/**
* Packs the given payload and returns a promise that resolves to the packed data.
* @param payload - The payload to be packed.
* @param param - The packing parameters.
* @returns A promise that resolves to the packed data as a Uint8Array.
*/
pack(payload: Uint8Array, param: PackerParams): Promise<Uint8Array>;
/**
* Packs the given message and returns a promise that resolves to the packed data.
* @param msg - The message to be packed.
* @param param - The packing parameters.
* @returns A promise that resolves to the packed data as a Uint8Array.
*/
packMessage(msg: BasicMessage, param: PackerParams): Promise<Uint8Array>;
/**
* Unpacks the given envelope and returns a promise that resolves to the unpacked message.
* @param envelope - The envelope to be unpacked.
* @returns A promise that resolves to the unpacked message as a BasicMessage.
*/
unpack(envelope: Uint8Array): Promise<BasicMessage>;
/**
* Returns the media type associated with the packer.
* @returns The media type as a MediaType.
*/
mediaType(): MediaType;
/**
* gets packer envelope (supported profiles) with options
*
* @returns {string}
*/
getSupportedProfiles(): string[];
/**
* returns true if profile is supported by packer
*
* @param {string} profile
* @returns {boolean}
*/
isProfileSupported(profile: string): boolean;
}
/**
* Params for verification of auth circuit public signals
*/
export type VerificationParams = {
key: Uint8Array;
verificationFn: VerificationHandlerFunc;
};
/**
* Params for generation of proof for auth circuit
*/
export type ProvingParams = {
dataPreparer: DataPrepareHandlerFunc;
provingKey: Uint8Array;
wasm: Uint8Array;
};