Skip to content

Commit

Permalink
Script updating archive at 2023-10-08T01:04:00Z. [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
ID Bot committed Oct 8, 2023
1 parent 38fe01b commit d38f162
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion archive.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"magic": "E!vIA5L86J2I",
"timestamp": "2023-10-05T00:59:57.592510+00:00",
"timestamp": "2023-10-08T01:03:57.935171+00:00",
"repo": "ietf-wg-privacypass/base-drafts",
"labels": [
{
Expand Down Expand Up @@ -6617,6 +6617,30 @@
"updatedAt": "2023-09-08T15:14:57Z",
"closedAt": "2023-09-08T15:14:57Z",
"comments": []
},
{
"number": 498,
"id": "I_kwDODeTEy85zGO3J",
"title": "auth: suggestion about Token structure.",
"url": "https://github.com/ietf-wg-privacypass/base-drafts/issues/498",
"state": "CLOSED",
"author": "armfazh",
"authorAssociation": "CONTRIBUTOR",
"assignees": [],
"labels": [],
"body": "Define `Token` structure based on the `AutenticationInput` struct.\r\n\r\nIn Section 2.2.1 and 2.2.3,\r\n**Before:**\r\n```c\r\nstruct {\r\n uint16_t token_type;\r\n uint8_t nonce[32];\r\n uint8_t challenge_digest[32];\r\n uint8_t token_key_id[Nid];\r\n uint8_t authenticator[Nk];\r\n} Token;\r\n\r\nstruct {\r\n uint16_t token_type;\r\n uint8_t nonce[32];\r\n uint8_t challenge_digest[32];\r\n uint8_t token_key_id[Nid];\r\n} AuthenticatorInput;\r\n```\r\n\r\n**After:**\r\n```c\r\nstruct {\r\n uint16_t token_type;\r\n uint8_t nonce[32];\r\n uint8_t challenge_digest[32];\r\n uint8_t token_key_id[Nid];\r\n} AuthenticatorInput;\r\n\r\nstruct {\r\n AuthenticatorInput authInput;\r\n uint8_t authenticator[Nk];\r\n} Token;\r\n```\r\n\r\n",
"createdAt": "2023-10-06T22:41:46Z",
"updatedAt": "2023-10-07T03:09:10Z",
"closedAt": "2023-10-07T03:09:10Z",
"comments": [
{
"author": "tfpauly",
"authorAssociation": "COLLABORATOR",
"body": "While they do share that part, the authenticator input is really just covering the first parts of the token. From a naming perspective, switching this would be backwards to the meaning. The token is the main thing that matters, and the authenticator input is the derived structure. ",
"createdAt": "2023-10-07T03:09:01Z",
"updatedAt": "2023-10-07T03:09:01Z"
}
]
}
],
"pulls": [
Expand Down

0 comments on commit d38f162

Please sign in to comment.