I need to encrypt a column in MySQL and I am using AES_ENCRYPT. I want to figure out a safe way to use this data column in a WHERE clause. My question is this -
1) Can I AES_ENCRYPT the WHERE clause argument with the same pass-phrase and use the generated encrypted string in the WHERE clause? Or do I have to run decryption on the whole column?
For example, will this be safe?
SELECT * from TABLE WHERE Enc_COL= AES_ENCRYPT('someColValue','same_passphrase');
or does it have to be
SELECT * from TABLE WHERE AES_ENCRYPT(Enc_COL,'same_passphrase')= 'someColValue';
I believe the second one will be much slower and so, I want to know if the first example is possible.