Query on encrypted fields #70
Labels
No labels
bug
confirmed
critical
discussion
documentation
Doing
enhancement
suggestion
support
To Do
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: hazaar/hazaar-dbi#70
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
I need to be able to query on an encrypted field. I am encrypting an API key in the database and need to take the key given when a client host requests API access and lookup that key in the database. Currently I would have to do this manually but I can make this nicer by doing it transparently during the query.
created merge request !42 to address this issue
mentioned in merge request !42
Yeah, I'ma dumbass. This isn't going to be possible. Using algorithms like AES and such means that the IV is stored in the encrypted value so we can't get encrypt the search criteria and generate the exact same result. So without significant changes that would probably result is massive performance impacts, this is going to be a futile effort.