Skip to content

SCI is a tool to encrypt your data before uploading to cloud drives. SCI focuses on both data security and data recoverability.

License

Notifications You must be signed in to change notification settings

gustaavv/SecureCloudInspector

Repository files navigation

icon

SecureCloudInspector

SCI is a tool to encrypt your data before uploading to cloud drives, focusing on both data security and data recoverability.

latest release latest commit license

Introduction

Encrypting your data before uploading to cloud drives should be a common practice. However, managing this process is often tedious. Therefore, SecureCloudInspector (SCI) comes to help you.

Unlike other encryption tools, SCI focuses on both data security and data recoverability when it comes to cloud storage.

SCI offers both CLI (SCI-CLI) and GUI (SCI-Desktop).

Brief Overview of Encryption

SCI encrypts your data at folder level. Let's call the folder you want to encrypt as source folder. Then, choose an encrypted folder, where the encrypted data is located. Now, users can set the encrypted folder for sync by cloud drive clients. The encrypting process is fully managed by SCI.

flowchart LR
    subgraph local filesystem
        A[source folder] -- SCI --> B[encrypted folder]
    end
    B <-- sync --> C[cloud drive]
Loading

The decryption process is alike. After you download the encrypted folder, SCI decrypts your data.

flowchart LR
    C[cloud drive] -- download --> B
    subgraph "local filesystem (can be another PC)"
        B[encrypted folder] -- SCI --> A[decrypted folder]
    end
Loading

Quick Links