From draft-madden-generalised-siv:
SIV defines a particularly efficient encoding provided by the function S2V (for "string to vector") that converts a single-string PRF to a vector input PRF. S2V is defined using bitwise exclusive OR (XOR) and a doubling operation in the finite field GF(2^n) where n is the bit length of the output of the PRF.
Here's a diagram from the Deterministic Authenticated-Encryption paper:
Further information and diagrams can also be found in RFC 5297.
My question is if the PRF is a keyed collision-resistant hash function (e.g., like here), does S2V have the same collision resistance as concatenation (with length encoding for variable-length inputs)?
