All Projects → ClearGDPR → Cleargdpr

ClearGDPR / Cleargdpr

Licence: lgpl-3.0
GDPR Compliance Solution

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Cleargdpr

Widgetkit
Compose native apps without a code using JSON and load them as NSBundle into another app dynamicly from local or remote locations.
Stars: ✭ 191 (-4.98%)
Mutual labels:  architecture
Papers
SlowMist Vulnerability Research Advisories
Stars: ✭ 197 (-1.99%)
Mutual labels:  blockchain
Manticore
Symbolic execution tool
Stars: ✭ 2,599 (+1193.03%)
Mutual labels:  blockchain
Ipfs Internals
IPFS 从入门到精通
Stars: ✭ 192 (-4.48%)
Mutual labels:  blockchain
Pyquarkchain
Python implementation of QuarkChain
Stars: ✭ 194 (-3.48%)
Mutual labels:  blockchain
Factomd
Factom Daemon
Stars: ✭ 197 (-1.99%)
Mutual labels:  blockchain
Arc
Arc is an operating system for DAOs.
Stars: ✭ 190 (-5.47%)
Mutual labels:  blockchain
Bsc
A Binance Smart Chain client based on the go-ethereum fork
Stars: ✭ 190 (-5.47%)
Mutual labels:  blockchain
Merit
Merit aims to be the world's most adopted digital currency.
Stars: ✭ 196 (-2.49%)
Mutual labels:  blockchain
Iavl
Merkleized IAVL+ Tree implementation in Go
Stars: ✭ 197 (-1.99%)
Mutual labels:  blockchain
Node
The core of Po.et
Stars: ✭ 192 (-4.48%)
Mutual labels:  blockchain
Blockchain Crypto Mpc
Protecting cryptographic signing keys and seed secrets with Multi-Party Computation.
Stars: ✭ 193 (-3.98%)
Mutual labels:  blockchain
Resources
This repo is a one stop destination to find resources for learning various domains. You can find the roadmap for any domain here.
Stars: ✭ 198 (-1.49%)
Mutual labels:  blockchain
Congress
Helping humanity evolve
Stars: ✭ 191 (-4.98%)
Mutual labels:  blockchain
Bitcoin On Nodejs
《Node.js区块链开发》,注:新版代码已开源!请star支持哦-^-:
Stars: ✭ 2,321 (+1054.73%)
Mutual labels:  blockchain
Insolar
Enterprise-ready blockchain platform
Stars: ✭ 192 (-4.48%)
Mutual labels:  blockchain
Gdprdialog
GDPR fragment dialog implementation
Stars: ✭ 197 (-1.99%)
Mutual labels:  gdpr
Golden Wallet React Native
Golden - Best Wallet Ever
Stars: ✭ 201 (+0%)
Mutual labels:  blockchain
Cleanarchitecture
CleanArchitecture Example
Stars: ✭ 199 (-1%)
Mutual labels:  architecture
Iov Core
Client library for secure key management and multi-blockchain communication
Stars: ✭ 198 (-1.49%)
Mutual labels:  blockchain

ClearGDPR Platform Build Status

Logo

Introduction

ClearGDPR is a backend framework that allows web applications to comply with the new General Data Protection Regulation - GDPR.

ClearGDPR focuses on data privacy, transparency, integrity and availability for the users of a web application, and applies Blockchain technology to achieve those at a high level.

ClearGDPR was built on top of Quorum, a Blockchain that extends Ethereum and is focused in privacy and transparency. In ClearGDPR, Blockchain technology is used as an immutable audit log.

ClearGDPR offers a front-end SDK and an HTTP API in order to allow your web application to manage personal user data according to the GDPR articles.

ClearGDPR can be implemented in 2 different ways:

  • ElementSDK - set of ReactJS component, recommended, simplest.
  • HTTP API - There's a Postman HTTP requests collection to facilitate the initial interaction with the HTTP API.

Finally, ClearGDPR is a containerized solution, applying Docker containers, images, services, volumes and networks.

Table of contents

Architecture

ClearGDPR Architecture

Project structure

project root
├─ admin                      # Admin UI to manage the controller
├─ api                        # Code for the ClearGDPR API implementation
├─ cg                         # Code for the ClearGDPR API implementation
├─ docker                     # Helpers for docker run, stop, start.
├─ frontend                   # demo front-end integrating ClearGDPR ElementSDK
├─ packages
  ├─ js-sdk                   # Code for the ClearGDPR JS SDK implementation
  └─ element-sdk              # Code for the ClearGDPR ElementSDK implementation
├─ quorum                     # Blockchain related docker images and helper tools
├─ travis                     # Scripts used on the CI server
├─ website                    # ClearGDPR public website

Requirements

  • NodeJS v7.6+
  • Yarn
  • Docker
  • Docker-Compose

Before proceeding, follow the installation guide to install all requirements.

Quick Start

The docker-compose.yml contains configuration for a reference development environment of one Data Controller and one Data Processor and all required dependencies.

Full Installation Setup

The wizard will setup all the dependencies and demo website for you. Please follow the command line prompt.

node setup.js

Once the setup is done, you will have access to:

Development Mode

Docker is used for each part of the project, you can run all of them in watch (with nodemon) and development mode:

docker/run

Please make sure you ran node setup.js before.

Integrations

Element SDK

Demo

Coming soon.

Installation

Coming soon.

Code Example

Coming soon.

HTTP API

Example

The API uses "Bearer Authentication", in which the users must bear a valid Jason Web Token - JWT, in order to access the HTTP API. The system considers 3 types of users:

  • subject. A user of your website/app who will store his personal data into the website/app.
  • manager. A management user who has admin access to the system in you company.
  • processor. A management user who has admin access to the system in a 3rd party data partner.

Here's an example HTTP request to list all the companies who are 3rd party data partners (a.k.a processors) with your company:

curl -X GET \
  <ClearGDPR_API_URL>/api/subject/processors \
  -H 'Authorization: Bearer <JWT>' \
  -H 'Cache-Control: no-cache' \
  -H 'Content-Type: application/json'

Documentation

Website

Soon.

Postman Collections

Further reading

Each part of the project has additional README documentation in its subfolder:

Troubleshooting

See the Troubleshooting guide

Roadmap

  • Development deploy
  • HTTP API support for the right to consent and right to be forgotten(complete erasure)
  • All events related to users data are written succesfully to the blockchain
  • Quorum smart contract that stores the state of processors and controllers
  • Processor run mode and controller run mode, with events propagated between nodes through the blockchain smart contract
  • Example UI with registration/consent and erasure abilities
  • Encryption of all personal data on CG nodes
  • Robust integration test suite of CG nodes for both processor and controller mode
  • Admin dashboard design + front-end code (configuration, subject & processor status)
  • Automataic Quick Start script
  • Interactive Quick Start wizard
  • Admin dashboard hooked up to controller state via the CG api
  • HTTP API support for the remaining GDPR article actions/rights
  • More granular controls of consent/revoking of data (ie. which data can be shared specifically)
  • End-2-End test suite of controller/processor interactions via blockchain
  • SDK for implementing ClearGDPR from your frontend
  • Evolving functionalities, upgradability and security in the smart contract
  • Stage/Production deploy
  • Usage of Quorum’s custom privateFor method to whitelist nodes that are privy to specific events
  • Complete documentation
  • Drop in wordpress plugin
  • Commercial middleware plugin(s)

License

This project is licensed under GNU LGPL LICENSE

Contributing

See Contributing

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].