Skip to content

Processing sensitive data #30

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 60 additions & 0 deletions docs/guides/guide-info/sensitive_data.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
# Processing Sensitive Data

Processing sensitive human data is fundamental to biomedical research, enabling breakthroughs in disease understanding, biomarker detection and treatment development.
Rapid and secure access to such data accelerates research, but also introduces significant responsibilities for data protection and privacy.
Cloud-based services are increasingly used in biomedical research to connect researchers, data, and tools throughout the data lifecycle.
This page summarizes scenarios and requirements for handling sensitive data within the ELIXIR-on-Cloud framework.

## Legal Frameworks

Sensitive data processing in research is governed by several legal frameworks, most notably the General Data Protection Regulation (GDPR) and the European Health Data Space (EHDS):

* **GDPR**: Allows the use of sensitive personal data for research when specific safeguards are in place. Processing is permitted in the public interest, provided measures such as data minimization, pseudonymization, and strict access controls are implemented. Explicit informed consent is often required, and a Data Protection Impact Assessment (DPIA) is strongly recommended.
* **EHDS**: Builds on GDPR by establishing a unified framework for secure sharing and secondary use of electronic health data across the EU. Under EHDS, sensitive health data (e.g., genetic or clinical records) can be reused for research, innovation, and policy-making if anonymized or pseudonymized and accessed through secure processing environments (SPEs).

## Environments

* A Trusted Execution Environment (TEE) is a secure and isolated area within a computer system or processor that ensures the confidentiality and integrity of code and data during execution. It aims to protect sensitive computations and data from potential threats, such as malware or unauthorized access.
* A Secure Processing Environment (SPE) is a controlled environment designed to facilitate secure data processing and analysis while maintaining confidentiality, integrity, and privacy. It focuses on secure processing techniques, often including encryption, secure computation, or secure enclaves, to protect data during computation.
* A Trusted Research Environment (TRE) is a secure and controlled environment specifically tailored for research purposes, providing secure data access, analysis, collaboration, and compliance with legal and ethical requirements. TREs emphasize privacy preservation, data governance, collaboration, and knowledge generation while protecting sensitive data.

### Similarities

* **Isolation**: Operates separately from the main platform it runs on.
* **Security**: Provides a secure environment for computations and data storage, including cryptographic key management and protection against malware.
* **Integrity**: Ensures the integrity of data and code within the environment.
* **Confidentiality**: Maintains confidentiality of sensitive information if the environment is compromised.
* **Controlled Access and Authentication**: Authenticates code and data before execution to ensure only trusted and verified code runs.
* **Collaboration and Analysis**: There is an offer of tools and infrastructure that enable researchers to perform analysis and collaborate within a secure environment. This allows for sharing and combining datasets while maintaining data privacy.

### Differences

* **Focus**:
* TEE: Secures startup, code and data during execution.
* SPE: Ensures secure data processing and computation.
* TRE: Provides a comprehensive and secure environment for research activities, including data access and compliance.
* **Data Handling**:
* TEE: Focuses on securing the execution of code and data.
* SPE: Involves secure data processing and temporary storage for processing purposes.
* TRE: Covers secure data storage, access controls, and privacy-preserving methods.
* **Application Context**:
* TEE: Used in secure mobile device environments and secure cloud computing.
* SPE: Applied in secure data analytics and cryptographic computations.
* TRE: Tailored for research involving sensitive datasets like healthcare research.

## Use Cases

Researchers may require access to sensitive data in different scenarios.
The four use cases are derived from the two dimensions of data storage and data processing.
Research data can be stored in a single location or in multiple locations and institutions.
We also distinguish between whether the data should be processed in the cloud or in the knowledge worker's own environment.

| | Local processing | Cloud processing |
| ------------------ | ------------------- | -------------------- |
| **Central data** | Data repository | Cloud platform |
| **Federated data** | Federated database | Federated processing |

* **Data repository**: Data is stored in a single database. Researchers request access, are authorized, and transfer encrypted data to their secure environment for analysis.
* **Federated database**: Data is distributed across multiple nodes. Metadata is accessible via APIs and a central portal. Researchers request access to datasets at individual nodes, which then provide data for transfer or processing.
* **Cloud platform**: Centralized sensitive data is hosted on a platform. Authorized users log in and analyze data directly within an SPE, using workflows or interactive tools.
* **Federated processing**: Sensitive data remains on separate nodes with restricted transfer. Analysis is performed via APIs in an SPE, often combining results from multiple sources. A special case of this is federated learning, where models are trained in several iterations and updated on different data sets.
7 changes: 7 additions & 0 deletions docs/guides/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# ELIXIR-on-Cloud documentation

The ELIXIR-on-Cloud project is an initiative from the ELIXIR Compute Platform.
Our goal is to support scientists across Europe in using cloud environments for their research activities.
We support the use of ELIXIR services as well as open-source software, and the project has close connections with various academic cloud providers.
One of our key focuses is developing and providing software that implements the specifications defined by the Global Alliance for Genomics and Health (GA4GH) for federated processing of workloads ([GA4GH Cloud Work Stream](https://www.ga4gh.org/work_stream/cloud/)).
This documentation here offers guidance and best practices on how to use the services, further develop our services, and deploy services within the ELIXIR-on-Cloud Framework.
3 changes: 3 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,9 @@ markdown_extensions:
nav:
- Home: "index.md"
- Guides:
- "guides/index.md"
- Information:
- "Sensitive Data": "guides/guide-info/sensitive_data.md"
- Users:
- "guides/guide-user/index.md"
- "User stories": "guides/guide-user/user_stories.md"
Expand Down