skatenerd

Results 5 comments of skatenerd

I too am wondering how to query against an encrypted field. I am thinking it could make sense to query using the encrypted value (perhaps with raw sql). In other...

I'm trying: `House.objects.filter(color__exact="green")` and coming up empty-handed, even though `House.objects.last().color == "green"`

This workaround is working, but it's a litle bit ugly. Note that it basically makes a guess about the mechanics of the random-padding. ``` color_field = [f for f in...