原始场景:我把 1TB PT 站下的种子(明文)+4TB 的硬盘内容(包含前面的那 1TB ,不要问为什么)用 rclone AES 加密后(密文)一起备份到百度网盘

1 qq316107934 Jan 31, 2023 AES 不是 ECB 模式加密的话,已知明文攻击基本无效。 |
2 hcocoa Jan 31, 2023 道理我都懂,而且楼上说的没错,但是多少种子加起来有 1TB |
3 tuwulin365 Jan 31, 2023 谁会那么费力解密你的种子啊[二哈] |
4 edis0n0 OP |
5 MrKrabs Jan 31, 2023 百度盘不用 rar+恢复记录,不怕文件损坏啊 |
7 hcocoa Jan 31, 2023 |
8 parametrix Jan 31, 2023 首先,rclone crypt 对文件内容是 chunk and XSalsa20-Poly1305 ,文件名是 AES-EME ,配置文件中的密钥是 AES-CTR 。 第二,按照 rclone 的文档,每个 chunk: “This uses a 32 byte (256 bit key) key derived from the user password.” 不清楚密钥是否复用,但即便是复用的情况下,(key,nonce) 对仍是安全(不会复用)的因为: "The initial nonce is generated from the operating systems crypto strong random number generator. The nonce is incremented for each chunk read making sure each nonce is unique for each block written. The chance of a nonce being re-used is minuscule. If you wrote an exabyte of data (10 bytes) you would have a probability of approximately 2×10 of re-using a nonce." 几 PB 而已,对于现代加密算法洒洒水啦~ |