-
Notifications
You must be signed in to change notification settings - Fork 0
/
indexer_api.yaml
615 lines (615 loc) · 18.5 KB
/
indexer_api.yaml
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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
openapi: 3.0.3
info:
title: SRS Indexer API
version: 0.0.1
description: |2
API of the SRS Indexer that implements the
[OPAQUE protocol](https://www.ietf.org/archive/id/draft-irtf-cfrg-opaque-11.html)
to securely authenticate users and encrypt their secrets.
contact:
email: info@blockshake.io
servers:
- url: http://localhost:8080
description: Development server
tags:
- name: Account
- name: CipherData
- name: OPRF
paths:
/api/accounts/register/step1:
post:
operationId: account_register_step1
description: |2
This is the first phase of OPAQUE's registration flow.
tags:
- Account
requestBody:
content:
application/json:
schema:
type: object
properties:
username:
type: string
pattern: '^[a-zA-Z0-9._+-]{3,32}(@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,})?$'
example: "info@blockshake.io"
blinded_element:
$ref: "#/components/schemas/G2Affine"
required:
- username
- blinded_element
responses:
"200":
description: "Success"
content:
application/json:
schema:
type: object
properties:
session_id:
$ref: "#/components/schemas/SessionId"
registration_response:
type: object
properties:
evaluated_elment:
$ref: "#/components/schemas/Gt"
server_public_key:
$ref: "#/components/schemas/PublicKey"
required:
- username
- registration_response
"4XX":
description: "Input error"
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
/api/accounts/register/step2:
post:
operationId: account_register_step2
description: |2
This is the second phase of OPAQUE's registration flow.
tags:
- Account
requestBody:
content:
application/json:
schema:
type: object
properties:
session_id:
$ref: "#/components/schemas/SessionId"
registration_record:
$ref: "#/components/schemas/RegistrationRecord"
required:
- username
- blinded_element
responses:
"201":
description: "User created"
content:
application/json:
schema:
type: object
properties:
message:
type: string
example: "success"
required:
- message
"4XX":
description: "Input error"
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
/api/accounts/authenticate/step1:
post:
operationId: account_authenticate_step1
description: |2
This is the first phase of OPAQUE's login flow.
tags:
- Account
requestBody:
content:
application/json:
schema:
type: object
properties:
username:
type: string
example: "info@blockshake.io"
key_exchange:
$ref: "#/components/schemas/KeyExchange1"
required:
- username
- key_exchange
responses:
"200":
description: "Success"
content:
application/json:
schema:
type: object
properties:
session_id:
$ref: "#/components/schemas/SessionId"
key_exchange:
$ref: "#/components/schemas/KeyExchange2"
required:
- session_id
- key_exchange
"4XX":
description: "Input error"
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
/api/accounts/authenticate/step2:
post:
operationId: account_authenticate_step2
description: |2
This is the second phase of OPAQUE's login flow.
tags:
- Account
requestBody:
content:
application/json:
schema:
type: object
properties:
session_id:
$ref: "#/components/schemas/SessionId"
key_exchange:
$ref: "#/components/schemas/KeyExchange3"
required:
- session_id
- key_exchange
responses:
"200":
description: "Success"
content:
application/json:
schema:
type: object
properties:
session_key:
$ref: "#/components/schemas/SessionKey"
session_expiration:
$ref: "#/components/schemas/DateTime"
required:
- session_id
- key_exchange
"4XX":
description: "Input error"
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
/api/accounts/logout:
get:
operationId: account_logout
security:
- bearerTokenAuth: []
description: |2
Invalidates the bearer token provided in the headers
tags:
- Account
responses:
"200":
description: "Success"
content:
application/json:
schema:
type: object
properties:
success:
type: boolean
example: true
"4XX":
description: "Input error"
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
/api/cipher-data:
post:
operationId: cipher_data_upload
description: |2
Upload a new encrypted database
security:
- bearerTokenAuth: []
tags:
- CipherData
parameters:
- in: query
name: application_id
description: |2
An ID that the client application can use to identify itself.
This allows an application to get only databases that were created
by this application.
required: true
schema:
type: integer
examples:
Fixture:
value: 1
summary: fixture
- in: query
name: format
description: |2
The type of the database that is uploaded (e.g., arc35, kdbx, etc.).
required: true
schema:
type: string
examples:
Fixture:
value: "plaintext"
summary: fixture
requestBody:
content:
multipart/form-data:
schema:
type: object
properties:
file:
type: string
format: binary
responses:
"201":
description: "Success"
content:
application/json:
schema:
$ref: "#/components/schemas/CipherData"
"4XX":
description: "Input error"
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
get:
operationId: cipher_data_list
description: |2
List the user's uploaded cipher-data
security:
- bearerTokenAuth: []
tags:
- CipherData
parameters:
- in: query
name: application_id
description: |2
An ID that the client application can use to identify itself.
This allows an application to get only databases that were created
by this application.
schema:
type: integer
- in: query
name: format
description: |2
The type of the database that is uploaded (e.g., arc35, kdbx, etc.).
schema:
type: string
examples:
Fixture:
value: "plaintext"
summary: fixture
responses:
"200":
description: "Success"
content:
application/json:
schema:
type: object
properties:
results:
type: array
items:
$ref: "#/components/schemas/CipherData"
"4XX":
description: "Input error"
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
/api/cipher-data/{id}/download:
get:
operationId: cipher_data_get
description: |2
Download cipherdata
security:
- bearerTokenAuth: []
tags:
- CipherData
parameters:
- in: path
name: id
description: The ID of the cipher db
schema:
type: integer
required: true
responses:
"200":
description: "Success"
content:
application/octet-stream:
schema:
type: string
format: binary
"4XX":
description: "Input error"
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
/api/oprf/blind-evaluate:
post:
operationId: oprf_blind_evaluate
description: |2
Evaluates the blinded element through all Oracle servers that
are used by this indexer and assembles their result.
tags:
- OPRF
requestBody:
content:
application/json:
schema:
type: object
properties:
public_input:
type: string
minLength: 1
maxLength: 100
example: "info@blockshake.io"
blinded_element:
$ref: "#/components/schemas/G2Affine"
key_version:
$ref: "#/components/schemas/KeyVersion"
required:
- public_input
- blinded_element
responses:
"200":
description: "Success"
content:
application/json:
schema:
type: object
properties:
key_version:
$ref: "#/components/schemas/KeyVersion"
evaluated_element:
$ref: "#/components/schemas/Gt"
required:
- key_version
- blinded_element
"4XX":
description: "Input error"
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
components:
schemas:
ErrorResponse:
type: object
properties:
status:
type: integer
description: HTTP status code
code:
type: string
description: Error code
message:
type: string
description: Error message
example:
status: 429
code: "RateLimitExceededError"
message: "rate limit exceeded"
required:
- status
- message
- code
KeyExchange1:
type: object
properties:
credential_request:
$ref: "#/components/schemas/CredentialRequest"
auth_request:
$ref: "#/components/schemas/AuthRequest"
required:
- credential_request
- auth_request
KeyExchange2:
type: object
properties:
credential_response:
$ref: "#/components/schemas/CredentialResponse"
auth_response:
$ref: "#/components/schemas/AuthResponse"
payload:
$ref: "#/components/schemas/Payload"
required:
- credential_response
- auth_response
- payload
KeyExchange3:
type: object
properties:
client_mac:
$ref: "#/components/schemas/AuthCode"
required:
- client_mac
CredentialRequest:
type: object
properties:
blinded_element:
$ref: "#/components/schemas/G2Affine"
required:
- blinded_element
CredentialResponse:
type: object
properties:
evaluated_element:
$ref: "#/components/schemas/Gt"
masking_nonce:
$ref: "#/components/schemas/Nonce"
masked_response:
type: string
format: base64
description: |2
The unmasked response encodes the server's public key and the
registration record's envelope. The response is masked with a
XOR pad that is computed with the masking_nonce as input.
required:
- evaluated_element
- masking_nonce
- masked_response
AuthRequest:
type: object
properties:
client_nonce:
$ref: "#/components/schemas/Nonce"
client_public_keyshare:
$ref: "#/components/schemas/PublicKey"
required:
- client_nonce
- client_public_keyshare
AuthResponse:
type: object
properties:
server_nonce:
$ref: "#/components/schemas/Nonce"
server_public_keyshare:
$ref: "#/components/schemas/PublicKey"
server_mac:
$ref: "#/components/schemas/AuthCode"
required:
- server_nonce
- server_public_keyshare
- server_mac
G2Affine:
type: string
format: base64
description: |2
This is an element of group G2 in the BLS12-381 elliptic curve.
The element is the base64-encoded value of the element's compressed
representation that occupies 96 bytes.
example: "qMm573WP2LsMLTIgDhKJkHIz01rc7Zeu-9XQtzt0Zym-RCPpbgPtcBxYlAbUO0nZEkDehXIYGxx-kQajo79DLBtxNWZptC9UoLbfii65cUZ5OafA-35nYFmoJK6hObMQ"
Gt:
type: string
format: base64
description: |2
This is an element of group Gt in the BLS12-381 elliptic curve.
The element is the base64-encoded value of the element's compressed
representation that occupies 277 bytes.
example: "yt6x_4fp1dfLHq0D0KFnOnqqqOL26cTWJ_W1wDLEkVcAgw-EYky8kFqhVwymm40HhjWKqavO2z25HgoDAg-0TFSmp8x6Nq7wsEvRbTTvg6g7OYSi5xsm7KDg-vl7UoUKnLi6PSx9JvLbwF8_JGRr69VeBErj9y5wiRIDeOKrPNlUk69djCtLyt8p4hwPlo0RXhdsrnqOdpf67ZCpoUZWyJ8PtxT6_envukKlcJ7q5ChlNyLxf0TgMpPR15EaDaAESP32Nln9jbXBHwrjR1CqP8gCONKBUu4aiNLyztrW8ZoVZ5vn_NVhfoiYnM0-U_oVhrys_AhkL_8FapiGinbIeY9YAfMTsZtrG6HdmtOhwM7GeCg_lL7AWt8jUWQiY-8H"
PublicKey:
type: string
format: base64
description: |2
A public key for OPAQUE's key-exchange protocol. This is a
Ristretto point, in compressed wire format (32 bytes long).
example: "0KF_IisAOG3KlUCjLjH_zmawuU48klBCQRRVYapwx1U"
SessionId:
type: string
pattern: "^[a-zA-Z0-9]{64}$"
description: Used to link independent HTTP requests
example: "lh8TmrOKgt0fnAylXvSMsDekNc0b6cIU1STe3WjrNKHJ2LDZ6TWjCL8J0lNn9VeI"
SessionKey:
type: string
pattern: "^[a-zA-Z0-9]{64}$"
description: |2
Bearer token that is used used for bearer authentication in subsequent
requests
example: "lh8TmrOKgt0fnAylXvSMsDekNc0b6cIU1STe3WjrNKHJ2LDZ6TWjCL8J0lNn9VeI"
Digest:
type: string
format: base64
description: |2
A binary string, 64-bytes long, that is the result of a hash function
example: "lh8TmrOKgt0fnAylXvSMsDekNc0b6cIU1STe3WjrNKHJ2LDZ6TWjCL8J0lNn9VeI"
RegistrationRecord:
type: object
properties:
envelope:
$ref: "#/components/schemas/Envelope"
masking_key:
$ref: "#/components/schemas/Digest"
client_public_key:
$ref: "#/components/schemas/PublicKey"
payload:
$ref: "#/components/schemas/Payload"
required:
- envelope
- masking_key
- client_public_key
- payload
Payload:
type: string
format: base64
description: |2
This is a binary blob of data that the client can use to encode
the KSF parameters.
example: "AAAgAAAAAAEAAAABAAAAAAAAAAA"
Envelope:
type: string
format: base64
description: |2
The envelope is a byte string that encodes a nonce (32 bytes) and
an authentication code (64 bytes)
example: "dLYFDLktVxb-pQuG1E5zwmfyolXPcmHiyEAfghiqKfOPKo5FhyzXtO5p03dLTaxkJEef-3AVNm2F-KRcfiAzUghsJOue-iSzMtLSpvMcpXFCIQDSJYcwA6kUx-rcI9Ag"
Nonce:
type: string
format: base64
description: A binary string, 32 bytes long
example: "LC8tJVzEpMz6YPU_ejLTWrdTWDY_zJPvB176qEhfzYA"
AuthCode:
type: string
format: base64
description: |2
A binary string, 64 bytes long, that is the result of a MAC function
example: "5lGj63JAfaS8T1OHU2QAxwL43ZlOrxgYD3l-yuW1QKY4UfsrnKZ_BbCfhPdp2RpD7zWD5OwCOkzmyWYH-aZvMA"
DateTime:
type: string
format: ISO-8601 (%Y-%m-%dT%H:%M:%S)
description: |2
Date and time in UTC timezone
example: "2023-11-02T06:55:21"
KeyVersion:
type: integer
description: |2
The version of the OPRF key that is used. An oracle server can
host multiple OPRF keys, which is useful if the key is occassionally
rotated. If no version is provided, the latest OPRF key is used.
minimum: 1
CipherData:
type: object
properties:
id:
type: integer
example: 1
application_id:
type: integer
example: 1
format:
type: string
example: "plaintext"
key_version:
$ref: "#/components/schemas/KeyVersion"
created_at:
$ref: "#/components/schemas/DateTime"
required:
- id
- application_id
- format
description: |2
An encrypted database that the user has uploaded.
minimum: 1
securitySchemes:
bearerTokenAuth:
type: http
scheme: bearer
description: Authentication with bearer token