Android Question Encrypted file & FirebaseStorage

npsonic

Active Member
Licensed User
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?
 

npsonic

Active Member
Licensed User
Is there anyway to do it without creating temporary file?

Could I somehow read the file piece by piece and encrypt the pieces before uploading?
I could download and decrypt the pieces before merging pieces into one file.
 
Upvote 0
Top