diff --git a/ROADMAP.md b/ROADMAP.md index a735ee8..e93feb9 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -2,61 +2,61 @@ ### Draft tree for webapp -paccrypt-webapp/ -├── static/ -│ ├── audio/ -│ │ └── chomp.mp3 -│ ├── css/ -│ │ └── styles.css -│ ├── fonts/ -│ │ └── PressStart2P-Regular.ttf -│ ├── img/ -│ │ ├── Github_logo.png -│ │ ├── PacCrypt.png -│ │ ├── PacCrypt_W-Background.png -│ │ ├── PacCrypt_W-Backgroud_Name.png -│ │ ├── PacCrypt_W-Name.png -│ │ └── sitemap.png <-- **Change img** -│ └── js/ <-- **Pending changes** -│ ├── encryption.js -│ ├── fileops.js -│ ├── main.js -│ ├── pacman.js -│ └── ui.js -├── templates/ -│ ├── 403.html -│ ├── 404.html -│ ├── 500.html -│ ├── admin.html -│ ├── admin_login.html -│ ├── admin_settings.html -│ ├── admin_setup.html -│ ├── index.html -│ └── pickup.html -├── application_data/ <-- *New* -│ ├── scripts/ <-- *New* -│ │ ├── start_dev <-- *Moved* -│ │ ├── start_prod <-- *Moved* -│ │ ├── restart_dev <-- *New* -│ │ ├── restart_prod <-- *New* -│ │ └── stop <-- *New* -│ ├── settings.json <-- *Moved* -│ ├── requirements.txt <-- *Moved* -│ ├── admin_cred <-- **Generated once admin is setup** / *Moved* -│ └── admin_hash <-- **Generated once admin is setup** / *Moved* -├── paccrypt_algos/ <-- *New* -│ ├── aes_gcm.py <-- *New* -│ ├── aes_cbc.py <-- *New* -│ ├── xchacha.py <-- *New* -│ ├── rsa_hybrid.py <-- *New* -│ └── kyber_hybrid.py <-- *New* -├── pacshare/ <-- **Generated at time of first PacShare upload, location customizable** / *New* -│ ├── pdf/jpeg/etc.paccrypt <-- **Encrypted binary file** / *Moved* -│ └── meta.paccrypt <-- **Encrypted metadata** / *Moved* -├── README.md <-- **Needs Updated** -├── ROADMAP.md -├── LICENSE <-- *New* -└── app.py +\paccrypt-webapp/ +\├── static/ +\│ ├── audio/ +\│ │ └── chomp.mp3 +\│ ├── css/ +\│ │ └── styles.css +\│ ├── fonts/ +\│ │ └── PressStart2P-Regular.ttf +\│ ├── img/ +\│ │ ├── Github_logo.png +\│ │ ├── PacCrypt.png +\│ │ ├── PacCrypt_W-Background.png +\│ │ ├── PacCrypt_W-Backgroud_Name.png +\│ │ ├── PacCrypt_W-Name.png +\│ │ └── sitemap.png <-- **Change img** +\│ └── js/ <-- **Pending changes** +\│ ├── encryption.js +\│ ├── fileops.js +\│ ├── main.js +\│ ├── pacman.js +\│ └── ui.js +\├── templates/ +\│ ├── 403.html +\│ ├── 404.html +\│ ├── 500.html +\│ ├── admin.html +\│ ├── admin_login.html +\│ ├── admin_settings.html +\│ ├── admin_setup.html +\│ ├── index.html +\│ └── pickup.html +\├── application_data/ <-- *New* +\│ ├── scripts/ <-- *New* +\│ │ ├── start_dev <-- *Moved* +\│ │ ├── start_prod <-- *Moved* +\│ │ ├── restart_dev <-- *New* +\│ │ ├── restart_prod <-- *New* +\│ │ └── stop <-- *New* +\│ ├── settings.json <-- *Moved* +\│ ├── requirements.txt <-- *Moved* +\│ ├── admin_cred <-- **Generated once admin is setup** / *Moved* +\│ └── admin_hash <-- **Generated once admin is setup** / *Moved* +\├── paccrypt_algos/ <-- *New* +\│ ├── aes_gcm.py <-- *New* +\│ ├── aes_cbc.py <-- *New* +\│ ├── xchacha.py <-- *New* +\│ ├── rsa_hybrid.py <-- *New* +\│ └── kyber_hybrid.py <-- *New* +\├── pacshare/ <-- **Generated at time of first PacShare upload, location customizable** / *New* +\│ ├── pdf/jpeg/etc.paccrypt <-- **Encrypted binary file** / *Moved* +\│ └── meta.paccrypt <-- **Encrypted metadata** / *Moved* +\├── README.md <-- **Needs Updated** +\├── ROADMAP.md +\├── LICENSE <-- *New* +\└── app.py --- ### Phase 0