Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Question: is there an example of storing images and encrypting it #54

Open
dinbtechit opened this issue Jul 26, 2019 · 1 comment
Open

Comments

@dinbtechit
Copy link

First of all great work. Huge respect. I owe you a big deal.

Well have a question though...

Is there an example of store an image/picture and encrypt it? I haven't been able to find any examples.

@dinbtechit dinbtechit changed the title Example of storing an image and encrypting it Question: is there an example of storing images and encrypting it Jul 26, 2019
@alextekartik
Copy link
Collaborator

Well sembast is not really designed for that:

  • binary blob must be json encoded somehow (base64 being a common solution) and decoded so it has some performance penalty
  • there is no encryption support in sembast itself (although there is an example using an external encryption algorithm).
  • If you use sembast codec to perform encryption, everything will be encrypted (not only the image)

My advice would be to store the image in an external file, keeping a reference to it in sembast.

If you do need to store the image in sembast, you can encode the image data as base64 and then either you encrypt the whole database (https://github.com/tekartik/sembast.dart/blob/master/sembast/doc/codec.md) or you encrypt only the image using any encryption algorithm you can find.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants