-
Notifications
You must be signed in to change notification settings - Fork 171
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
Aggregation Key bits order #1253
Comments
Thanks for filing. The aggregation key pieces all support a range of 128-bits. You can think of the source side and trigger side key pieces as 128-bit masks (which are parsed from hex-encoded strings). In your example, if the registration looks like: Source registration:
Trigger
Both of these keys are interpreted as 128-bit keys and then OR'd together, so the resulting aggregation-key (in hex) would be: 0x00000000000000000123456789ABCDEF to get the behavior of concatenating 64-bits from each side you would need to shift your source-side key into the upper 64-bits: 0x0123456789ABCDEF0000000000000000 then let's say your trigger-side key is 0x00000000000000001, you would now get: 0x0123456789ABCDEF0000000000000001 the hex strings themselves have the higher bits encoded left to right. Hex strings are only used for registration in the API. The aggregatable reports themselves encode this as a 128-bit integer in cbor: https://wicg.github.io/attribution-reporting-api/#aggregatable-contribution-key Let me know if any further clarification is needed (perhaps we can improve the explainer / specs to make this more clear) |
@johnivdel , It seems to me that the first part of the explanation contradicts the second. So... finally, which result is right for source=0x0123456789ABCDEF and trigger=0x000000000000001: |
Hi @DRVTiny, the So for source=0x0123456789ABCDEF, it's equivalent to 0x00000000000000000123456789ABCDEF with 0s padded on the left. Therefore the resulting key which is OR'ed of those two is 0x00000000000000000123456789ABCDEF. Effectively the trigger side key piece doesn't contribute as the lowest bit of source key piece is already set. |
@johnivdel , OK, so we have, say, UInt128 number 0x4A000000000000000123456789ABCDEF which bits of this number will be written at byte 0 of "bucket" field in domain.avro? In my real code i'm trying to generate domain.avro from domain.json, where "bucket" is a string consists of generally not-readable bytes. So it is some kind of problem for me - to create this "string" properly because i don't know which bits must be placed at a lower addresses and which - at a higher ones. |
In short, the main question is:
|
@hostirosti Could you please confirm and comment more about domain.avro? As for the encoding, the 128-bit integer is encoded as big endian. So in the example, the first byte is 4A = 01001010, the second byte is 00 = 00000000, and so on. |
Am i correct or no when assume that:
source-side key piece bits in aggregation key is a 64 most significant bits in 128 bit integer
but this integer is encoded as big-endian, so in byte string this bits will goes first,
i.e. if we have, say,
source part encoded in hex is: 0123456789ABCDEF
trigger part encoded in hex is: 0000000000000000
so 128-bit integer representing the aggregation key will be:
0x0123456789ABCDEF0000000000000000
and the first bits of resulting bytes of the aggregation key will be:
0000 0001 0010 0011 ....
The text was updated successfully, but these errors were encountered: