Differential privacy

Methods of safely sharing general data
An informal definition of differential privacy

Differential privacy (DP) is a mathematically rigorous framework for releasing statistical information about datasets while protecting the privacy of individual data subjects. It enables a data holder to share aggregate patterns of the group while limiting information that is leaked about specific individuals.[1][2] This is done by injecting carefully calibrated noise into statistical computations such that the utility of the statistic is preserved while provably limiting what can be inferred about any individual in the dataset.

Another way to describe differential privacy is as a constraint on the algorithms used to publish aggregate information about a statistical database which limits the disclosure of private information of records in the database. For example, differentially private algorithms are used by some government agencies to publish demographic information or other statistical aggregates while ensuring confidentiality of survey responses, and by companies to collect information about user behavior while controlling what is visible even to internal analysts.

Roughly, an algorithm is differentially private if an observer seeing its output cannot tell whether a particular individual's information was used in the computation. Differential privacy is often discussed in the context of identifying individuals whose information may be in a database. Although it does not directly refer to identification and reidentification attacks, differentially private algorithms provably resist such attacks.[3]

Historical background

Official statistics organizations are charged with collecting information from individuals or establishments, and publishing aggregate data to serve the public interest. For example, the 1790 United States Census collected information about individuals living in the United States and published tabulations based on sex, age, race, and condition of servitude.[4] Census records were originally posted, but starting with the 1840 Census they were collected under a promise of confidentiality that the information provided will be used for statistical purposes, and that the publications will not produce information that can be traced back to a specific individual or establishment.

To accomplish the goal of confidentiality, statistical organizations have long suppressed information in their publications. For example, in a table presenting the sales of each business in a town grouped by business category, a cell that has information from only one company might be suppressed, in order to maintain the confidentiality of that company's specific sales.

The adoption of electronic information processing systems by statistical agencies in the 1950s and 1960s dramatically increased the number of tables that a statistical organization could produce and, in so doing, significantly increased the potential for an improper disclosure of confidential information. For example, if a business that had its sales numbers suppressed also had those numbers appear in the total sales of a region, then it might be possible to determine the suppressed value by subtracting the other sales from that total. But there might also be combinations of additions and subtractions that might cause the private information to be revealed. The number of combinations that needed to be checked increases exponentially with the number of publications, and it is potentially unbounded if data users are able to make queries of the statistical database using an interactive query system.

ε-differential privacy

A formal definition of ε-differential privacy. D 1 {\displaystyle D_{1}} is a dataset without the private data, and D 2 {\displaystyle D_{2}} is one with it. This is "pure ε-differential privacy", meaning δ=0.

The 2006 Cynthia Dwork, Frank McSherry, Kobbi Nissim, and Adam D. Smith article[3] introduced the concept of ε-differential privacy, a mathematical definition for the privacy loss associated with any data release drawn from a statistical database.[5] (Here, the term statistical database means a set of data that are collected under the pledge of confidentiality for the purpose of producing statistics that, by their production, do not compromise the privacy of those individuals who provided the data.)

The definition of ε-differential privacy requires that a change to one entry in a database only creates a small change in the probability distribution of the outputs of measurements, as seen by the by the attacker.[3] The intuition for the definition of ε-differential privacy is that a person's privacy cannot be compromised by a statistical release if their data are not in the database.[6] In differential privacy, each individual is given roughly the same privacy that would result from having their data removed.[6] That is, the statistical functions run on the database should be substantially affected by the removal, addition, or change of any individual in the data.[6]

How much any individual contributes to the result of a database query depends in part on how many people's data are involved in the query. If the database contains data from a single person, that person's data contributes 100%. If the database contains data from a hundred people, each person's data contributes just 1%. The key insight of differential privacy is that as the query is made on the data of fewer and fewer people, more noise needs to be added to the query result to produce the same amount of privacy. Hence the name of the 2006 paper, "Calibrating noise to sensitivity in private data analysis."[citation needed]

Definition

Let ε be a positive real number and A {\displaystyle {\mathcal {A}}} be a randomized algorithm that takes a dataset as input (representing the actions of the trusted party holding the data). Let im   A {\displaystyle {\textrm {im}}\ {\mathcal {A}}} denote the image of A {\displaystyle {\mathcal {A}}} .

The algorithm A {\displaystyle {\mathcal {A}}} is said to provide (ε, δ)-differential privacy if, for all datasets D 1 {\displaystyle D_{1}} and D 2 {\displaystyle D_{2}} that differ on a single element (i.e., the data of one person), and all subsets S {\displaystyle S} of im   A {\displaystyle {\textrm {im}}\ {\mathcal {A}}} :

Pr [ A ( D 1 ) S ] e ε Pr [ A ( D 2 ) S ] + δ . {\displaystyle \Pr[{\mathcal {A}}(D_{1})\in S]\leq e^{\varepsilon }\Pr[{\mathcal {A}}(D_{2})\in S]+\delta .}

where the probability is taken over the randomness used by the algorithm.[7] This definition is sometimes called "approximate differential privacy", with "pure differential privacy" being a special case when δ = 0 {\displaystyle \delta =0} . In the latter case, the algorithm is commonly said to satisfy ε-differential privacy (i.e., omitting δ = 0 {\displaystyle \delta =0} ).[citation needed]

Differential privacy offers strong and robust guarantees that facilitate modular design and analysis of differentially private mechanisms due to its composability, robustness to post-processing, and graceful degradation in the presence of correlated data.[citation needed]

Example

According to this definition, differential privacy is a condition on the release mechanism (i.e., the trusted party releasing information about the dataset) and not on the dataset itself. Intuitively, this means that for any two datasets that are similar, a given differentially private algorithm will behave approximately the same on both datasets. The definition gives a strong guarantee that presence or absence of an individual will not affect the final output of the algorithm significantly.

For example, assume we have a database of medical records D 1 {\displaystyle D_{1}} where each record is a pair (Name, X), where X {\displaystyle X} is a Boolean denoting whether a person has diabetes or not. For example:

Name Ross Monica Joey Phoebe Chandler Rachel
Has Diabetes (X) 1 1 0 0 1 0

Now suppose a malicious user (often termed an adversary) wants to find whether Chandler has diabetes or not. Suppose he also knows in which row of the database Chandler resides. Now suppose the adversary is only allowed to use a particular form of query Q i {\displaystyle Q_{i}} that returns the partial sum of the first i {\displaystyle i} rows of column X {\displaystyle X} in the database. In order to find Chandler's diabetes status the adversary executes Q 5 ( D 1 ) {\displaystyle Q_{5}(D_{1})} and Q 4 ( D 1 ) {\displaystyle Q_{4}(D_{1})} , then computes their difference. In this example, Q 5 ( D 1 ) = 3 {\displaystyle Q_{5}(D_{1})=3} and Q 4 ( D 1 ) = 2 {\displaystyle Q_{4}(D_{1})=2} , so their difference is 1. This indicates that the "Has Diabetes" field in Chandler's row must be 1. This example highlights how individual information can be compromised even without explicitly querying for the information of a specific individual.

Continuing this example, if we construct D 2 {\displaystyle D_{2}} by replacing (Chandler, 1) with (Chandler, 0) then this malicious adversary will be able to distinguish D 2 {\displaystyle D_{2}} from D 1 {\displaystyle D_{1}} by computing Q 5 Q 4 {\displaystyle Q_{5}-Q_{4}} for each dataset. If the adversary were required to receive the values Q i {\displaystyle Q_{i}} via an ε {\displaystyle \varepsilon } -differentially private algorithm, for a sufficiently small ε {\displaystyle \varepsilon } , then he or she would be unable to distinguish between the two datasets.

Composability and robustness to post processing

Composability refers to the fact that the joint distribution of the outputs of (possibly adaptively chosen) differentially private mechanisms satisfies differential privacy.[3]

  • Sequential composition. If we query an ε-differential privacy mechanism t {\displaystyle t} times, and the randomization of the mechanism is independent for each query, then the result would be ε t {\displaystyle \varepsilon t} -differentially private. In the more general case, if there are n {\displaystyle n} independent mechanisms: M 1 , , M n {\displaystyle {\mathcal {M}}_{1},\dots ,{\mathcal {M}}_{n}} , whose privacy guarantees are ε 1 , , ε n {\displaystyle \varepsilon _{1},\dots ,\varepsilon _{n}} differential privacy, respectively, then any function g {\displaystyle g} of them: g ( M 1 , , M n ) {\displaystyle g({\mathcal {M}}_{1},\dots ,{\mathcal {M}}_{n})} is ( i = 1 n ε i ) {\displaystyle \left(\sum \limits _{i=1}^{n}\varepsilon _{i}\right)} -differentially private.[8]
  • Parallel composition. If the previous mechanisms are computed on disjoint subsets of the private database then the function g {\displaystyle g} would be ( max i ε i ) {\displaystyle (\max _{i}\varepsilon _{i})} -differentially private instead.[8]

The other important property for modular use of differential privacy is robustness to post processing. This is defined to mean that for any deterministic or randomized function F {\displaystyle F} defined over the image of the mechanism A {\displaystyle {\mathcal {A}}} , if A {\displaystyle {\mathcal {A}}} satisfies ε-differential privacy, so does F ( A ) {\displaystyle F({\mathcal {A}})} .[3]

The property of composition permits modular construction and analysis of differentially private mechanisms[3] and motivates the concept of the privacy loss budget.[citation needed] If all elements that access sensitive data of a complex mechanisms are separately differentially private, so will be their combination, followed by arbitrary post-processing.[3]

Group privacy

In general, ε-differential privacy is designed to protect the privacy between neighboring databases which differ only in one row. This means that no adversary with arbitrary auxiliary information can know if one particular participant submitted his information. However this is also extendable.[3] We may want to protect databases differing in c {\displaystyle c} rows, which amounts to an adversary with arbitrary auxiliary information knowing if c {\displaystyle c} particular participants submitted their information. This can be achieved because if c {\displaystyle c} items change, the probability dilation is bounded by exp ( ε c ) {\displaystyle \exp(\varepsilon c)} instead of exp ( ε ) {\displaystyle \exp(\varepsilon )} ,[9] i.e., for D1 and D2 differing on c {\displaystyle c} items: Pr [ A ( D 1 ) S ] exp ( ε c ) Pr [ A ( D 2 ) S ] {\displaystyle \Pr[{\mathcal {A}}(D_{1})\in S]\leq \exp(\varepsilon c)\cdot \Pr[{\mathcal {A}}(D_{2})\in S]\,\!} Thus setting ε instead to ε / c {\displaystyle \varepsilon /c} achieves the desired result (protection of c {\displaystyle c} items).[3] In other words, instead of having each item ε-differentially private protected, now every group of c {\displaystyle c} items is ε-differentially private protected (and each item is ( ε / c ) {\displaystyle (\varepsilon /c)} -differentially private protected).[3]

Hypothesis testing interpretation

One can think of differential privacy as bounding the error rates in a hypothesis test. Consider two hypotheses:

  • H 0 {\displaystyle H_{0}} : The individual's data is not in the dataset.
  • H 1 {\displaystyle H_{1}} : The individual's data is in the dataset.

Then, there are two error rates:

  • False Positive Rate (FPR): P FP = Pr [ Adversary guesses  H 1 H 0  is true ] . {\displaystyle P_{\text{FP}}=\Pr[{\text{Adversary guesses }}H_{1}\mid H_{0}{\text{ is true}}].}
  • False Negative Rate (FNR): P FN = Pr [ Adversary guesses  H 0 H 1  is true ] . {\displaystyle P_{\text{FN}}=\Pr[{\text{Adversary guesses }}H_{0}\mid H_{1}{\text{ is true}}].}

Ideal protection would imply that both error rates are equal, but for a fixed (ε, δ) setting, an attacker can achieve the following rates:[10]

  • { ( P fp , P FN ) P FP + e ε P FN 1 δ ,   e ε P FP + P FN 1 δ } {\displaystyle \{(P_{\text{fp}},P_{\text{FN}})\mid P_{\text{FP}}+e^{\varepsilon }P_{\text{FN}}\geq 1-\delta ,\ e^{\varepsilon }P_{\text{FP}}+P_{\text{FN}}\geq 1-\delta \}}

ε-differentially private mechanisms

Since differential privacy is a probabilistic concept, any differentially private mechanism is necessarily randomized. Some of these, like the Laplace mechanism, described below, rely on adding controlled noise to the function that we want to compute. Others, like the exponential mechanism[11] and posterior sampling[12] sample from a problem-dependent family of distributions instead.

An important definition with respect to ε-differentially private mechanisms is sensitivity.[3] Let d {\displaystyle d} be a positive integer, D {\displaystyle {\mathcal {D}}} be a collection of datasets, and f : D R d {\displaystyle f\colon {\mathcal {D}}\rightarrow \mathbb {R} ^{d}} be a function. One definition of the sensitivity of a function, denoted Δ f {\displaystyle \Delta f} , can be defined by:[3] Δ f = max f ( D 1 ) f ( D 2 ) 1 , {\displaystyle \Delta f=\max \lVert f(D_{1})-f(D_{2})\rVert _{1},} where the maximum is over all pairs of datasets D 1 {\displaystyle D_{1}} and D 2 {\displaystyle D_{2}} in D {\displaystyle {\mathcal {D}}} differing in at most one element and 1 {\displaystyle \lVert \cdot \rVert _{1}} denotes the L1 norm.[3] In the example of the medical database below, if we consider f {\displaystyle f} to be the function Q i {\displaystyle Q_{i}} , then the sensitivity of the function is one, since changing any one of the entries in the database causes the output of the function to change by either zero or one. This can be generalized to other metric spaces (measures of distance), and must be to make certain differentially private algorithms work, including adding noise from the Gaussian distribution (which requires the L2 norm) instead of the Laplace distribution.[3]

There are techniques (which are described below) using which we can create a differentially private algorithm for functions, with parameters that vary depending on their sensitivity.[3]

Laplace mechanism

Laplace mechanism offering .5-differential privacy for a function with sensitivity 1.

The Laplace mechanism adds Laplace noise (i.e. noise from the Laplace distribution, which can be expressed by probability density function noise ( y ) exp ( | y | / λ ) {\displaystyle {\text{noise}}(y)\propto \exp(-|y|/\lambda )\,\!} , which has mean zero and standard deviation 2 λ {\displaystyle {\sqrt {2}}\lambda \,\!} ). Now in our case we define the output function of A {\displaystyle {\mathcal {A}}\,\!} as a real valued function (called as the transcript output by A {\displaystyle {\mathcal {A}}\,\!} ) as T A ( x ) = f ( x ) + Y {\displaystyle {\mathcal {T}}_{\mathcal {A}}(x)=f(x)+Y\,\!} where Y Lap ( λ ) {\displaystyle Y\sim {\text{Lap}}(\lambda )\,\!\,\!} and f {\displaystyle f\,\!} is the original real valued query/function we planned to execute on the database. Now clearly T A ( x ) {\displaystyle {\mathcal {T}}_{\mathcal {A}}(x)\,\!} can be considered to be a continuous random variable, where

p d f ( T A , D 1 ( x ) = t ) p d f ( T A , D 2 ( x ) = t ) = noise ( t f ( D 1 ) ) noise ( t f ( D 2 ) ) {\displaystyle {\frac {\mathrm {pdf} ({\mathcal {T}}_{{\mathcal {A}},D_{1}}(x)=t)}{\mathrm {pdf} ({\mathcal {T}}_{{\mathcal {A}},D_{2}}(x)=t)}}={\frac {{\text{noise}}(t-f(D_{1}))}{{\text{noise}}(t-f(D_{2}))}}\,\!}

which is at most e | f ( D 1 ) f ( D 2 ) | λ e Δ ( f ) λ {\displaystyle e^{\frac {|f(D_{1})-f(D_{2})|}{\lambda }}\leq e^{\frac {\Delta (f)}{\lambda }}\,\!} . We can consider Δ ( f ) λ {\displaystyle {\frac {\Delta (f)}{\lambda }}\,\!} to be the privacy factor ε {\displaystyle \varepsilon \,\!} . Thus T {\displaystyle {\mathcal {T}}\,\!} follows a differentially private mechanism (as can be seen from the definition above). If we try to use this concept in our diabetes example then it follows from the above derived fact that in order to have A {\displaystyle {\mathcal {A}}\,\!} as the ε {\displaystyle \varepsilon \,\!} -differential private algorithm we need to have λ = 1 / ε {\displaystyle \lambda =1/\varepsilon \,\!} . Though we have used Laplace noise here, other forms of noise, such as the Gaussian Noise, can be employed, but they may require a slight relaxation of the definition of differential privacy.[9]

Randomized response

A simple example, especially developed in the social sciences,[13] is to ask a person to answer the question "Do you own the attribute A?", according to the following procedure:

  1. Toss a coin.
  2. If heads, then toss the coin again (ignoring the outcome), and answer the question honestly.
  3. If tails, then toss the coin again and answer "Yes" if heads, "No" if tails.

(The seemingly redundant extra toss in the first case is needed in situations where just the act of tossing a coin may be observed by others, even if the actual result stays hidden.) The confidentiality then arises from the refutability of the individual responses.

But, overall, these data with many responses are significant, since positive responses are given to a quarter by people who do not have the attribute A and three-quarters by people who actually possess it. Thus, if p is the true proportion of people with A, then we expect to obtain (1/4)(1-p) + (3/4)p = (1/4) + p/2 positive responses. Hence it is possible to estimate p.

In particular, if the attribute A is synonymous with illegal behavior, then answering "Yes" is not incriminating, insofar as the person has a probability of a "Yes" response, whatever it may be.

Although this example, inspired by randomized response, might be applicable to microdata (i.e., releasing datasets with each individual response), by definition differential privacy excludes microdata releases and is only applicable to queries (i.e., aggregating individual responses into one result) as this would violate the requirements, more specifically the plausible deniability that a subject participated or not.[14][15]

Stable transformations

A transformation T {\displaystyle T} is c {\displaystyle c} -stable if the Hamming distance between T ( A ) {\displaystyle T(A)} and T ( B ) {\displaystyle T(B)} is at most c {\displaystyle c} -times the Hamming distance between A {\displaystyle A} and B {\displaystyle B} for any two databases A , B {\displaystyle A,B} .[citation needed] If there is a mechanism M {\displaystyle M} that is ε {\displaystyle \varepsilon } -differentially private, then the composite mechanism M T {\displaystyle M\circ T} is ( ε × c ) {\displaystyle (\varepsilon \times c)} -differentially private.[8]

This could be generalized to group privacy, as the group size could be thought of as the Hamming distance h {\displaystyle h} between A {\displaystyle A} and B {\displaystyle B} (where A {\displaystyle A} contains the group and B {\displaystyle B} does not). In this case M T {\displaystyle M\circ T} is ( ε × c × h ) {\displaystyle (\varepsilon \times c\times h)} -differentially private.[citation needed]

Research

Early research leading to differential privacy

In 1977, Tore Dalenius formalized the mathematics of cell suppression.[16] Tore Dalenius was a Swedish statistician who contributed to statistical privacy through his 1977 paper that revealed a key point about statistical databases, which was that databases should not reveal information about an individual that is not otherwise accessible.[17] He also defined a typology for statistical disclosures.[5]

In 1979, Dorothy Denning, Peter J. Denning and Mayer D. Schwartz formalized the concept of a Tracker, an adversary that could learn the confidential contents of a statistical database by creating a series of targeted queries and remembering the results.[18] This and future research showed that privacy properties in a database could only be preserved by considering each new query in light of (possibly all) previous queries. This line of work is sometimes called query privacy, with the final result being that tracking the impact of a query on the privacy of individuals in the database was NP-hard.[citation needed]

21st century

In 2003, Kobbi Nissim and Irit Dinur demonstrated that it is impossible to publish arbitrary queries on a private statistical database without revealing some amount of private information, and that the entire information content of the database can be revealed by publishing the results of a surprisingly small number of random queries—far fewer than was implied by previous work.[19] The general phenomenon is known as the Fundamental Law of Information Recovery, and its key insight, namely that in the most general case, privacy cannot be protected without injecting some amount of noise, led to development of differential privacy.[citation needed]

In 2006, Cynthia Dwork, Frank McSherry, Kobbi Nissim and Adam D. Smith published an article[3] formalizing the amount of noise that needed to be added and proposing a generalized mechanism for doing so.[citation needed] This paper also created the first formal definition of differential privacy.[5] Their work was a co-recipient of the 2016 TCC Test-of-Time Award[20] and the 2017 Gödel Prize.[21]

Since then, subsequent research has shown that there are many ways to produce very accurate statistics from the database while still ensuring high levels of privacy.[1]

Adoption in real-world applications

To date there are over 12 real-world deployments of differential privacy, the most noteworthy being:

  • 2008: U.S. Census Bureau, for showing commuting patterns.[22]
  • 2014: Google's RAPPOR, for telemetry such as learning statistics about unwanted software hijacking users' settings.[23][24]
  • 2015: Google, for sharing historical traffic statistics.[25]
  • 2016: Apple iOS 10, for use in Intelligent personal assistant technology.[26]
  • 2017: Microsoft, for telemetry in Windows.[27]
  • 2020: Social Science One and Facebook, a 55 trillion cell dataset for researchers to learn about elections and democracy.[28][29]
  • 2021: The US Census Bureau uses differential privacy to release redistricting data from the 2020 Census.[30]

Public purpose considerations

There are several public purpose considerations regarding differential privacy that are important to consider, especially for policymakers and policy-focused audiences interested in the social opportunities and risks of the technology:[31]

  • Data utility and accuracy. The main concern with differential privacy is the trade-off between data utility and individual privacy. If the privacy loss parameter is set to favor utility, the privacy benefits are lowered (less “noise” is injected into the system); if the privacy loss parameter is set to favor heavy privacy, the accuracy and utility of the dataset are lowered (more “noise” is injected into the system). It is important for policymakers to consider the trade-offs posed by differential privacy in order to help set appropriate best practices and standards around the use of this privacy preserving practice, especially considering the diversity in organizational use cases. It is worth noting, though, that decreased accuracy and utility is a common issue among all statistical disclosure limitation methods and is not unique to differential privacy. What is unique, however, is how policymakers, researchers, and implementers can consider mitigating against the risks presented through this trade-off.
  • Data privacy and security. Differential privacy provides a quantified measure of privacy loss and an upper bound and allows curators to choose the explicit trade-off between privacy and accuracy. It is robust to still unknown privacy attacks. However, it encourages greater data sharing, which if done poorly, increases privacy risk. Differential privacy implies that privacy is protected, but this depends very much on the privacy loss parameter chosen and may instead lead to a false sense of security. Finally, though it is robust against unforeseen future privacy attacks, a countermeasure may be devised that we cannot predict.

Attacks in practice

Because differential privacy techniques are implemented on real computers, they are vulnerable to various attacks not possible to compensate for solely in the mathematics of the techniques themselves. In addition to standard defects of software artifacts that can be identified using testing or fuzzing, implementations of differentially private mechanisms may suffer from the following vulnerabilities:

  • Subtle algorithmic or analytical mistakes.[32][33]
  • Timing side-channel attacks.[34] In contrast with timing attacks against implementations of cryptographic algorithms that typically have low leakage rate and must be followed with non-trivial cryptanalysis, a timing channel may lead to a catastrophic compromise of a differentially private system, since a targeted attack can be used to exfiltrate the very bit that the system is designed to hide.
  • Leakage through floating-point arithmetic.[35] Differentially private algorithms are typically presented in the language of probability distributions, which most naturally lead to implementations using floating-point arithmetic. The abstraction of floating-point arithmetic is leaky, and without careful attention to details, a naive implementation may fail to provide differential privacy. (This is particularly the case for ε-differential privacy, which does not allow any probability of failure, even in the worst case.) For example, the support of a textbook sampler of the Laplace distribution (required, for instance, for the Laplace mechanism) is less than 80% of all double-precision floating point numbers; moreover, the support for distributions with different means are not identical. A single sample from a naïve implementation of the Laplace mechanism allows distinguishing between two adjacent datasets with probability more than 35%.
  • Timing channel through floating-point arithmetic.[36] Unlike operations over integers that are typically constant-time on modern CPUs, floating-point arithmetic exhibits significant input-dependent timing variability.[37] Handling of subnormals can be particularly slow, as much as by ×100 compared to the typical case.[38]

See also

References

  1. ^ a b Hilton, M; Cal (2012). "Differential Privacy: A Historical Survey". Semantic Scholar. S2CID 16861132. Retrieved 31 December 2023.
  2. ^ Dwork, Cynthia (2008-04-25). "Differential Privacy: A Survey of Results". In Agrawal, Manindra; Du, Dingzhu; Duan, Zhenhua; Li, Angsheng (eds.). Theory and Applications of Models of Computation. Lecture Notes in Computer Science. Vol. 4978. Springer Berlin Heidelberg. pp. 1–19. doi:10.1007/978-3-540-79228-4_1. ISBN 978-3-540-79227-7. S2CID 2887752.
  3. ^ a b c d e f g h i j k l m n o p Calibrating Noise to Sensitivity in Private Data Analysis by Cynthia Dwork, Frank McSherry, Kobbi Nissim, Adam Smith. In Theory of Cryptography Conference (TCC), Springer, 2006. doi:10.1007/11681878_14. The full version appears in Journal of Privacy and Confidentiality, 7 (3), 17-51. doi:10.29012/jpc.v7i3.405
  4. ^ "1790 Census Records".
  5. ^ a b c HILTON, MICHAEL. "Differential Privacy: A Historical Survey" (PDF). S2CID 16861132. Archived from the original (PDF) on 2017-03-01. {{cite journal}}: Cite journal requires |journal= (help)
  6. ^ a b c Dwork, Cynthia (2008). Agrawal, Manindra; Du, Dingzhu; Duan, Zhenhua; Li, Angsheng (eds.). "Differential Privacy: A Survey of Results". Theory and Applications of Models of Computation. Berlin, Heidelberg: Springer: 1–19. doi:10.1007/978-3-540-79228-4_1. ISBN 978-3-540-79228-4.
  7. ^ The Algorithmic Foundations of Differential Privacy by Cynthia Dwork and Aaron Roth. Foundations and Trends in Theoretical Computer Science. Vol. 9, no. 3–4, pp. 211‐407, Aug. 2014. doi:10.1561/0400000042
  8. ^ a b c Privacy integrated queries: an extensible platform for privacy-preserving data analysis by Frank D. McSherry. In Proceedings of the 35th SIGMOD International Conference on Management of Data (SIGMOD), 2009. doi:10.1145/1559845.1559850
  9. ^ a b Differential Privacy by Cynthia Dwork, International Colloquium on Automata, Languages and Programming (ICALP) 2006, p. 1–12. doi:10.1007/11787006_1
  10. ^ Kairouz, Peter, Sewoong Oh, and Pramod Viswanath. "The composition theorem for differential privacy." International conference on machine learning. PMLR, 2015.link
  11. ^ F.McSherry and K.Talwar. Mechasim Design via Differential Privacy. Proceedings of the 48th Annual Symposium of Foundations of Computer Science, 2007.
  12. ^ Christos Dimitrakakis, Blaine Nelson, Aikaterini Mitrokotsa, Benjamin Rubinstein. Robust and Private Bayesian Inference. Algorithmic Learning Theory 2014
  13. ^ Warner, S. L. (March 1965). "Randomised response: a survey technique for eliminating evasive answer bias". Journal of the American Statistical Association. 60 (309). Taylor & Francis: 63–69. doi:10.1080/01621459.1965.10480775. JSTOR 2283137. PMID 12261830. S2CID 35435339.
  14. ^ Dwork, Cynthia. "A firm foundation for private data analysis." Communications of the ACM 54.1 (2011): 86–95, supra note 19, page 91.
  15. ^ Bambauer, Jane, Krishnamurty Muralidhar, and Rathindra Sarathy. "Fool's gold: an illustrated critique of differential privacy." Vand. J. Ent. & Tech. L. 16 (2013): 701.
  16. ^ Tore Dalenius (1977). "Towards a methodology for statistical disclosure control". Statistik Tidskrift. 15.
  17. ^ Dwork, Cynthia (2006). Bugliesi, Michele; Preneel, Bart; Sassone, Vladimiro; Wegener, Ingo (eds.). "Differential Privacy". Automata, Languages and Programming. Lecture Notes in Computer Science. Berlin, Heidelberg: Springer: 1–12. doi:10.1007/11787006_1. ISBN 978-3-540-35908-1.
  18. ^ Dorothy E. Denning; Peter J. Denning; Mayer D. Schwartz (March 1979). "The Tracker: A Threat to Statistical Database Security". ACM Transactions on Database Systems. 4 (1): 76–96. doi:10.1145/320064.320069. S2CID 207655625.
  19. ^ Irit Dinur and Kobbi Nissim. 2003. Revealing information while preserving privacy. In Proceedings of the twenty-second ACM SIGMOD-SIGACT-SIGART symposium on Principles of database systems (PODS '03). ACM, New York, NY, USA, 202–210. doi:10.1145/773153.773173
  20. ^ "TCC Test-of-Time Award".
  21. ^ "2017 Gödel Prize".
  22. ^ Ashwin Machanavajjhala, Daniel Kifer, John M. Abowd, Johannes Gehrke, and Lars Vilhuber. "Privacy: Theory meets Practice on the Map". In Proceedings of the 24th International Conference on Data Engineering, ICDE) 2008.
  23. ^ Úlfar Erlingsson, Vasyl Pihur, Aleksandra Korolova. "RAPPOR: Randomized Aggregatable Privacy-Preserving Ordinal Response". In Proceedings of the 21st ACM Conference on Computer and Communications Security (CCS), 2014. doi:10.1145/2660267.2660348
  24. ^ google/rappor, GitHub, 2021-07-15
  25. ^ Tackling Urban Mobility with Technology by Andrew Eland. Google Policy Europe Blog, Nov 18, 2015.
  26. ^ "Apple – Press Info – Apple Previews iOS 10, the Biggest iOS Release Ever". Apple. Retrieved 20 June 2023.
  27. ^ Collecting telemetry data privately by Bolin Ding, Jana Kulkarni, Sergey Yekhanin. NIPS 2017.
  28. ^ Messing, Solomon; DeGregorio, Christina; Hillenbrand, Bennett; King, Gary; Mahanti, Saurav; Mukerjee, Zagreb; Nayak, Chaya; Persily, Nate; State, Bogdan (2020), Facebook Privacy-Protected Full URLs Data Set, Zagreb Mukerjee, Harvard Dataverse, doi:10.7910/dvn/tdoapg, retrieved 2023-02-08
  29. ^ Evans, Georgina; King, Gary (January 2023). "Statistically Valid Inferences from Differentially Private Data Releases, with Application to the Facebook URLs Dataset". Political Analysis. 31 (1): 1–21. doi:10.1017/pan.2022.1. ISSN 1047-1987. S2CID 211137209.
  30. ^ "Disclosure Avoidance for the 2020 Census: An Introduction". 2 November 2021.
  31. ^ "Technology Factsheet: Differential Privacy". Belfer Center for Science and International Affairs. Retrieved 2021-04-12.
  32. ^ McSherry, Frank (25 February 2018). "Uber's differential privacy .. probably isn't". GitHub.
  33. ^ Lyu, Min; Su, Dong; Li, Ninghui (1 February 2017). "Understanding the sparse vector technique for differential privacy". Proceedings of the VLDB Endowment. 10 (6): 637–648. arXiv:1603.01699. doi:10.14778/3055330.3055331. S2CID 5449336.
  34. ^ Haeberlen, Andreas; Pierce, Benjamin C.; Narayan, Arjun (2011). "Differential Privacy Under Fire". 20th USENIX Security Symposium.
  35. ^ Mironov, Ilya (October 2012). "On significance of the least significant bits for differential privacy". Proceedings of the 2012 ACM conference on Computer and communications security (PDF). ACM. pp. 650–661. doi:10.1145/2382196.2382264. ISBN 9781450316514. S2CID 3421585.
  36. ^ Andrysco, Marc; Kohlbrenner, David; Mowery, Keaton; Jhala, Ranjit; Lerner, Sorin; Shacham, Hovav (May 2015). "On Subnormal Floating Point and Abnormal Timing". 2015 IEEE Symposium on Security and Privacy. pp. 623–639. doi:10.1109/SP.2015.44. ISBN 978-1-4673-6949-7. S2CID 1903469.
  37. ^ Kohlbrenner, David; Shacham, Hovav (August 2017). "On the Effectiveness of Mitigations Against Floating-point Timing Channels". Proceedings of the 26th USENIX Conference on Security Symposium. USENIX Association: 69–81.
  38. ^ Dooley, Isaac; Kale, Laxmikant (September 2006). "Quantifying the interference caused by subnormal floating-point values" (PDF). Proceedings of the Workshop on Operating System Interference in High Performance Applications.

Further reading

Publications

  • Calibrating noise to sensitivity in private data analysis, Cynthia Dwork, Frank McSherry, Kobbi Nissim, and Adam Smith. 2006. In Proceedings of the Third conference on Theory of Cryptography (TCC'06). Springer-Verlag, Berlin, Heidelberg, 265–284. https://doi.org/10.1007/11681878_14 (This is the original publication of Differential Privacy, and not the eponymous article by Dwork that was published the same year.)
  • Differential Privacy: A Survey of Results by Cynthia Dwork, Microsoft Research, April 2008 (Presents what was discovered during the first two years of research on differential privacy.)
  • Differential Privacy: A Primer for a Non-Technical Audience, Alexandra Wood, Micah Altman, Aaron Bembenek, Mark Bun, Marco Gaboardi, et al, Vanderbilt Journal of Entertainment & Technology LawVanderbilt Journal of Entertainment, Volume 21, Issue 1, Fall 2018. (A good introductory document, but definitely *not* for non-technical audiences!)
  • Technology Factsheet: Differential Privacy by Raina Gandhi and Amritha Jayanti, Belfer Center for Science and International Affairs, Fall 2020
  • Differential Privacy and the 2020 US Census, MIT Case Studies in Social and Ethical Responsibilities of Computing, no. Winter 2022 (January). https://doi.org/10.21428/2c646de5.7ec6ab93.

Tutorials

  • A Practical Beginner's Guide To Differential Privacy by Christine Task, Purdue University, April 2012