rfcs / crypto-conditions

Composable cryptographic conditionals (signatures, hashes)
https://tools.ietf.org/html/draft-thomas-crypto-conditions-03
22 stars 12 forks source link

Ordering of subtypes and query string parameters in URI form #4

Closed adrianhopebailie closed 6 years ago

adrianhopebailie commented 7 years ago

The URI form of conditions should probably define some rules for determining equality. A direct string comparison is not appropriate because there are no rules that define the order of URI query strings nor the order of the subtypes.

The RFC should be explicit that URI normalization and comparison follow the rules as defined in RFC 3986 and the tests should folllow these rules for testing too

justmoon commented 7 years ago

I'd prefer having a standard canonicalization, so that you can just string compare. That way you can also use it as an index.

Although I'm starting to think it would be better to just index it using the DER which is already canonical.

adrianhopebailie commented 7 years ago

Although I'm starting to think it would be better to just index it using the DER which is already canonical.

+1 - URI comparisons is already well defined, I'd prefer to leverage it rather than force people to treat the URI as a string.

We may find that has advantages in future

adrianhopebailie commented 7 years ago

There is no standard for arrays as query string parameter values. We have gone with a comma separated list for the subtypes parameter which means we should either define a strict ordering or say that ordering must be ignored when comparing.

adrianhopebailie commented 7 years ago

I propose a strict ordering to allow for string based matching on query string parameters which would work for any generic URI matching algorithms

sappenin commented 7 years ago

I have created a PR (#25) that further clarifies the canonical ordering that we all seem to have agreed upon in this issue, including the ordering of subtype values as well as the ordering of all query-params in the URI.

sappenin commented 7 years ago

Bump...

adrianhopebailie commented 6 years ago

Resolved in #25