This article is about the mathematical cryptography function. For the method of bypassing security, see Backdoor (computing).
The idea of trapdoor function. A trapdoor function f with its trapdoor t can be generated by an algorithm Gen. f can be efficiently computed, i.e., in probabilistic polynomial time. However, the computation of the inverse of f is generally hard, unless the trapdoor t is given.1
In theoretical computer science and cryptography, a trapdoor function is a function that is easy to compute in one direction, yet difficult to compute in the opposite direction (finding its inverse ) without special information, called the âtrapdoorâ. Trapdoor functions are a special case of one-way functions and are widely used in public-key cryptography.2
In mathematical terms, if f is a trapdoor function, then there exists some secret information t, such that given f ( x ) and t, it is easy to compute x. Consider a padlock and its key. It is trivial to change the padlock from open to closed without using the key, by pushing the shackle into the lock mechanism. Opening the padlock easily, however, requires the key to be used. Here the key t is the trapdoor and the padlock is the trapdoor function.
An example of a simple mathematical trapdoor is â6895601 is the product of two prime numbers. What are those numbers?â A typical â brute-force â solution would be to try dividing 6895601 by many prime numbers until finding the answer. However, if one is told that 1931 is one of the numbers, one can find the answer by entering â6895601 Ă· 1931â into any calculator. This example is not a sturdy trapdoor function â modern computers can guess all of the possible answers within a second â but this sample problem could be improved by using the product of two much larger primes.
Trapdoor functions came to prominence in cryptography in the mid-1970s with the publication of asymmetric (or public-key) encryption techniques by Diffie, Hellman, and Merkle. Indeed, Diffie & Hellman (1976) coined the term. Several function classes had been proposed, and it soon became obvious that trapdoor functions are harder to find than was initially thought. For example, an early suggestion was to use schemes based on the subset sum problem. This turned out rather quickly to be unsuitable.
As of 2004, the best known trapdoor function (family) candidates are the RSA and Rabin families of functions. Both are written as exponentiation modulo a composite number, and both are related to the problem of prime factorization.
Functions related to the hardness of the discrete logarithm problem (either modulo a prime or in a group defined over an elliptic curve ) are not known to be trapdoor functions, because there is no known âtrapdoorâ information about the group that enables the efficient computation of discrete logarithms.
A trapdoor in cryptography has the very specific aforementioned meaning and is not to be confused with a backdoor (these are frequently used interchangeably, which is incorrect). A backdoor is a deliberate mechanism that is added to a cryptographic algorithm (e.g., a key pair generation algorithm, digital signing algorithm, etc.) or operating system, for example, that permits one or more unauthorized parties to bypass or subvert the security of the system in some fashion.
Definition
A trapdoor function is a collection of one-way functions { f k: D k â R k } ( k â K ), in which all of K, D k, R k are subsets of binary strings {0, 1} *, satisfying the following conditions:
- There exists a probabilistic polynomial time (PPT) sampling algorithm Gen s.t. Gen(1 n ) = ( k, t k ) with k â K â© {0, 1} n and t k â {0, 1} * satisfies | t k | < p ( n ), in which p is some polynomial. Each t k is called the trapdoor corresponding to k. Each trapdoor can be efficiently sampled.
- Given input k, there also exists a PPT algorithm that outputs x â D k. That is, each D k can be efficiently sampled.
- For any k â K, there exists a PPT algorithm that correctly computes f k.
- For any k â K, there exists a PPT algorithm A s.t. for any x â D k, let y = A ( k, f k ( x ), t k ), and then we have f k ( y ) = f k ( x ). That is, given trapdoor, it is easy to invert.
- For any k â K, without trapdoor t k, for any PPT algorithm, the probability to correctly invert f k (i.e., given f k ( x ), find a pre-image xâ such that f k ( xâ ) = f k ( x )) is negligible.3 4 5
If each function in the collection above is a one-way permutation, then the collection is also called a trapdoor permutation.6
Examples
In the following two examples, we always assume that it is difficult to factorize a large composite number (see Integer factorization ).
RSA assumption
In this example, the inverse of modulo ( Eulerâs totient function of ) is the trapdoor:
If the factorization of is known, then can be computed. With this the inverse of can be computed , and then given , we can find . Its hardness follows from the RSA assumption.7
Rabinâs quadratic residue assumption
Let be a large composite number such that , where and are large primes such that , and kept confidential to the adversary. The problem is to compute given such that . The trapdoor is the factorization of . With the trapdoor, the solutions of z can be given as , where . See Chinese remainder theorem for more details. Note that given primes and , we can find and . Here the conditions and guarantee that the solutions and can be well defined.8
See also
Notes
References
- Diffie, W.; Hellman, M. (1976), âNew directions in cryptographyâ (PDF), IEEE Transactions on Information Theory, 22 (6): 644â 654, CiteSeerX 10.1.1.37.9720, doi:10.1109/TIT.1976.1055638
- Pass, Rafael, A Course in Cryptography (PDF), retrieved 27 November 2015
- Goldwasser, Shafi, Lecture Notes on Cryptography (PDF), retrieved 25 November 2015
- Ostrovsky, Rafail, Foundations of Cryptography (PDF), retrieved 27 November 2015
- Dodis, Yevgeniy, Introduction to Cryptography Lecture Notes (Fall 2008), retrieved 17 December 2015
- Lindell, Yehuda, Foundations of Cryptography (PDF), retrieved 17 December 2015
- Ostrovsky, pp. 6â9 â©
- Bellare, M (June 1998). âMany-to-one trapdoor functions and their relation to public-key cryptosystemsâ. Advances in Cryptology â CRYPTO â98. Lecture Notes in Computer Science. Vol. 1462. pp. 283â 298. doi:10.1007/bfb0055735. ISBN 978-3-540-64892-5. S2CID 215825522.â©
- Passâs Notes, def. 56.1 â©
- Goldwasserâs lecture notes, def. 2.16 â©
- Ostrovsky, pp. 6â10, def. 11 â©
- Passâs notes, def 56.1; Dodisâs def 7, lecture 1.â©
- Goldwasserâs lecture notes, 2.3.2; Lindellâs notes, p. 17, Ex. 1.â©
- Goldwasserâs lecture notes, 2.3.4.â©