Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove BLAKE-512 from auth header description #206

Merged
merged 21 commits into from
Feb 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
cbd8dfb
Update core.yaml
BLR-0118 Jan 20, 2022
9c53309
Update core.yaml
BLR-0118 Jan 21, 2022
d7f5cbf
Update core.yaml
BLR-0118 Jan 21, 2022
3232480
Update core.yaml
BLR-0118 Jan 21, 2022
3fe4c4c
Update core.yaml
BLR-0118 Jan 21, 2022
a2e822d
Update core.yaml
BLR-0118 Jan 21, 2022
83066f1
Create ERROR_CODES.md
BLR-0118 Jan 21, 2022
521df87
Delete ERROR_CODES.md
BLR-0118 Jan 21, 2022
a8e1e2d
Update core.yaml
BLR-0118 Jan 21, 2022
4b9b458
Create BECKN-RFC-006-Signing-Beckn-APIs-In-HTTP-Draft-01.md
BLR-0118 Jan 25, 2022
4785893
Update BECKN-RFC-006-Signing-Beckn-APIs-In-HTTP-Draft-01.md
BLR-0118 Jan 25, 2022
59200ec
Update BECKN-RFC-006-Signing-Beckn-APIs-In-HTTP-Draft-01.md
BLR-0118 Jan 25, 2022
36e5f0f
Update BECKN-RFC-006-Signing-Beckn-APIs-In-HTTP-Draft-01.md
BLR-0118 Jan 25, 2022
3a60828
Update BECKN-RFC-006-Signing-Beckn-APIs-In-HTTP-Draft-01.md
BLR-0118 Jan 28, 2022
248fb96
Update BECKN-RFC-006-Signing-Beckn-APIs-In-HTTP-Draft-01.md
BLR-0118 Jan 28, 2022
a585e53
Update BECKN-RFC-006-Signing-Beckn-APIs-In-HTTP-Draft-01.md
BLR-0118 Jan 28, 2022
edac76e
Update BECKN-RFC-006-Signing-Beckn-APIs-In-HTTP-Draft-01.md
BLR-0118 Jan 28, 2022
5d5d166
Update BECKN-RFC-006-Signing-Beckn-APIs-In-HTTP-Draft-01.md
BLR-0118 Jan 28, 2022
3b00d1a
Update BECKN-RFC-006-Signing-Beckn-APIs-In-HTTP-Draft-01.md
BLR-0118 Jan 28, 2022
f74e481
Update BECKN-RFC-006-Signing-Beckn-APIs-In-HTTP-Draft-01.md
BLR-0118 Jan 28, 2022
96b9031
Update BECKN-RFC-006-Signing-Beckn-APIs-In-HTTP-Draft-01.md
BLR-0118 Feb 4, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions core/v0/api/core.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1330,17 +1330,17 @@ components:
type: apiKey
in: header
name: Authorization
description: 'Signature of message body using BAP or BPP subscriber''s signing public key. <br/><br/>Format:<br/><br/><code>Authorization : Signature keyId="{subscriber_id}|{unique_key_id}|{algorithm}",algorithm="ed25519",created="1606970629",expires="1607030629",headers="(created) (expires) digest",signature="Base64(BLAKE-512(signing string))"</code>'
description: 'Signature of message body using BAP or BPP subscriber''s signing public key. <br/><br/>Format:<br/><br/><code>Authorization : Signature keyId="{subscriber_id}|{unique_key_id}|{algorithm}",algorithm="ed25519",created="1606970629",expires="1607030629",headers="(created) (expires) digest",signature="Base64(signing string)"</code>'
GatewaySubscriberAuth:
type: apiKey
in: header
name: Proxy-Authorization
description: 'Signature of message body + BAP/BPP''s Authorization header using BG''s signing public key. Format:<br/><br/><code>Proxy-Authorization : Signature keyId="{subscriber_id}|{unique_key_id}|{algorithm}",algorithm="ed25519",created="1606970629",expires="1607030629",headers="(created) (expires) digest",signature="Base64(BLAKE-512(signing string))"</code><p><b>Note:</b>This header will be deprecated soon and will no longer be supported in future releases. New implementors are requested to use the X-Gateway-Authorization header. Existing implementations are requested to migrate their header to the new header. The deprecation date will be set after discussion as per the standard specification governance process.</p>'
description: 'Signature of message body + BAP/BPP''s Authorization header using BG''s signing public key. Format:<br/><br/><code>Proxy-Authorization : Signature keyId="{subscriber_id}|{unique_key_id}|{algorithm}",algorithm="ed25519",created="1606970629",expires="1607030629",headers="(created) (expires) digest",signature="Base64(signing string)"</code><p><b>Note:</b>This header will be deprecated soon and will no longer be supported in future releases. New implementors are requested to use the X-Gateway-Authorization header. Existing implementations are requested to migrate their header to the new header. The deprecation date will be set after discussion as per the standard specification governance process.</p>'
GatewaySubscriberAuthNew:
type: apiKey
in: header
name: X-Gateway-Authorization
description: 'Signature of message body + BAP/BPP''s Authorization header using BG''s signing public key. Format:<br/><br/><code>X-Gateway-Authorization : Signature keyId="{subscriber_id}|{unique_key_id}|{algorithm}",algorithm="ed25519",created="1606970629",expires="1607030629",headers="(created) (expires) digest",signature="Base64(BLAKE-512(signing string))"</code>'
description: 'Signature of message body + BAP/BPP''s Authorization header using BG''s signing public key. Format:<br/><br/><code>X-Gateway-Authorization : Signature keyId="{subscriber_id}|{unique_key_id}|{algorithm}",algorithm="ed25519",created="1606970629",expires="1607030629",headers="(created) (expires) digest",signature="Base64(signing string)"</code>'
schemas:
Ack:
description: Describes the ACK response
Expand Down
Loading