forked from rarimo/passport-identity-provider
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Add SHA256withRSA-PSS pair. Add SHA384withECDSA pair. Overhau…
…l hashing and signature algorithms determination logic" This reverts commit 42a1717.
- Loading branch information
Showing
46 changed files
with
1,872 additions
and
4,600 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
allOf: | ||
- $ref: '#/components/schemas/ClaimKey' | ||
- type: object | ||
required: | ||
- attributes | ||
properties: | ||
attributes: | ||
type: object | ||
required: | ||
- claim_id | ||
- issuer_did | ||
properties: | ||
claim_id: | ||
type: string | ||
issuer_did: | ||
type: string |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,4 +8,4 @@ properties: | |
type: | ||
type: string | ||
enum: | ||
- verify-sod | ||
- claims |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
allOf: | ||
- $ref: '#/components/schemas/GistDataKey' | ||
- type: object | ||
required: | ||
- attributes | ||
properties: | ||
attributes: | ||
type: object | ||
required: | ||
- gist_proof | ||
- gist_root | ||
properties: | ||
gist_proof: | ||
$ref: '#/components/schemas/GistProof' | ||
gist_root: | ||
type: string |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,4 +8,4 @@ properties: | |
type: | ||
type: string | ||
enum: | ||
- document-sod | ||
- gist_datas |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
type: object | ||
required: | ||
- root | ||
- existence | ||
- siblings | ||
- index | ||
- value | ||
- aux_existence | ||
- aux_index | ||
- aux_value | ||
properties: | ||
root: | ||
type: string | ||
existence: | ||
type: boolean | ||
siblings: | ||
type: array | ||
items: | ||
type: string | ||
index: | ||
type: string | ||
value: | ||
type: string | ||
aux_existence: | ||
type: boolean | ||
aux_index: | ||
type: string | ||
aux_value: | ||
type: string |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
docs/spec/paths/intergrations@identity-provider-service@v1@gist-data.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
get: | ||
tags: | ||
- GIST | ||
summary: The GIST data retrieving | ||
operationId: gist-data | ||
parameters: | ||
- in: query | ||
name: user_did | ||
required: true | ||
schema: | ||
type: string | ||
responses: | ||
'200': | ||
description: Success | ||
content: | ||
application/json: | ||
schema: | ||
type: object | ||
properties: | ||
data: | ||
type: object | ||
$ref: '#/components/schemas/GistData' | ||
'500': | ||
description: Internal Error | ||
content: | ||
application/json: | ||
schema: | ||
$ref: '#/components/schemas/Errors' | ||
'400': | ||
description: Bad Request Error | ||
content: | ||
application/json: | ||
schema: | ||
$ref: '#/components/schemas/Errors' |
Oops, something went wrong.