Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/logotip4ik/paket
Encryptor that will eat you and your computer...
https://github.com/logotip4ik/paket
Last synced: 2 days ago
JSON representation
Encryptor that will eat you and your computer...
- Host: GitHub
- URL: https://github.com/logotip4ik/paket
- Owner: logotip4ik
- License: gpl-3.0
- Created: 2024-05-11T18:17:07.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-06-08T09:29:23.000Z (5 months ago)
- Last Synced: 2024-06-08T12:07:45.466Z (5 months ago)
- Language: C++
- Size: 67.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Paket
Encrypt and decrypt folder and files. Only one file as output. It will eat everything, your computer
and even you...## Repo
- [`core`](./core) (wip) C++ library to encrypt and decrypt, serialize and deserialize files and
folders. This should be used by future frontend (native app) build with nim ?- [`frontend`](./frontend) (wip) C++ native gui app to interact with Paket core lib. This allows
user to encrypt and decrypt files and folders via easy interface. Enter a master key, drag and
drop folder or file and that's it, your items will be encrypted and stored in separate file
with extension `.pkt`This is my course project, so don't judge too strictly
## How to...
### Run
1. Firstly you need to build the core in `lib` mode. This can be done with:
```bash
cd ./core
make lib
```you can also build core in release mode by prefixing the `make lib` with `release` (`make release-lib`)
2. Then, you need to build the frontend part with:
```bash
cd ./frontend
make
```This command also has `release` mode `make release`, which will use `release` lib output of core
3. Now you can launch the gui with `./debug/paket` or `./release/paket`. (i haven't yet checked out
how to compile the frontend so that you can just click on it and open the app...)## Todo:
- [ ] app icon
- [x] multithreading
- [x] put `isFolder` flag into `attrs`