-
-
Notifications
You must be signed in to change notification settings - Fork 81
feat(registry): add HPKE (RFC 9180) to Cryptography Registry #766
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -123,6 +123,21 @@ | |||||
| } | ||||||
| ] | ||||||
| }, | ||||||
| { | ||||||
| "family": "HPKE", | ||||||
| "standard": [ | ||||||
| { | ||||||
| "name": "RFC 9180", | ||||||
| "url": "https://doi.org/10.17487/RFC9180" | ||||||
| } | ||||||
| ], | ||||||
| "variant": [ | ||||||
| { | ||||||
| "pattern": "HPKE[-{mode}]-{kem}-{kdf}-{aead}", | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since the modes are well-defined by the RFC, I'd suggest the following pattern: |
||||||
| "primitive": "pke" | ||||||
| } | ||||||
| ] | ||||||
| }, | ||||||
|
||||||
| }, | |
| }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The RFC name should be "RFC9180" without a space to maintain consistency with the predominant naming pattern used in this file. Most RFC entries use the format "RFCnnnn" without a space, such as "RFC8017", "RFC8032", "RFC7919", "RFC5869", etc.