Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/werdl/safile
A distributed server to access mission critical files. Cryptographically secure
https://github.com/werdl/safile
encryption fileserver security server
Last synced: about 7 hours ago
JSON representation
A distributed server to access mission critical files. Cryptographically secure
- Host: GitHub
- URL: https://github.com/werdl/safile
- Owner: werdl
- Created: 2023-06-28T15:36:53.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-09T13:10:27.000Z (about 1 year ago)
- Last Synced: 2023-10-09T14:30:43.025Z (about 1 year ago)
- Topics: encryption, fileserver, security, server
- Language: Python
- Homepage:
- Size: 39.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WIP
## Safile
### SAfe FILEs- A distributed server to access mission critical files. Cryptographically secure
- How does it work?
```mermaid
flowchart TD
B[Setup]-->C;
C[C: Initial Ping];
D[S: Server RSA Public Key];
C-->D;
E[C: Encrypted Password];
D-->E;
F[CS: Handshake];
E-->F;
G[C: Client RSA public key];
F-->G;
H[S: Fernet key];
G-->H;
I[CS: Handshake];
H-->I;A[Normal comms];
L[C: Prompt];
J[C: Encoded, pickled data];
A-->L-->J;
K[S: Encrypted server response];
J-->K;
K-->L;
```