Skip to content

Improve User Privacy with Differential Privacy Techniques #5

@eonist

Description

@eonist

Suggestion: Implement differential privacy methods to protect user data when collecting analytics or sharing data.
Example:
Add noise to data before sharing:

func privatizeData(_ value: Double) -> Double {
    let noise = generateLaplaceNoise(epsilon: epsilon)
    return value + noise
}

A use case could be privatising usage count.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions