Verifiable random function


In cryptography, the concept of a verifiable random function was introduced by Micali, Rabin, and Vadhan. It is a pseudo-random function that provides publicly verifiable proofs of its outputs' correctness. Given an input value x, the owner of the secret key SK can compute the function value y = FSK and the proof pSK. Using the proof and the public key, everyone can check that the value y = FSK was indeed computed correctly, yet this information cannot be used to find the secret key.
The original construction was rather inefficient. Later, an efficient and practical verifiable random function was proposed by Yevgeniy Dodis and Aleksandr Yampolskiy. The following is only for intuition and is secure only when the input is from a small domain :
where e is a bilinear map.
To verify whether was computed correctly or not, one can check
if and.
The proof of security relies on a new decisional bilinear Diffie-Hellman inversion assumption, which asks given as input to distinguish from random.

Uses

VRFs provide deterministic precommitments which can be revealed at a later time using proofs which can only be generated by a private key. This is useful for providing a 1:1 mapping of low entropy inputs to some random values which can be committed to in advance, e.g. through a timestamping service such as a transparency log.
Unlike traditional digital signature algorithms, VRF outputs can be published publicly without being subject to a preimage attack, even if the verifier knows the public key. This is useful to prevent enumeration of the names/identifiers in a directory which is using a transparency system.