1
votes

Is there any way to encrypt a file before, in the server side, before it is uploaded in the blobstore? This is apparently not possible via the upload handlers which are invoked after the actual upload. https://cloud.google.com/appengine/docs/python/blobstore/

1

1 Answers

0
votes

I do not see a way for the file to be encrypted before it's uploaded, however, have you tried manipulating it once it has been uploaded and then reuploading, deleting the first file and using the original key for the newest uploaded blob?

Also take a look at Nicks comment - How to manipulate files in google app engine datastore