└── README.md /README.md: -------------------------------------------------------------------------------- 1 | # Condensed Local Differential Privacy (CLDP) 2 | 3 | Condensed LDP (CLDP) is a formal alternative to Local Differential Privacy (LDP). In CLDP, similar outputs are systematically favored to distant outputs using condensed probability when perturbing user data. This repository contains the implementations of our CLDP protocols proposed in: 4 | 5 | ``` 6 | Secure and utility-aware data collection with condensed local differential privacy. 7 | Gursoy, M. E., Tamersoy, A., Truex, S., Wei, W., & Liu, L. (2019). 8 | IEEE Transactions on Dependable and Secure Computing. 9 | ``` 10 | 11 | A pre-print version of the paper is [also available on arXiv](https://arxiv.org/pdf/1905.06361.pdf). 12 | 13 | ## Repository Status 14 | 15 | This repository is currently under construction. Eventually, it will contain implementations of the following protocols: 16 | 17 | - **Ordinal-CLDP** for collecting user data that stem from finite and discrete metric spaces. Examples include malware infection counts, letters and strings ordered by dictionary order, categorical domains with tree-structured domain taxonomy. 18 | - **Item-CLDP** for collecting user data that stem from non-ordinal discrete spaces. Examples include OS versions, merchant transactions, emojis, and so forth. 19 | - **Sequence-CLDP** for collecting user data that correspond to a *sequence of items*. Examples include computer log files, genomics (DNA sequences), web browsing histories, and location traces. 20 | 21 | We will be gradually cleaning and uploading the code for these protocols. Please check back frequently! 22 | 23 | ## Project Status 24 | 25 | There is ongoing work in our lab regarding LDP, CLDP, and privacy-preserving data analytics. The code in this repository is provided as is, without warranty or support. It is maintained by [M. Emre Gursoy](http://www.memregursoy.com). If you use our code, please cite: 26 | 27 | ``` 28 | @article{gursoy2019secure, 29 | title={Secure and utility-aware data collection with condensed local differential privacy}, 30 | author={Gursoy, Mehmet Emre and Tamersoy, Acar and Truex, Stacey and Wei, Wenqi and Liu, Ling}, 31 | journal={IEEE Transactions on Dependable and Secure Computing}, 32 | year={2019}, 33 | publisher={IEEE} 34 | } 35 | ``` 36 | --------------------------------------------------------------------------------