blob: e2197c06b5d8d9e3d62174a5c2701616ebb330c0 [file] [log] [blame] [view] [edit]
## Differential Privacy library in Java
This is the Java implementation of the differential privacy library. For general
details and key definitions, see the top-level documentation. This document
describes Java-specific aspects.
### How to Build
Build the Java differential privacy library and dependencies using
[bazelisk](https://github.com/google/differential-privacy?tab=readme-ov-file#how-to-build)
(*...* is a part of the command and not a placeholder):
```shell
cd java
bazelisk build ...
```
### How to Use
Usage of the Java Differential Privacy library is demonstrated in the
[codelab](https://github.com/google/differential-privacy/tree/main/examples/java).