Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have encrypted username and password in php using crypt function. How can i decrypt that username and password?

$iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB); 
$iv = mcrypt_create_iv($iv_size, MCRYPT_RAND); 
$key = "This is a very secret key"; 
$text = "Welcome to the system."; 
echo strlen($text) . "\n";

This doesn't print anything. What am i doing wrong?

share|improve this question
hello and welcome to stackoverflow. If you want help, we need to see some code :) Why not paste your code and let us examine it? – Herr K Dec 1 '11 at 18:35
3  
This question seems a bit dodgy to me - sounds like you're trying to obtain someone else's credentials without their permission. – xil3 Dec 1 '11 at 18:37
1  
Could be perfectly legit too. First time I started storing encrypted passwords in a database I didn't understand how to check if the user inputed the correct one at login :P. I've learned quite a bit since then... – mkprogramming Dec 1 '11 at 18:40
xil3 it must not be something malicious. Why not wait and see what it will be – Herr K Dec 1 '11 at 18:45
FYI-I am working on building authentication system in PHP. I am not trying to acquire anyones login credentials. I was playing with many functions like base_64,md5,crypt etc. Just wanted to know which one is most secure and i found crypt to be most helpful but could not decrypt it. – ads Dec 1 '11 at 19:05
show 1 more comment

closed as not a real question by Oded, Kevin Peno, Gordon, Jakub, cdeszaq Dec 1 '11 at 18:47

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

4 Answers

You can't. The crypt() function is a one-way hashing function.

If you're using a different function that does perform encryption (such as mcrypt_encrypt()), please share which.

share|improve this answer
$iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, MCRYPT_MODE_ECB); $iv = mcrypt_create_iv($iv_size, MCRYPT_RAND); $key = "This is a very secret key"; $text = "Welcome to the system."; echo strlen($text) . "\n";This doesn't print anything. What am i doing wrong? – ads Dec 1 '11 at 19:06
Ah, thank you. This is useful information that belongs with the question, so please edit your original question to add it. – Wiseguy Dec 1 '11 at 19:10
What is the error in my code? – ads Dec 1 '11 at 19:46
@ads See my comment to the question above. – Wiseguy Dec 1 '11 at 19:50
I am not storing encrypted password in DB. I have to pass the encrypted username from main authentication system to a sub portal and allow the user access to that portal. SO i plan to descrypt the username in sub portal. I cannot use mcrypt_encrypt as the code i posted is not working. – ads Dec 1 '11 at 22:15
show 3 more comments

From the PHP documentation for crypt():

Note: There is no decrypt function, since crypt() uses a one-way algorithm.

share|improve this answer

Crypt() is a one-way encryption on PHP. You can't decrypt it back.

If you want to use encryption-decryption functions, check this PHP manual http://php.net/manual/en/book.mcrypt.php

share|improve this answer

You don't.
You would verify a users credentials against the hash version you have stored. http://simple.wikipedia.org/wiki/Cryptographic_hash_function

So if a user signs up you hash their password so no one, not even you knows what it is. This is a security measure. When a user tries to log in to your site, you take their password call crypt() on it again and verify that entry in your storage.

share|improve this answer
What is the error in my code? – ads Dec 1 '11 at 19:38

Not the answer you're looking for? Browse other questions tagged or ask your own question.