You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is my understanding that we can only save files with EncryptedFileField whose content fits in memory and that this limitation comes from your Cryptographer being based on pyca/cryptography's Fernet.
Is there any plan to support larger files and supports chunked files and moving existing FS files like Django's FileField does?
I imagine that it would be possible by going into pyca/cryptography's "Hazardous Layer".
Thank you very much.
The text was updated successfully, but these errors were encountered:
That's definitely a limitation with the current implementation. However the time I have available for work on this library is limited, so it's not something I'm going to do in the near future. However, I'm always happy to field pull requests for something like this -- just please make sure you submit patches with tests :-)
Cool beans! If it helps at all, here's some code I wrote for another project for use in hashing large files. I don't know if the methodology would be the same, but it may be worth a look.
Hi @danielquinn
It is my understanding that we can only save files with EncryptedFileField whose content fits in memory and that this limitation comes from your Cryptographer being based on pyca/cryptography's Fernet.
Is there any plan to support larger files and supports chunked files and moving existing FS files like Django's FileField does?
I imagine that it would be possible by going into pyca/cryptography's "Hazardous Layer".
Thank you very much.
The text was updated successfully, but these errors were encountered: