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

fix(algorithms): better explain structured header serialization #1

Open
wants to merge 5 commits into
base: main
Choose a base branch
from

Conversation

sidvishnoi
Copy link
Member

No description provided.

@sidvishnoi sidvishnoi requested a review from asurkov March 21, 2025 12:58
Copy link
Collaborator

@asurkov asurkov left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Agreed keeping it as a separate algorithm does help with organization and it's also a good spot for an example. However, it feels a bit odd that the algorithm is referred only once. Maybe it'd be nice to give it a more specialized name such as setting content-digest header. Wdyt?

Also it might be helpful to define the algorithm as:
To set as structured header given a string headerName , string algorithm, string digestValue. See, for example,
https://html.spec.whatwg.org/multipage/popover.html#show-popover

I'd also suggest referring directly to rfc8941 spec serialization part instead of just the definitions. Something like: let headerValue be the result of serizalizing a dictionary structure (https://www.rfc-editor.org/rfc/rfc8941#name-serializing-a-dictionary) of a single key sha-512 and an item of byte sequence type (https://www.rfc-editor.org/rfc/rfc8941#name-serializing-a-byte-sequence).

@sidvishnoi
Copy link
Member Author

However, it feels a bit odd that the algorithm is referred only once.

It's actually referred twice, that's why generic name. First for Content-Digest (Step 2.2) and later for Signature (Step 11)

@sidvishnoi
Copy link
Member Author

Tried to make it clearer in 17a1238.

image

@sidvishnoi sidvishnoi requested a review from asurkov March 25, 2025 07:43
Copy link
Collaborator

@asurkov asurkov left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sorry for a delay in review, it all looks good but a few improvements might make it nicer.

<ol>
<li>Let |headerValue:structured field dictionary| be a <a data-cite="RFC9651#dictionary">structured field dictionary</a> with a single key |key| with corresponding value |value|.</li>
<li>Let |header| be a [=tuple=] of |headerName| and |headerValue|.</li>
<li>[=header list/Set a structured field value=] |header| to the [=request/header list=] of the |request|. The |headerValue| must be <a data-cite="RFC9651#name-serializing-a-dictionary">serialized</a> as described in [[RFC9651]].</li>
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

RFC9651 reference should probably go into note section, because [=header list/Set a structured field value=] specifies that for a structure field value, right?

@@ -374,9 +374,9 @@ <h4>Generate HTTP Signature</h4>
<li>
Let <var>components</var> be an array of strings identifying which content (headers, etc.) to include in the signature.
<ol>
<li>Let `components` default value be `<<"@method", "@target-uri">>`.</li>
<li>Let |components| default value be `<<"@method", "@target-uri">>`.</li>
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

initial value?

Also <<"item">> feels like a form of serialization of an array of strings, would be better to move that into item 6-8. Btw, it'd be nice to restructure those into a form of let canonicalData be ...

@sidvishnoi sidvishnoi requested a review from asurkov April 2, 2025 11:35
@sidvishnoi
Copy link
Member Author

(I'm avoiding rewriting everything in this PR, keeping it focused to header serialization)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants