Is it possible to read my encrypted bookmarks without Floccus if I have the encryption password ? #1149
-
Sorry if the answer is obvious but I am not a professional of encryption. Currently I use google drive to store my encrypted file containing my bookmarks. Imagine that one day, Floccus disappears and all the other similar apps also, and nobody, including myself, is able to recreate a fork of Floccus. But i still remember my encryption password. Would it be possible to decrypt my file ? Because, since the encryption protocol used (AES256 ?) is a widespread "protocol", I was thinking that some software existed that could work like this: I have an Aes256 encrypted file, I have a password, I put those two data into the software, and it gives me the unencrypted version of the file. Does it work like that ? thanks for learning me someting |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
To decrypt something, one needs to know:
If you know all that (and you do if you have floccus running on any browser, as it is open source), then you're in luck and you can decrypt your bookmarks. Maybe you could even use available tools in some cases (e.g. However, if not all of that information is known to you, and all versions of floccus have been lost, you can try to detect (e.g. on GNU/Linux systems, command While not impossible, that however would much more likely resemble amateur cracking attempts (or even more serious cryptoanalyses) than regular data recovery, and is extremely likely to be unsuccessful unless much knowledge and resources are thrown at the problem (which is unlikely to happen in real life). So I suggest looking into source right now - it is less than 100 lines. Just in case, if civilization ends and wipes all copies of floccus 😃 , you'd maybe at least remember the majority of variables. Or just download the source to several of your computers and put it in your backups. |
Beta Was this translation helpful? Give feedback.
To decrypt something, one needs to know:
AES
but its exact subvariant - is itCBC
, orGCM
, orSIV
, or...)256
is block size, some versions use initialization vector, etc.)sqlite
etc).If you know all that (and you do if you have floccus running on any browser, as it is open source), then you're in luck and you can decrypt your bookmarks. Maybe you could even use available tools in some cases (…