C0D1UM / django-secured-fields

Django encrypted fields with search enabled.
MIT License
19 stars 5 forks source link

Add search support for BinaryField #6

Open earthpyy opened 2 years ago

earthpyy commented 2 years ago

Since our base field used for storing encrypted data is TextField, but BinaryField is the only field that is difficult (possible with Base64, but it would make the size of data too big) to translate to text type. Therefore, implementing a search lookup for BinaryField has been skipped for now.

earthpyy commented 2 years ago

There is also an effort needed on writing a custom query for substring bytes column which is harder than we've planned as well.