I want to upload huge files >100Mb with FirebaseStorage lib, but I would also want to encrypt the file before uploading it.
I could encrypt file before uploading it, but there might not be enough memory available for the bigger encrypted files.
Is there any way to do this without creating another encrypted file locally before uploading?
Can I somehow use CipherOutputStream and CipherInputStream for this?
I could encrypt file before uploading it, but there might not be enough memory available for the bigger encrypted files.
Is there any way to do this without creating another encrypted file locally before uploading?
Can I somehow use CipherOutputStream and CipherInputStream for this?