QUOTE(Waitugreat @ Jul 2 2025, 13:47)

I'm too scared that something happens and the files become corrupt or unrecoverable.
You are absolutely right to to be scared, because it's the feature of a good cryptographic function to be able to decrypt ONLY byte-to-byte identical output. Physical damage is a bane of encrypted storage, along with forgetting the decryption key. In fact encrypting the data and throwing the key away is a way more efficient way to get rid of it asap than any "true" deletion technique.
QUOTE(Daydrinking @ Aug 6 2025, 15:49)

I once realised that if I got flattened by a bus, my next of kin would inherit my PC with all my files in plain view. I didn't want to burden a grieving family member with the cursed knowledge of what kind of porn I liked, so I moved everything I wouldn't want them to see onto an encrypted partition.
Well if you are dead it doesn't really matter what your kin think about you, does it? If your porn stash is THAT of a damning evidence then you are unlikely to believe into immortal souls and life after death in the first place. Also pretty rich assumption the next of kin isn't going to be even more of a braindead gooner than you at the same age.
There is no use for encrypting large amount of data because it incurs INSANE overhead for read/write operations due to any cryptographic algo of worth being synchronous, single-threaded and having at least O(n) time complexity. It kinda sorta works for HTTPS (aka TLS) because it operates on very small streamable chunks of data so O(n) time complexity is negligible for the purpose of message transport.
If you really want to dabble into data encryption, first you have to separate your personal data from public data.
Personal data meaning anything directly related to you, i.e. various documents, login credentials and browser profiles. These are things which you have to make at least infrequent backups of on portable storages but also it will be pretty bad if someone else gets a hold of this data. So a perfect usecase for data encryption. Personal data tend to be quite compact in size but very rich in content (for a reference the 100gb doujinshi.org dump flying around has only ~100mb of actual database dump, the rest are just preview images), so managing backups of it can be as easy as just chucking EVERYTHING into a single archive, encrypting and copying into at least 2 pretty small flash drives. The biggest encryption bang for the buck and is pretty close to the use by federal agencies but without all the problems related to handling someone's else confidential data.
Encrypting media is a lost cause though since you'll have to spend a lot more on managing storage (both upfront and maintenance) and it gets pretty much impossible to do without being vendor-locked, which brings its own set of problems.
As far as veracrypt concerned, if you weren't shown and told to SECURELY save at least the decryption key, then it's 100% certified snake oil.