PHP encryption functions
Page 1 of 19 Replies - 1146 Views - Last Post: 05 November 2009 - 09:05 AM
#1
PHP encryption functions
Posted 22 July 2009 - 05:00 AM
Replies To: PHP encryption functions
#2
Re: PHP encryption functions
Posted 22 July 2009 - 07:35 AM
By the way - technically speaking, this is hashing, not encrypting.
Yours,
Shane~
This post has been edited by ShaneK: 22 July 2009 - 07:51 AM
#3
Re: PHP encryption functions
Posted 22 July 2009 - 02:04 PM
BWAHA! Just messin with you. But that would be kinda sick... though highly impractical for most applications... But still sick
#4
Re: PHP encryption functions
Posted 01 August 2009 - 11:34 PM
#5
Re: PHP encryption functions
Posted 02 August 2009 - 03:47 PM
#6
Re: PHP encryption functions
Posted 02 August 2009 - 03:52 PM
Yours,
Shane~
#7
Re: PHP encryption functions
Posted 02 August 2009 - 04:36 PM
#8
Re: PHP encryption functions
Posted 03 November 2009 - 05:39 PM
#9
Re: PHP encryption functions
Posted 03 November 2009 - 09:53 PM
chtombleson, on 3 Nov, 2009 - 05:39 PM, said:
If you read the rest of the thread you'll be able to tell that MD5 is not encryption, it's hashing. Encryption indicates that it can be undone.
Yours,
Shane~
This post has been edited by ShaneK: 03 November 2009 - 09:54 PM
#10
Re: PHP encryption functions
Posted 05 November 2009 - 09:05 AM
I most of the time use md5 with password and a hash(random key)
example
hash = 5(d (random)
password = test
passwordmd5 = md5(testhash);
in php(of course in this example the hash isn't being calculated randomly)
$hash = "5(d"; // (random) $password = "test"; $passwordmd5 = md5($password.$hash);
This post has been edited by nightscream: 05 November 2009 - 09:06 AM
|
|

New Topic/Question
Reply


MultiQuote







|