Check a value with encrypted field in mysql The Next CEO of Stack OverflowHow do you set a default value for a MySQL Datetime column?Can I concatenate multiple MySQL rows into one field?Which MySQL data type to use for storing boolean valuesHow do I connect to a MySQL Database in Python?Should I use the datetime or timestamp data type in MySQL?Finding duplicate values in MySQLHow to get a list of MySQL user accountsHow do I check if a string contains a specific word?How to reset AUTO_INCREMENT in MySQL?How to import an SQL file using the command line in MySQL?
How does the mv command work with external drives?
How do I go from 300 unfinished/half written blog posts, to published posts?
How do scammers retract money, while you can’t?
Are there any unintended negative consequences to allowing PCs to gain multiple levels at once in a short milestone-XP game?
Can I equip Skullclamp on a creature I am sacrificing?
Why has the US not been more assertive in confronting Russia in recent years?
Preparing Indesign booklet with .psd graphics for print
Is micro rebar a better way to reinforce concrete than rebar?
Can I run my washing machine drain line into a condensate pump so it drains better?
To not tell, not take, and not want
What does convergence in distribution "in the Gromov–Hausdorff" sense mean?
Won the lottery - how do I keep the money?
Is 'diverse range' a pleonastic phrase?
How does the Z80 determine which peripheral sent an interrupt?
Help understanding this unsettling image of Titan, Epimetheus, and Saturn's rings?
Multiple labels for a single equation
Would this house-rule that treats advantage as a +1 to the roll instead (and disadvantage as -1) and allows them to stack be balanced?
What's the best way to handle refactoring a big file?
Would a completely good Muggle be able to use a wand?
Why do remote companies require working in the US?
How to solve a differential equation with a term to a power?
MessageLevel in QGIS3
Are there any limitations on attacking while grappling?
If the heap is initialized for security, then why is the stack uninitialized?
Check a value with encrypted field in mysql
The Next CEO of Stack OverflowHow do you set a default value for a MySQL Datetime column?Can I concatenate multiple MySQL rows into one field?Which MySQL data type to use for storing boolean valuesHow do I connect to a MySQL Database in Python?Should I use the datetime or timestamp data type in MySQL?Finding duplicate values in MySQLHow to get a list of MySQL user accountsHow do I check if a string contains a specific word?How to reset AUTO_INCREMENT in MySQL?How to import an SQL file using the command line in MySQL?
I am using Codeigniter encrypt library for data encryption and store it on db,but now i want to check a value exist or not in this table.
I have 3 fields in table which are encrypted,if I give same value it will store different string in field every time, so how can I check them my value ?
Table
controller code
$result = $this->Home_model->check_mail($this->encrypt->encode($this->input->post('email')));
model code
function check_mail($email)
$this->db->select('*');
$this->db->from('enquiry');
$this->db->where('email',$email);
$query = $this->db->get();
return $query->num_rows();
php mysql
add a comment |
I am using Codeigniter encrypt library for data encryption and store it on db,but now i want to check a value exist or not in this table.
I have 3 fields in table which are encrypted,if I give same value it will store different string in field every time, so how can I check them my value ?
Table
controller code
$result = $this->Home_model->check_mail($this->encrypt->encode($this->input->post('email')));
model code
function check_mail($email)
$this->db->select('*');
$this->db->from('enquiry');
$this->db->where('email',$email);
$query = $this->db->get();
return $query->num_rows();
php mysql
1
add your code that you have tried and your database
– xmastertje
Mar 8 at 12:29
Other then building A.I in the PHP code to geuss the encrypting in the future? You can't most likely you are looking for hashing (SHA256, SHA512 for example) instead of a encryption which gives a different result for each time you execute like MCrypt, Blowfish ? .. But you also might be looking for apassword_verify()
hard to say without user case, example code and table structure.
– Raymond Nijland
Mar 8 at 12:35
add a comment |
I am using Codeigniter encrypt library for data encryption and store it on db,but now i want to check a value exist or not in this table.
I have 3 fields in table which are encrypted,if I give same value it will store different string in field every time, so how can I check them my value ?
Table
controller code
$result = $this->Home_model->check_mail($this->encrypt->encode($this->input->post('email')));
model code
function check_mail($email)
$this->db->select('*');
$this->db->from('enquiry');
$this->db->where('email',$email);
$query = $this->db->get();
return $query->num_rows();
php mysql
I am using Codeigniter encrypt library for data encryption and store it on db,but now i want to check a value exist or not in this table.
I have 3 fields in table which are encrypted,if I give same value it will store different string in field every time, so how can I check them my value ?
Table
controller code
$result = $this->Home_model->check_mail($this->encrypt->encode($this->input->post('email')));
model code
function check_mail($email)
$this->db->select('*');
$this->db->from('enquiry');
$this->db->where('email',$email);
$query = $this->db->get();
return $query->num_rows();
php mysql
php mysql
edited Mar 8 at 14:26
executable
1,9742924
1,9742924
asked Mar 8 at 12:27
diptidipti
548
548
1
add your code that you have tried and your database
– xmastertje
Mar 8 at 12:29
Other then building A.I in the PHP code to geuss the encrypting in the future? You can't most likely you are looking for hashing (SHA256, SHA512 for example) instead of a encryption which gives a different result for each time you execute like MCrypt, Blowfish ? .. But you also might be looking for apassword_verify()
hard to say without user case, example code and table structure.
– Raymond Nijland
Mar 8 at 12:35
add a comment |
1
add your code that you have tried and your database
– xmastertje
Mar 8 at 12:29
Other then building A.I in the PHP code to geuss the encrypting in the future? You can't most likely you are looking for hashing (SHA256, SHA512 for example) instead of a encryption which gives a different result for each time you execute like MCrypt, Blowfish ? .. But you also might be looking for apassword_verify()
hard to say without user case, example code and table structure.
– Raymond Nijland
Mar 8 at 12:35
1
1
add your code that you have tried and your database
– xmastertje
Mar 8 at 12:29
add your code that you have tried and your database
– xmastertje
Mar 8 at 12:29
Other then building A.I in the PHP code to geuss the encrypting in the future? You can't most likely you are looking for hashing (SHA256, SHA512 for example) instead of a encryption which gives a different result for each time you execute like MCrypt, Blowfish ? .. But you also might be looking for a
password_verify()
hard to say without user case, example code and table structure.– Raymond Nijland
Mar 8 at 12:35
Other then building A.I in the PHP code to geuss the encrypting in the future? You can't most likely you are looking for hashing (SHA256, SHA512 for example) instead of a encryption which gives a different result for each time you execute like MCrypt, Blowfish ? .. But you also might be looking for a
password_verify()
hard to say without user case, example code and table structure.– Raymond Nijland
Mar 8 at 12:35
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55063230%2fcheck-a-value-with-encrypted-field-in-mysql%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55063230%2fcheck-a-value-with-encrypted-field-in-mysql%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
add your code that you have tried and your database
– xmastertje
Mar 8 at 12:29
Other then building A.I in the PHP code to geuss the encrypting in the future? You can't most likely you are looking for hashing (SHA256, SHA512 for example) instead of a encryption which gives a different result for each time you execute like MCrypt, Blowfish ? .. But you also might be looking for a
password_verify()
hard to say without user case, example code and table structure.– Raymond Nijland
Mar 8 at 12:35