In cryptography, a pseudorandom function family, abbreviated PRF, is a collection of efficiently-computablefunctions which emulate a random oracle in the following way: no efficient algorithm can distinguish between a function chosen randomly from the PRF family and a random oracle. Pseudorandom functions are vital tools in the construction of cryptographic primitives, especially secure encryption schemes. Pseudorandom functions are not to be confused with pseudorandom generators. The guarantee of a PRG is that a single output appears random if the input was chosen at random. On the other hand, the guarantee of a PRF is that all its outputs appear random, regardless of how the corresponding inputs were chosen, as long as the function was drawn at random from the PRF family. A pseudorandom function family can be constructed from any pseudorandom generator, using, for example, the "GGM" construction given by Goldreich, Goldwasser, and Micali. While in practice, block ciphers are used in most instances where a pseudorandom function is needed, they do not, in general, constitute a pseudorandom function family, as block ciphers such as AES are defined for only limited numbers of input and key sizes.
Motivations from random functions
A PRF is an efficient, deterministic function that maps two distinct sets and looks like a truly random function. Essentially, a truly random function would just be composed of a lookup table filled with uniformly distributed random entries. However, in practice, a PRF is given an input string in the domain and a hidden random seed and runs multiple times with the same input string and seed, always returning the same value. Nonetheless, given an arbitrary input string, the output looks random if the seed is taken from a uniform distribution. A PRF is considered to be good if its behavior is indistinguishable from a truly random function. Therefore, given an output from either the truly random function or a PRF, there should be no efficient method to correctly determine whether the output was produced by the truly random function or the PRF.
Formal definition
A family of functions, is pseudorandom if the following conditions are satisfied:
Let Fn be the distribution of functions fs where s is uniformly distributed over n, and let RFn denote the uniform distribution over the set of all functions from n to n. Then we require Fn and RFn are computationally indistinguishable, where n is the security parameter. That is, for any adversary that can query the oracle of a function sampled from either Fn or RFn, the advantage that she can tell apart which kind of oracle is given to her is negligible.
Oblivious pseudorandom functions
In an oblivious pseudorandom function, information is concealed from two parties that are involved in a PRF. That is, if Alice gives the input for a pseudorandom function to Bob, and Bob computes a PRF and gives the output to Alice, Bob is not able to see either the input or the output, and Alice is not able to see the secret key Bob uses with the pseudorandom function. This enables transactions of sensitive cryptographic information to be secure even between untrusted parties.