SergioRibera / super_clipboard

Manage your clipboard history with a beautiful and simple interface
MIT License
25 stars 3 forks source link

Security of stored data #6

Open SergioRibera opened 1 year ago

SergioRibera commented 1 year ago

The data is currently saved in a binary but this is easily readable as you can see in the image

image

Therefore, it is necessary to add a feature that encrypts the saved data and decrypts it when loading it. This must have good performance since the writes to this file are recurring to ensure that all the data is preserved.

It's probably also good to make better code for the data saving and loading system.