I have two frames f1
and f2
that are each composed of several elements noted e
. Note that, an element can fall into one of those two categories: an identifier or a counter.
What I want is to find a property that verifies indistinguishability of elements between frames. For instance, given the element e
as an identifier, if f1.e==f2.e
the property is not verified while it is verified if f1.e!=f2.e
.
For now, I only suppose that such a property includes probabilities and can be obtained via:
- semantically secure block cipher for identifier elements;
- PRNG for counter elements.
0x1242338455667798f1eeaa...
. The question can be seen as a math question applied to computer science :). – Guillaume Jul 29 '19 at 09:26