<div dir="ltr">I like the Fernet recipe, but I'd like a better recipe for files. One that doesn't want the entire message at once (bad for big files) and that doesn't bloat with base64. Should I do it myself with "hazardous materials" (I might adapt the Fernet code) or will you maybe add such a recipe soon?<div><br></div><div>Something like this maybe:</div><div><br></div><div><div>f = SomethingLikeFernetButForFiles(key)</div><div>for block in f.encrypt(filename, blocksize):</div><div>    myhandling(block)</div><div><br></div><div>Or with a handler parameter:</div><div><br></div><div>f = SomethingLikeFernetButForFiles(key)</div><div>f.encrypt(filename, blocksize, myhandling)</div></div><div><br></div><div>Stefan</div></div>