Created on 2025-02-12.00:00:00 last changed 1 month ago
Proposed resolution:
This wording is relative to N5001.
Modify [rand.eng.philox] as indicated:
-2- The generation algorithm returns , the value stored in the element of after applying the transition algorithm.
-3- The state transition is performed as if by the following algorithm:if ( == ) { Philox(, ) // see below // this updates }-4- The Philox function maps the length-/2 sequence and the length- sequence into a length- output sequence
. Philox applies an -round substitution-permutation network to the values in .A single round of the generation algorithm performs the following steps:That is, there are intermediate values , , …, , where , and for each round (with ), is computed from as follows. The output sequence is .
(4.1) —
The output sequence of the previous round ( in case of the first round) is permuted to obtain the intermediate state :An intermediate state is obtained by permuting the previous output, , where , and is defined in Table 124.
(4.2) —
The following computations are applied to the elements of the sequence:The next output is computed from the elements of the as follows. For
(4.2.?) — = mulhi(,,w) xor xor , and
= mulhi(,,w) xor xor(4.2.?) — = mullo(,,w),
= mullo(,,w)where
:
(4.2.1) — mullo() is the low half of the modular multiplication of and : ,
(4.2.2) — mulhi() is the high half of the modular multiplication of and : ,
(4.2.3) —
is the index in the sequences,is the round key for round , ,(4.2.4) —
is the index of the round,is the element of the key sequence ,
(4.2.5) — is the round key for round , ,
(4.2.6) — are the elements of the key sequence ,(4.2.7) — is multipliers[], and
(4.2.8) — is round_consts[].
The current wording that specifies the operation of the Philox random bit generator seems needlessly vague. We can add precision by defining a few more terms, instead of requiring the reader to fill in the blanks.
Concretely, the variable is only vaguely defined at the moment, and the definition of the "r-round network", "rounds", and how they fit together, is somewhat informal and imprecise. The statement that `Philox` "returns the sequence = " is needlessly ambiguous (what is here?). I propose the change that I drafted at draft/pull/7152: Namely, spell out the meaning of the "rounds" and create a distinct name for every value in every round. This allows us to state the result precisely, and makes it clear how each round computes a new value from the values of the previous rounds. It seems convenient to change the round counter to be 1-based (and is an alias for the initial value, ), so that the final result is .History | |||
---|---|---|---|
Date | User | Action | Args |
2025-02-23 13:42:34 | admin | set | messages: + msg14653 |
2025-02-12 00:00:00 | admin | create |