Author: Christina Ilvento The latest version of this code can be found at https://github.com/cilvento/b2dp. This repository is for archival purposes only.
Abstract
Despite excellent theoretical support, Differential Privacy (DP) can still be a challenge to implement in practice. In part, this challenge is due to the very real concerns associated with converting arbitrary or infinite-precision theoretical mechanisms to the often messy realities of floating point or fixed-precision. Beginning with the troubling result of Mironov demonstrating the security issues of using floating point for implementing the Laplace mechanism, there have been many reasonable concerns raised on the vulnerabilities of real-world implementations of DP.
In this work, we examine the practicalities of implementing the exponential mechanism of McSherry and Talwar. We demonstrate that naive or malicious implementations can result in catastrophic privacy failures. To address these problems, we show that the mechanism can be implemented exactly for a rich set of values of the privacy parameter epsilon and utility functions with limited practical overhead in running time and minimal code complexity.
How do we achieve this result? We employ a simple trick of switching from base e to base 2, allowing us to perform precise base 2 arithmetic. A short, precise expression is always available for epsilon, and the only approximation error we incur is the conversion of the base-2 privacy parameter back to base e for reporting purposes. The core base e arithmetic of the mechanism can be simply and efficiently implemented using open-source high precision floating point libraries. Furthermore, the exact nature of the implementation lends itself to simple monitoring of correctness and proofs of privacy.
- Demo and project overview: Jupyter notebook
python/demo.ipynb
(rendered as markdown) - Figures:
figures/
- Crate overview:
rust/b2dp/src/lib.rs
contains example usage and helpful re-exports. - Base-2 exponential mechanism: see
rust/b2dp/src/mechanisms/exponential.rs
for mechanism logic,rust/b2dp/utilities/exactarithmetic.rs
for normalized sampling and exact arithmetic logic andrust/b2dp/src/utilities/params.rs
for base-e to base-2 parameter conversions. - Naive mechanism:
rust/b2dp/src/mechanisms/exponential.rs
- Benchmarks:
rust/b2dp/benches/
- Naive implementation of the exponential mechanism: see
python/naive.py
- Base-2 implementation of the exponential mechanism: see
python/expmech.py
- Timing tests:
python/timing_tests.py
- Accuracy bounds (randomized rounding):
python/accuracy_comparison.py
The timing benchmarks presented in the paper are generated from a combination of the Rust Criterion
benchmarks in rust/b2dp/src/benchmarks/
and the custom timing script in python/timing_tests.py
. To run the Rust benchmarks,
cd rust/b2dp
cargo bench
The benchmark results can then be found in the rust/b2dp/target/Criterion
directory.
For Python,
python3 python/timing_tests.py > output.csv