can recursive decryption reduce dmca complaints and help keep streaming files available?
with recursive decryption previously decrypted value is used as key for next decrypt iteration:
let decryptKey = hash1
function decryptNextHash(){
const hashEnc = hashesEnc.shift()
x = decrypt(hashEnc, decryptKey)
}
it is not possible to decrypt third part before decrypting second part. to decrypt tenth part, one needs to decrypt 8 parts before that.
now if we make descryption so challenging, that for example decrypting 1 minute of video stream takes half minute of cpu time, it massively reduces number of people decrypting these blobs just to complain and try to take them down.