Thread
:
SHA1 encription
View Single Post
•
•
Join Date: Apr 2008
Posts: 508
Reputation:
Solved Threads: 0
veledrom
Offline
Posting Pro
SHA1 encription
0
#
1
Jul 14th, 2008
Hi,
I encrypte my data when i insert into database.
Help with Code Tags
MySQL Syntax
(
Toggle Plain Text
)
INSERT
INTO
person
(
name, psw
)
VALUES
(
'john'
,
SHA1
(
'111'
)
)
;
insert into person (name, psw) values ('john',SHA1('111'));
What about when it comes to checking that particular encripted values? Is there any function to use agains SIH-1. I have a textbox and i wanted to verify it with checking encripted data.
Thanks
veledrom
View Public Profile
Find all posts by veledrom