This application is a continuation application of patent application Ser. No. 10/458,443 filed on Jun. 9, 2003.
This invention relates to sharing information using information-limiting protocols. Specifically, the invention computes a query across databases belonging to autonomous entities such that no more information than necessary (e.g. the answer to the query) is revealed from each database to the other databases.
A copy of a SIGMOD article “Information Integration Across Autonomous Enterprises” to be published on Jun. 9, 2003 is attached and serves as an Appendix to this application.
1. Introduction
Information integration has long been an area of active database research [e.g. see references 12, 16, 21, 27, 48]. So far, this literature has tacitly assumed that the information in each database can be freely shared. However, there is now an increasing need for computing queries across databases belonging to autonomous entities in such a way that no more information than necessary is revealed from each database to the other databases. This need is driven by several trends:
End-to-end Integration: E-business on demand requires end-to-end integration of information systems, from the supply chain to the customer-facing systems. This integration occurs across autonomous enterprises, so full disclosure of information in each database is undesirable.
Outsourcing: Enterprises are outsourcing tasks that are not part of their core competency. They need to integrate their database systems for purposes such as inventory control.
Simultaneously compete and cooperate: It is becoming common for enterprises to cooperate in certain areas and compete in others, which requires selective information sharing.
Security: Government agencies need to share information for devising effective security measures, both within the same government and across governments. However, an agency cannot indiscriminately open up its database to all other agencies.
Privacy: Privacy legislation and stated privacy policies place limits on information sharing. However, it is still desirable to mine across databases while respecting privacy limits.
1.1 Motivating Applications
We give two prototypical applications to make the above paradigm concrete. Application 1: Selective Document Sharing Enterprise R is shopping for technology and wishes to find out if enterprise S has some intellectual property it might want to license. However, R would not like to reveal its complete technology shopping list, nor would S like to reveal all its unpublished intellectual property. Rather, they would like to first find the specific technologies for which there is a match, and then reveal information only about those technologies. This problem can be abstracted as follows.
We have two databases D R and D S , where each database contains a set of documents. The documents have been preprocessed to only include the most significant words, using some measure such as term frequency times inverse document frequency [41]. We wish to find all pairs of similar documents D R ε D R and d S ε D S , without revealing the other documents. In database terminology, we want to compute the join of D R and D S using the join predicate f(|d R d S |,|d R |,|d S |)>τ, for some similarity function f and threshold τ. The function f could be |d R
d S |/(|d R |+|d S |), for instance.
Many applications map to this abstraction. For example, two government agencies may want to share documents, but only on a need-to-know basis. They would like to find similar documents contained in their repositories in order to initiate their exchange. Application 2: Medical Research Imagine a future where many people have their DNA sequenced. A medical researcher wants to validate a hypothesis connecting a DNA sequence D with a reaction to drug G. People who have taken the drug are partitioned into four groups, based on whether or not they had an adverse reaction and whether or not their DNA contained the specific sequence; the researcher needs the number of people in each group. DNA sequences and medical histories are stored in databases in autonomous enterprises. Due to privacy concerns, the enterprises do not wish to provide any information about an individual's DNA sequence or medical history, but still wish to help with the research.
Assume that the table T R (person_id, pattern) stores whether person's DNA contains pattern D and T S (person_id, drug, reaction) captures whether a person took drug G and whether the person had an adverse reaction. T R and T S belong to two different enterprises. The researcher wants to get the answer to the following query:
select pattern, reaction, count(*)
from T R , T S
where T R .person_id=T S .person_id and T S .drug=“true”
group by T R .pattern, T S .reaction
We want the property that the researcher should get to know the counts and nothing else, and the enterprises should not learn any new information about any individual.
1.2 Current Techniques
We discuss next some existing techniques that one might use for building the above applications, and why they are inadequate.
Trusted Third Party: The main parties give the data to a “trusted” third party and have the third party do the computation [7, 30]. However, the third party has to be completely trusted, both with respect to intent and competence against security breaches. The level of trust required is too high for this solution to be acceptable.
Secure Multi-Party Computation: Given two parties with inputs x and y respectively, the goal of secure multi-party computation is to compute a function f(x,y) such that the two parties learn only f(x,y), and nothing else. See [26, 34] for a discussion of various approaches to this problem.
Yao [49] showed that any multi-party computation can be solved by building a combinatorial circuit, and simulating that circuit. A variant of Yao's protocol is presented in where the number of oblivious transfers is proportional to the number of inputs and not the size of the circuit. Unfortunately, the communication costs for circuits make them impractical for many problems.
There is therefore an increasing need for sharing information across autonomous entities such that no information apart from the answer to the query is revealed.
It is accordingly an object of this invention to provide a system, method, and computer program product for processing a query spanning separate databases while revealing only minimal information beyond a query answer, by executing only specific information-limiting protocols according to query type. The invention includes protocols to process queries of these types: intersection, equijoin, intersection size, and equijoin size.
The protocols employ commutative encryption to limit the information revealed beyond the query answer. The query is rejected if no information-limiting protocol exists for the corresponding query type. The invention returns the query answer to a receiver R that has access to database D R and may optionally share the query answer with a sender S that has access to database D S . The minimal information revealed is either nothing or only pre-specified categories of information.
The foregoing objects are believed to be satisfied by the embodiments of the present invention as described below.
FIG. 1 shows the different components required for building a system for information integration with minimal sharing.
FIG. 2 shows an application of a system for information integration with minimal sharing for a medical research application.
2. Minimal Information Sharing
2.1 Security Model
We develop our solutions in a setting in which there is no third party [26]. The main parties directly execute a protocol, which is designed to guarantee that they do not learn any more than they would have learnt had they given the data to a trusted third party and got back the answer.
We assume honest-but-curious behavior [26]. The parties follow the protocol properly with the exception that they may keep a record of all the intermediate computations and received messages, and analyze the messages to try to learn additional information. This behavior is also referred to as semi-honest or passive behavior.
FIG. 1 shows the different components required for building a system for information integration with minimal sharing. Our focus will be on the cryptographic protocol. We assume the use of standard libraries or packages for secure communication and encryption primitives.
2.2 Problem Statement
We now formally state the problem we study in this application.
Problem Statement (Ideal) Let there be two parties R (receiver) and S (sender) with databases D R and D S respectively. Given a database query Q spanning the tables in D R and D S , compute the answer to Q and return it to R without revealing any additional information to either party.
Problem Statement (Minimal Sharing) Let there be two parties R and S with databases D R and D S respectively. Given a database query Q spanning the tables in D R and Ds, and some categories of information I, compute the answer to Q and return it to R without revealing any additional information to either party except for information contained in I.
For example, if the query Q is a join T R T S over two tables T R and T S , the additional information I might be the number of records in each table: |T R | and |T S |. Note that whatever R can infer from knowing the answer to the query Q and the additional information I is fair game. For instance, if the query Q is an intersection V S
V R between two sets V S and V R , then for all v ε (V R −(V S
V R )), R knows that these values were not in V S .
We assume that the query Q is revealed to both parties. One can think of other applications where the format of Q is revealed, but not the parameters of Q (e.g., in private information retrieval, discussed in Section 2.4).
2.2.1 Operations
In this application, we focus on four operations: intersection, equijoin, intersection size, and equijoin size.
Let S have a database table T S , and R have a table T R , with both tables having a specific attribute A in their schemas. The attribute takes its values from a given set V. Let V S be the set of values (without duplicates) that occur in T S .A, and let V R be the set of values occurring in T R .A. For each v ε V S , let ext(v) be all records in T S where T S .A=v, i.e., ext(v) is the extra information in T S pertaining to v. We show how to compute three kinds of queries over T S and T R :
We also extend the intersection size protocol to obtain an equijoin size protocol that computes |T S T R | (Section 5.2). However, R learns |V S |, the distribution of duplicates in T S .A, and based on the distribution of duplicates, some subset of information in V S
V R . S learns |V R | and the distribution of duplicates in T R .A.
2.3 Limitations
Multiple Queries While we provide guarantees on how much the parties learn from a single query, our techniques do not address the question of what the parties might learn by combining the results of multiple queries. The first line of defense against this problem is the scrutiny of the queries by the parties. In addition, query restriction techniques from the statistical database literature [1, 44] can also help. These techniques include restricting the size of query results [17, 23], controlling the overlap among successive queries [19], and keeping audit trails of all answered queries to detect possible compromises [13].
Schema Discovery and Heterogeneity We do not address the question of how to find which database contains which tables and what the attribute names are; we assume that the database schemas are known. We also do not address issues of schema heterogeneity. See and references therein for some approaches to these problems.
2.4 Related Work
In [35], the authors consider the problem of finding the intersection of two lists while revealing only the intersection. They present two solutions: the first involves oblivious evaluations of n polynomials of degree n each, where n is the number of elements in the list; the second solution requires oblivious evaluation of n linear polynomials. In the context of databases, n will be quite large. In [28], the authors consider the problem of finding people with common preferences, without revealing the preferences. They give intersection protocols that are similar to ours, but do not provide proofs of security.
In the problem of private information retrieval [11, 14, 15, 32, 45], the receiver R obtains the ith record from set of n records held by the sender S without revealing i to S. With the additional restriction that R should only learn the value of one record, the problem becomes that of symmetric private information retrieval [25]. This literature will be useful for developing protocols for the selection operation in our setting.
The problem of privacy-preserving data mining is also related. The randomization approach [6, 22, 40] focuses on individual privacy rather than on database privacy, and reveals randomized information about each record in exchange for not having to reveal the original records to anyone. More closely related is the work in [33] on building a decision-tree classifier across multiple databases, without revealing the individual records in each database to the other databases. Algorithms for mining associations rules across multiple databases have been described in [31] and [47] for horizontally and vertically partitioned data respectively.
The context for the work presented in this application is our effort to design information systems that protect the privacy and ownership of individual information while not impeding the flow of information. Our other related papers include [2, 3, 4, 5].
3. Intersection
3.1 A Simple, but Incorrect, Protocol
A straightforward idea for computing the intersection V S V R would be to use one-way hash functions [38]. Here is a simple protocol that appears to work:
1. Both S and R apply hash function h to their sets, yielding
X S =h ( V S )={ h ( v )| vεV S } and
X R =h ( V R )={ h ( v )| vεV R }
2. S sends its hashed set X S to R
3. R sets aside all v ε V R for which h(v) ε X S ; these values form the set V S V R . Unfortunately, R can learn a lot more about V S (with honest-but-curious behavior). For any arbitrary value v ε V−(V S
V R ), R can simply compute h(v) and check whether h(v) ε X S to determine whether or not v ε V S . In fact, if the domain is small, R can exhaustively go over all possible values and completely learn V S .
The intersection protocol we propose next fixes the deficiencies of this protocol.
3.2 Building Blocks
We first describe two building blocks used in the proposed protocols.
3.2.1 Commutative Encryption
Our definition of commutative encryption below is similar to the constructions used in [9, 18, 20, 42] and others. Informally, a commutative encryption is a pair of encryption functions f and g such that f(g(v))=g(f(v)). Thus by using the combination f(g(v)) to encrypt v, we can ensure that R cannot compute the encryption of a value without the help of S. In addition, even though the encryption is a combination of two functions, each party can apply their function first and still get the same result.
Definition1 (Indistinguishability).
Let Ωk {0,1} k be a finite domain of k-bit numbers. Let D 1 =D 1 (Ωk) and D 2 =D 2 (Ωk) be distributions over Ωk. Let A k (x) be an algorithm that, given x ε Ωk, returns either true or false. We define distribution D 1 of random variable x ε Ωk to be computationally indistinguishable from distribution D 2 if for any family of polynomial-step (with respect to k) algorithms A k (x), any polynomial p(k), and all sufficiently large k
Pr[A k ( x )| x˜D 1 ]−Pr[A k ( x )| x˜D 2 ]<1 /p ( k )
where x˜D denotes that x is distributed according to D, and Pr[A k (x)] is the probability that A k (x) returns true.
Throughout this application, we will use “indistinguishable” as shorthand for “computationally indistinguishable”.
Definition2 (Commutative Encryption).
A commutative encryption F is a computable (in polynomial time) function f: KeyF×DomF→DomF, defined on finite computable domains, that satisfies all properties listed below. We denote f e (x)≡(e,x) and use “εr” to mean “is chosen uniformly at random from”.
1. Commutativity: For all e, e′ ε KeyF we have f e o f e′ =f e′ o f e′
2. Each f e : DomF→DomF is a bijection
3. The inverse f e −1 is also computable in polynomial time, given e.
4. The distribution of <x,f e (x),y,f e (y)> is indistinguishable from the distribution of <x, f c (x),y,z>, where x, y, z ε DomF and e ε KeyF.
Informally, Property 1 says that when we compositely encrypt with two different keys, the result is the same irrespective of the order of encryption. Property 2 says that two different values will never have the same encrypted value. Property 3 says that given an encrypted value f e (x) and the encryption key e, we can find x in polynomial time. (Note, we only need this property for the join protocol, not for the intersection protocol). Property 4 says that given a value x and its encryption f e (x) (but not the key e), for a new value y, we cannot distinguish between f e (y) and a random value z in polynomial time. Thus we can neither encrypt y nor decrypt f e (y) in polynomial time. Note that this property holds only if x is a random value from DomF, i.e., the adversary does not control the choice of x.
Example 1 Let DomF be all quadratic residues modulo p, where p is a “safe” prime number, i.e. both p and q=(p−1)/2 are primes. Let KeyF be {1, 2, . . . , q−1}. Then, assuming the Decisional Diffie-Hellman hypothesis (DDH) [10], the power function f e (x)≡ e mod p is a commutative encryption:
The powers commute:
( x d mod p ) e mod p=x de mod p =( x e mod p ) d mod p.
Each of the powers f e is a bijection with its inverse being f e −1 =f e −1 mod q.
DDH claims that for any generating (≠1) element g C DomF the distribution of <g a , g b , g ab > is indistinguishable from the distribution of <g a , g b , g c > where a, b, c, εr KeyF. A 3-tuple <g a , g b , z> from the DDH can be reduced to our f-tuple <x, x e , y, z> by taking d εr KeyF and making tuple <g d , (g a ) d , g b , z>. Now a plays the role of e, g d of x, and g b of y; we test whether z=(g b ) a or is random. Thus, given DDH, <x,x e ,y,y e > and <x,x e ,y,z> are also indistinguishable.
3.2.2 Hash Function
Besides a commutative encryption F, we need a hash function to encode the values v ε V into x ε DomF. The hashes of values should not collide and should “look random,” i.e., there should be no dependency between them that could help encrypt or decrypt one hashed value given the encryption of another. Since we apply commutative encryption to the hashed values h(v) instead of v, the input for the encryption function will appear random, and we will be able to use Property 4 of commutative encryption to prove that our protocols are secure.
In the proofs of our security statements we shall rely on the standard random oracle model [8, 24, 46]. We assume that our hash function h: V→DomF is ideal, which means that h(v) can be considered computed by a random oracle: every time h(v) is evaluated for a new v ε V, an independent random x εr DomF is chosen for x=h(v).
We assume also that |DomF℄ is so large compared to |V S ×V R | that the probability of a collision is exponentially small. Let N=|DomF|; in the random oracle model, the probability that n hash values have at least one collision equals [46]:
With 1024-bit hash values, half of which are quadratic residues, we have N1 2 1024/2 ≈10 307 , and for n=1 million
Pr [collision]≈1−exp(−10 12 /10 307 )≈10 12 /10 307 =10 −295 .
For real-life hash functions, a collision within V S or V R can be detected by the server at the start of each protocol by sorting the hashes. If there is a collision between v ε V S and v′ ε V R , it will cause inclusion of v′ into the join (or intersection) by R and the disclosure to R of S's records containing v. (For the join protocol (Section 4), R can check whether there was a collision between v ε V S and v′ ε V R by having S include the value v in ext(v)).
3.3 Intersection Protocol
Our proposed intersection protocol is as follows.
1. Both S and R apply hash function h to their sets:
X S =h ( V S ) and X R =h ( V R ).
Each party randomly chooses a secret key:
es εr KeyF for S and er εr KeyF for R.
2. Both parties encrypt their hashed sets:
Y S =f eS ( X S )= f eS ( h ( V S )) and
Y R εf eR ( X R )= f eR ( h )( V R )).
3. R sends to S its encrypted set Y R =f eR (h(V R )), reordered lexicographically. (If we did not reorder and instead sent the values in the same order as the values in V R , significant additional information could be revealed).
4. (a) S ships to R its set Y S =f eS (h(V S )), reordered lexicographically
Next we prove that, assuming the parties follow the protocol correctly, they learn nothing else about the other's sets. We first show that even given
and x m+1 , there is no polynomial-time algorithm that can determine whether or not a value u is in fact f e (x m+1 )
LEMMA 1. For polynomial m, the distribution of the 2×m-tuple
is indistinguishable from the distribution of the tuple
where ∀i: x i εr DomF, z m εr DomF, and e εr KeyF
PROOF. Let us denote the distribution of the upper tuple by D m , and the distribution of the lower tuple by D m−1 . If D m and D m−1 are distinguishable by some polynomial algorithm A, then <x, f e (x), y, f e (y)> and <x, f e (x), y, z> from Property 4 of commutative encryption are also distinguishable by the following algorithm that takes <x, f e (x), y, u> as argument:
1. For i=1 . . . m−1, let x 1 =f ei (x) and z i =f ei (f(x)), where e i εr KeyF;
2. Let x m =y and z m =u;
3. Submit tuple
to algorithm A and output whatever it outputs.
For i=1 . . . m−1, we have z i =f ei (f e (x))=f e (f ei (x))=f e (x i ), and all x i are indistinguishable from uniformly random (from Property 4 of commutative encryption). Therefore the distribution of the tuple given to A is indistinguishable from D m when <x, f e (x), y, u> is distributed as <x, f e (x), y, f e (y)>, and from D m −1 when <x, f e (x), y, u> is distributed as <x, f e (x), y, z>. So the assumption that D m and D m−1 are distinguishable leads to the contradiction that Property 4 does not hold.
LEMMA 2. For polynomial m and n, the distribution of the 2×n-tuple
is indistinguishable from the distribution of the tuple
where 0≦m≦n, ∀i: x i , z i , εr DomF, and e εr KeyF.
PROOF. Let us denote by D n m the distribution of the lower tuple; the upper tuple's distribution is thus D n n .
From Lemma 1, for all j=m+1 . . . n, the distributions D n j and D n j−1 are indistinguishable. (The first j columns of D n j are identical to D j of Lemma 1, the first j columns of D n j−1 are identical to D j−1 of Lemma 1, and the last n-j columns of D n j−1 and D n j are just uniformly random numbers.)
Since D n j−1 and D n j are indistinguishable for ∀j=m+1 . . . n, and because n is bounded by a polynomial, D n n is also indistinguishable from any D n m (where 0≦m≦n). Let A k be an algorithm that pretends to distinguish D n n from D n n , and returns true or false. Now
Here k is the number of bits in the tuple values. Consider any polynomial p(k); we want to prove that ∃k o ∀k≧k o the difference (1) is bounded by 1/p(k). Let p′(k)=np(k), which is also a polynomial. We have ∀j=m+1 . . . n∃xk j ∇k≧k j the j-th difference in the telescoping sum is bounded by 1/p′(k). Now set k o =max j k j , and we are done:
Therefore D n n and D n n are computationally indistinguishable.
STATEMENT 2. The intersection protocol is secure if both parties are semi-honest. In the end, S learns only the size |V R |, and R learns only the size |V S | and the intersection V S V R. PROOF. We use a standard proof methodology from multi-party secure computation [ 26]. If, for any V S and V R , the distribution of the S's view of the protocol (the information S gets from R) cannot be distinguished from a simulation of this view that uses only V S and |V R |, then clearly S cannot learn anything from the inputs it gets from R except for |V R |. Note that the simulation only uses the knowledge S is supposed to have at the end of the protocol, while the distinguisher also uses the inputs of R (i.e., V R ), but not R's secret keys (i.e., e R ). It is important that the distinguisher be unable to distinguish between the simulation and the real view even given R's inputs: this precludes the kind of attack that broke the protocol given in Section 3.1.
The simulator for S (that simulates what S receives from R) is easy to construct. At Step 3 of the protocol, the only step where S receives anything, the simulator generates |V R | random values z i εr DomF and orders them lexicographically. In the real protocol, these values equal f eR (h(v)) for v ε V R . Assuming that, for all v ε V R , the hashes h(v) are distributed uniformly at random (random oracle model), by Lemma 2 and the distributions
where ∀i: z i εr DomF, are indistinguishable. Therefore the real and simulated views for S are also indistinguishable.
The simulator for R (that simulates what R gets from S) will use V R , V S V R and |V S |; it also knows the hash function h. However, it does not have V S −V R . The simulator chooses a key ê εr KeyF. In Step 4(a), the simulation creates Y S as follows:
First, for values v i ε V S V R , the simulation adds fê S (h(v i )) to Y S .
Next, the simulation adds |V S −V R | random values z i εr Dom F to Y S .
In Step 4(b), the simulation uses the key ê to encrypt each y ε Y R .
Since e S (real view) and ê (simulation) are both chosen at random, their distributions are identical. According to Lemma 2, one cannot distinguish between the distribution of
and the distribution of
The real view corresponds to the upper matrix, and the simulated view to the lower matrix. The only difference is that some variables appear in the view encrypted by f eR , which makes the view an efficiently-computable function of the matrix. Therefore the real view and the simulated view are also indistinguishable, and the statement is proven.
4. Equijoin
We now extend the intersection protocol so that, in addition to V S V R , R learns some extra information ext(v) from S for values v ε V S
V R but does not learn ext(v) for v ε V S −V R . To compute the join T S
T R on attribute A, we have ext(v) contain all the records of S's table where T S .A=v, i.e. ext(v) contains the information about the other attributes in T S needed for the join.
4.1 Idea Behind Protocol
A simple, but incorrect, solution would be to encrypt the extra information ext(v) using h(v) as the encryption key. Since, in our intersection protocol, h(v) could not be discovered by R except for v ε V R (and similarly for S), one might think that this protocol would be secure. While it is true that h(v) cannot be discovered from Y R or Y S , h(v) can be discovered from the encryption of ext(v). For any arbitrary value v, R can compute h(v) and try decrypting all the ext(v) using h(v) to learn whether or not v ε V S . In fact, if the domain is small, R can exhaustively go over all possible values and completely learn both V S and ext(v) for v ε V S .
Rather then encrypt the extra information with h(v), we will encrypt it with a key κ(v)=f e′S (h(v)), where e's is a second secret key of S. The problem now is to allow R to learn κ(v) for v ε V R without revealing V R to S. We do this as follows: R sends f eR (h(v)) to S, and S sends back f e′S (f eR (h(v))) to R. R can now apply f 1 eR to the latter to get f 1 eR (f e′S (f eR (h(V))))=f 1 eR (f eR (f e′S (hv))))=f e′S (h(v)).
Note that R only gets f e′S (h(v)) for v ε V R , not for v ε V S −V R .
4.2 Encryption Function K
We now formally define the encryption function K(κ, ext(v)) that encrypts ext(v) using the key κ(v). K is defined to be a function
K: DomF×V ext → C ext
with two properties:
1. Each function K Π (x)≡K(κ,x) can be efficiently inverted (decrypted) given κ;
2. “Perfect Secrecy”[43]: For any ext(v), the value of K Π (ext(v)) is indistinguishable from a fixed (independent of ext(v)) distribution D ext over C ext when κ εr DomF.
Example 2 Let F be the power function over quadratic residues modulo a safe prime, as in Example 1. If the extra information ext(v) can also be encoded as a quadratic residue (i.e., V ext =DomF), the encryption K Π (ext(v)) can be just a multiplication operation:
K Π ( ext ( v ))=κ ext ( v )
The multiplication can be easily reversed given κ, and if κ is uniformly random then κ ext(v) is also uniformly random (independently of ext(v)).
4.3 Equijoin Protocol
Let V be the set of values (without duplicates) that occur in T S .A, and let V R be the set of values that occur in T R .A. For each v ε V S , let ext(v) be all records in T S where T S .A=v.
1. Both S and R apply hash function h to their sets:
X S =h ( V S ) and X R =h ( V R ).
R chooses its secret key er εr KeyF, and S chooses two secret keys: es, e's εr KeyF.
2. R encrypts its hashed set: Y R =f eR (X R )=f eR (h(V R )).
3. R sends to S its encrypted set Y R , reordered lexicographically.
4. S encrypts each y ε Y R with both key e S and key e′ S , and sends back to R 3-tuples <y,f eS (y),f e′S (y)>=<f eR (h(v)),f eS (f eR (h(v))),f e′S (f eR (h(v)))>.
5. For each v ε V S , S does the following:
(a) Encrypts the hash h(v) with e S , obtaining f eS (h(v)).
(b) Generates the key for extra information using e′ S :
κ( v )= f e′S ( h ( v )).
(c) Encrypts the extra information:
c ( v )= K (κ( v ), ext ( v )).
(d) Forms a pair <f eS (h(v)), c(v)>=<f eS (h(v)),K(f e′S (h(v)),ext(v))>.
The pairs are then shipped to R in lexicographical order.
6. R applies f 1 eR to all entries in the 3-tuples received at Step 4, obtaining <h(v),f eS (h(v)),f e′S s(h(v))> for all v ε V R .
7. R sets aside all pairs <f eS (h(v)), K(f e′S (h(v)), ext(v))> received at Step 5 whose first entry occurs as a second entry in a 3-tuple <h(v), f eS (h(v)), f e′S (h(v))> from Step 6. Using the third entry f e′S (h(v))=κ(v) as the key, R decrypts K(f e′S (h(v)), ext(v)) and gets ext(v). The corresponding v's form the intersection V S V R.
8. R uses ext(v) for v ε V S V R to compute T S G T R .
4.4 Proofs of Correctness and Security
STATEMENT 3. Assuming there are no hash collisions, S learns |V R |, and R learns |V S |, V S V R , and ext(v) for all v ε V S
V R .
PROOF. This protocol is an extension of the intersection protocol, so it allows R to determine V S V R correctly. Since R learns the keys κ(v) for values in the intersection, R also gets ext(v) for the keys x(v) for values in the intersection, R also gets ext(v) for v ε V S
V R .
Next we prove that R and S do not learn anything besides the above. We first extend Lemma 2 as follows.
LEMMA 3. For polynomial n, the distributions of the following two 3×n-tuples
are computationally indistinguishable, where ∇i: x i , y i , z i εr DomF, and e, e′ εr KeyF PROOF. Let us denote the left distribution by D 1 , the right distribution by D 2 , and the following “intermediate” distribution by D 3 :
The first and third line in the tuples for D 1 and D 3 are distributed like D n n and D n 0 (from Lemma 2) respectively. The second line in both D 1 and D 3 can be obtained from the first line by applying f e with random key e. Therefore, since D n n and D n 0 are indistinguishable by Lemma 2, distributions D 1 and D 3 are also indistinguishable.
Analogously, the first and second lines in D 3 and D 2 are distributed like D n 0 and D n n respectively. The third line in both D 3 and D 2 can be obtained by using random numbers for the z i 's. Therefore, by Lemma 2, D 3 and D 2 are also indistinguishable.
Finally, since both D 1 and D 2 are indistinguishable from D 3 , they themselves are indistinguishable.
The following lemma will be used in the proof for the security of the join protocol to show that the real and simulated views for R are indistinguishable. D′ 1 corresponds to the real view (for R), while D′ 2 corresponds to the simulated view. The first t columns correspond to V S −(V S V R ), the next m-t columns to V S
V R , and the last n-m columns to V R −(V S
V R ).
LEMMA 4. For polynomial m, t, and n, and any c i ε V ext , the two distributions D′ 1 and D′ 2 of the 4×n-tuple
such that
for D′ 1 , ∀i: x i εr DomF, y i =f e (x i ), z i =f e′ (x i ), and ξi=K(f e′ (x i ),c i ) where e, e′ εr KefF;
for D′ 2 , ∀i: x i , y i , z i εr DomF, and
i=1 . . . t: ξi is independent random with distribution D ext ,
i=t+1 . . . m: ξi=K(z i , c i )
are computationally indistinguishable. (In both D′ 1 and D′ 2 , the positions corresponding to
z i . . . z t and ξ m+1 . . . ξ n are blank.
PROOF. Denote by D′ 3 the following “intermediate” distribution:
∀i:x i ,y i ,z i εrDomF and ξ i=K ( z i ,c i ).
Note that the z i for i=1 . . . t are not included in the tuple, even though they are used to generate K(z i , c i ).
The only difference between the two distributions D′ 2 and D′ 3 is that, for i=1 . . . t, we replace ξi distributed as D ext with K(z i , c i ) where z i εr DomF; the rest of the matrix is independent and stays the same. Since z i is not a part of the matrix for i=1 . . . t, by Property 2 of encryption K(κ,c), distributions D′ 2 and D′ 3 are indistinguishable.
Next we use Lemma 3 to show that distributions D′ 1 and D′ 3 are also indistinguishable. We define function Q(M) that takes a 3×n matrix M (from Lemma 3) and generates a 4×n matrix M′ as follows:
1. The first 3 rows of M′ are the same as the first 3 rows of M, except that the values corresponding to z 1 , . . . , z t in M′ are left blank.
2. The fourth row of M′ is generated by taking ξi=K(z i , c i ) where z i is the corresponding value of the third row of M.
If M is distributed like D 1 of Lemma 3, Q(M) corresponds to D′ 1 . If M is distributed like D 2 , Q(M) corresponds to D′ 3 . Since by Lemma 3, D 1 and D 2 are indistinguishable, and Q(M) is computable in polynomial time, D′ 1 and D′ 3 are also indistinguishable.
Finally, since both D′ 1 and D′ 2 are indistinguishable from D′ 3 , they themselves are indistinguishable.
STATEMENT 4. The join protocol is secure if both parties are semi-honest. At the end of the protocol, S learns only |V R |; R learns only |V S |, V S V R , and ext(v) for all v cε V S
V.
PROOF. As in the proof of Statement 2, we will construct simulators of each party's view of the protocol, such that each simulator is given only what the party is supposed to learn, and such that the distribution of the real view is indistinguishable from the distribution of the simulated view.
The simulator for S is identical to that in Statement 2, since S gets exactly the same input from R as in the intersection protocol. Hence the proof from Statement 2 directly applies.
The simulator for R (that simulates what R receives from S) can use h, er, V R , V S V R , ext(v) for v ε V S
V R , and |V S |. Let
V S ={v 1 , . . . , v t ,v t+1 , . . . , v m } and
V R ={v t+1 , . . . , v m ,v m+1 , . . . , v n }.
So t=|V S −V R |, m=|V S |, and n=|V S U V R |. Note that the simulator does not know the values in V S −V R .
In Step 4, the simulator generates n random numbers y i , εr DomF, i=1 . . . n as the simulated values for f eS (h(v i )), and an additional n random numbers z i εr DomF as the simulated values for f e′S (h(v i )). The simulation then uses key eR to create
< f eR ( h ( v i )), f eR ( y i ), f eR ( z i )>
for i=t+1 . . . m. These triplets are ordered lexicographically and comprise the simulated view for Step 4.
In Step 5, the simulator creates the pairs as follows:
For values v t+1 , . . . , v m from V S V R , the simulator encrypts ext(v i ) as ξi=K(z i , ext(v i )); then it forms pairs <y i , ξi>
For i=1 . . . t, the simulator creates |V S −V R | additional pairs <y i , ξi> where ξi have distribution D ext over C ext , i.e. y i and ξi are random values from their respective domains. These pairs are sorted lexicographically and comprise the simulated view for Step 5.
Setting x i =h(v i ), the real view corresponds to distribution D′ 1 of the matrix in Lemma 4, while the simulation corresponds to distribution D′ 2 of the matrix. The only difference is that some variables appear in the view encrypted by f eR , which makes the view an efficiently-computable function of the matrix. Since these D′ 1 and D′ 2 are indistinguishable, the simulation is also indistinguishable from the real view.
5. Intersection and Join Sizes
5.1 Intersection Size
We now show how the intersection protocol can be modified, such that R only learns the intersection size, but not which values in V R were present in V S . (Simply applying the intersection protocol would reveal the set V R V S , in addition to the intersection size.) Recall that in Step 4 of the intersection protocol, S sends back to R the values of y ε Y R together with their encryptions made by S. These encryptions are paired with the unencrypted y's so that R can match the encryptions with R's values. If instead S sends back to R only the lexicographically reordered encryptions of the y's and not the y's themselves, R can no longer do the matching.
5.1.1 Intersection Size Protocol
We now present the protocol for intersection size. (Steps 1 through 3 are the same as in the intersection protocol.)
1. Both S and R apply hash function h to their sets:
X S =h ( V S ) and X R =h ( V R ).
Each party randomly chooses a secret key:
e S εr KeyF for S and e R εr KeyF for R.
2. Both parties encrypt their hashed sets:
Y S =f eS ( X S )= f eS ( h ( V S )) and
Y R =f eR ( X R )= f eR ( h ( V R )).
3. R sends to S its encrypted set Y R =f eR (h(V R )), reordered lexicographically.
4. (a) S ships to R its set Y S =f eS (h(V S )), reordered lexicographically.
The simulator for S's view of the intersection size protocol is identical to that in Statement 2, since S gets exactly the same input from R as in the intersection protocol. Hence the proof from Statement 2 directly applies.
The simulator for R's view of the protocol is allowed to use V R , the hash function h, e R , and the numbers |V S V R | and |V S |; however, it has neither V S −V R nor V S
V R. Let
V S ={v 1 , . . . , v t ,v t+1 , . . . , v m } and
V R ={v t+1 , . . . , v m ,v m+1 , . . . , v n }.
So t=|V S −V R |, m=|V S |, and n=|V S U V R |.
The simulator generates n random numbers y 1 , . . . , y n εr DomF which play the role of f eS (h(v)) for all v ε V S U V R . The key e S is not simulated, and no decision is made about which y i stands for which e S (h(v)). In Step 4(a), the simulation creates Y S as Y S ={y1, . . . , ym}.
In Step 4(b), the simulation generates Z R by taking set {y t+1 , . . . , yn} and encoding it with f eR : Z R {f eR (y t+1 ), . . . , f eR (yn)}
We now show that the distribution of R's real view in the protocol is computationally indistinguishable from the distribution of R's simulated view.
According to Lemma 2, the distributions D n 0 and D n n of the following matrix M:
where
D n 0 : ∀i: x i , y i εr DomF;
D n n : ∀i: x i εr DomF, y i =f eS (x i ), e S εr KeyF;
are indistinguishable. Given x i =h(v i ), consider the following function Q(M):
Q ( M )=< h,e R ,Y s ,Z R >,
where
h:=a function on V S U V R such that xi: h(v i )=x i ;
e R :=a random key;
Y S :={y1, . . . , ym};
Z R :={f eR (y t+1 ), . . . , f eR (yn)}.
If M is distributed according to D n 0 , then Q(M) corresponds to the simulated view of server R. If M's distribution is D n n , then
y i =f eS ( x i )= f eS ( h ( v i )),
f eR ( y i )= f eR ( f eS ( x i ))= f eS ( f eR ( h ( v i ))),
Q(M) is distributed like the real view of R. Since from Lemma 2, D n 0 and D n n are indistinguishable, and Q is computable in polynomial time, the simulated view Q(D n 0 ) and the real view Q(D n n ) are also indistinguishable.
5.2 Equijoin Size
To evaluate equijoin size, we follow the intersection size protocol, except that we allow V R and V S to be multi-sets, i.e., contain duplicates, and then compute the join size instead of the intersection size in Step 6. However, R can now use the number of duplicates of a given value to partially match values in Y R with their corresponding encryptions in Z R . We now characterize exactly what R and S learn in this protocol (besides |V R |, |V S | and |V R V S |).
To start with, R learns the distribution of duplicates in V S , and S learns the distribution of duplicates in V R . To characterize what else R learns, let us partition the values in V R based on the number of duplicates, i.e., in a partition V R (d), each v ε V R (d) has d duplicates. Then, for each partition, R learns |V R (d) V S (d′)| for each partition V S (d′) of V S . Thus if all values have the same number of duplicates (e.g., no duplicates as in our intersection protocol), R only learns |V R
V S |. At the other extreme, if no two values have the same number of duplicates, R will learn V R
V S .
6. Cost Analysis
6.1 Protocols
Let
each encrypted codeword (in DomF) be k bits long,
C h denote the cost of evaluating the hash function
C e denote the cost of encryption/decryption by F (e.g., exponentiation “x y modp” over k-bit integers),
C K denote the cost of encryption/decryption by K (e.g., encoding/decoding as a quadratic residue and multiplication), and
n (log n) C S be the cost of sorting a set of n encryptions.
We assume the obvious optimizations when computing the computation and communication costs. For example, in the join protocol, we assume that the protocol does not decrypt y to h(v) in Step 6 but uses order preservation for matching. Also, in all the protocols, S does not retransmit y's back but just preserves the original order.
Computation The computation costs are:
Intersection: (C h +2C e )(|V S |+|V R )+2C S |V S | log|V S |+3C S |V R | log|V R |
Join: C h (|V S |+|V R |)+2C e |V S |+5C e |V R |+Ck(|V S |+|V S V R |)+2C S |V S | log|V S |+3C S |V R | log|V R |
We can assume C e >>C h , C e >>Ck, and nC e >>n (log n)C S , so these formulae can be approximated by:
Intersection: 2C e (|V S |+|V R |)
Join: 2C e |V S |+5C e |V R |
Communication The communication cost is:
Intersection: (|V S |+2|V R |)k bits
Join: (|V S |+3|V R |)k+|V S |k′ bits, where k′ is the size of the encrypted ext(v).
Both the intersection size and join size protocols have the same computation and communication complexity as the intersection protocol.
6.2 Applications
We now estimate the execution times for the applications in Section 1.1.
For the cost of C e (i.e., cost of x y mod p), we use the times from [36]: 0.02 s for 1024-bit numbers on a Pentium III (in 2001). This corresponds to around 2×10 5 exponentiations per hour. We assume that communication is via a T1 line, with bandwidth of 1.544 Mbits/second (×5 Gbits/hour).
Encrypting the set of values is trivially parallelizable in all three protocols. We assume that we have P processors that we can utilize in parallel: we will use a default value of P=10.
6.2.1 Selective Document Sharing
Recall that we have two databases D R and D S , where each database contains a set of documents, and a document consists of a set of significant words. We wish to find all pairs of documents D R C D R and D S C D S such that, for some similarity function f and threshold τ, f(|d R d S |, |d R |, |d S |)>. For example, f could be |d R
d S |/(|d R |+|d S |).
Implementation R and S execute the intersection size protocol for each pair of documents d R ε D R and d S εD S to get |d R d S |, |d R | and |d S |; they then compute the similarity function f.
For S, in addition to the number of documents |D S |, this protocol also reveals to R for each document d R εD R , which documents in D S matched d R , and the size of |d R d S | for each document d S εD S .
Cost Analysis For a given pair of documents d R and d S , the computation time is (|d R |+|d S |)2C e , and the data transferred is (|d R |+2|d S |)k bits. Thus the total cost is:
Computation: |D R ∥D S |(|d R |+|d S |) 2C e
Communication: |D R ∥D S |(|d R |+2|d S |)k
If |D R |=10 documents, D S =100 documents, and |d R |=|d S |=1000 words, the computation time will be 4×10 6 C e /P≈2 hours. The data transferred will be 3×10 6 k≈3 Gbits≈35 minutes.
6.2.2 Medical Research
Recall that we wish to get the answer to the query
select pattern, reaction, count(*)
from T R , T S
where T R .id=T S .id and T S .drug=true
group by T R .pattern, T S .reaction
where T R and T S are tables in two different enterprises.
Implementation FIG. 2 shows the implementation algorithm. We use a slightly modified version of the intersection size protocol where Z R and Zs are sent to T, the researcher, instead of to S and R. Note that whenever we have, say, (V R −V R ′) inside IntersectionSize, the set difference is computed locally, and the result is the input to the protocol.
Cost Analysis The combined cost of the four intersections is 2(|V R |+|V S |) 2C e , and the data transferred is 2(|V R |+|V S |) 2 k bits. If |V R |=|V S |=1 million, the total computation time will be 8×10 6 C e /P≈4 hours. The total communication time will be 8×10 6 k 1 8 Gbits≈1.5 hours.
A general purpose computer is programmed according to the inventive steps herein. The invention can also be embodied as an article of manufacture—a machine component—that is used by a digital processing apparatus to execute the present logic. This invention is realized in a critical machine component that causes a digital processing apparatus to perform the inventive method steps herein. The invention may be embodied by a computer program that is executed by a processor within a computer as a series of computer-executable instructions. These instructions may reside, for example, in RAM of a computer or on a hard drive or optical drive of the computer, or the instructions may be stored on a DASD array, magnetic tape, electronic read-only memory, or other appropriate data storage device.
While the particular scheme for INFORMATION INTEGRATION ACROSS AUTONOMOUS ENTERPRISES as herein shown and described in detail is fully capable of attaining the above-described objects of the invention, it is to be understood that it is the presently preferred embodiment of the present invention and is thus representative of the subject matter which is broadly contemplated by the present invention, that the scope of the present invention fully encompasses other embodiments which may become obvious to those skilled in the art, and that the scope of the present invention is accordingly to be limited by nothing other than the appended claims, in which reference to an element in the singular is not intended to mean “one and only one” unless explicitly so stated, but rather “one or more”. All structural and functional equivalents to the elements of the above-described preferred embodiment that are known or later come to be known to those of ordinary skill in the art are expressly incorporated herein by reference and are intended to be encompassed by the present claims. Moreover, it is not necessary for a device or method to address each and every problem sought to be solved by the present invention, for it to be encompassed by the present claims. Furthermore, no element, component, or method step in the present disclosure is intended to be dedicated to the public regardless of whether the element, component, or method step is explicitly recited in the claims. No claim element herein is to be construed under the provisions of 35 U.S.C. 112, sixth paragraph, unless the element is expressly recited using the phrase “means for”.