473,396 Members | 1,900 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

What function allows conversion md5 in text

Hello,

What function allows conversion md5 in text?

Thanks in advance

Thierry

Dec 1 '07 #1
12 5184

What function reverse md5 result in original form?
"Ziggy" <tpmsn2004nospam]@nospamfree.fra écrit dans le message de news:
47***********************@news.free.fr...
Hello,

What function allows conversion md5 in text?

Thanks in advance

Thierry

Dec 1 '07 #2

Ziggy;106343 Wrote:
Hello,

What function allows conversion md5 in text?

Thanks in advance

Thierry
I am not sure I understand, MD5 returns a string

http://www.php.net/md5
string md5 ( string $str [, bool $raw_output ] )

What are you trying to do?

FFMG
--

'webmaster forum' (http://www.httppoint.com) | 'Free Blogs'
(http://www.journalhome.com/) | 'webmaster Directory'
(http://www.webhostshunter.com/)
'Recreation Vehicle insurance'
(http://www.insurance-owl.com/other/car_rec.php) | 'Free URL
redirection service' (http://urlkick.com/)
------------------------------------------------------------------------
FFMG's Profile: http://www.httppoint.com/member.php?userid=580
View this thread: http://www.httppoint.com/showthread.php?t=22775

Message Posted via the webmaster forum http://www.httppoint.com, (Ad revenue sharing).

Dec 1 '07 #3

Ziggy;106344 Wrote:
>
"Ziggy" <tpmsn2004nospam]@nospamfree.fra écrit dans le message de
news:
47***********************@news.free.fr...
Hello,

What function allows conversion md5 in text?

Thanks in advance

Thierry


What function reverse md5 result in original form?
[top post fixed]

There are no functions to do that, (well they might be one or two but
1) they don't guaranty to be the same, original, form, 2) they can
takes days to run.

Otherwise what would be the point of MD5?

FFMG
--

'webmaster forum' (http://www.httppoint.com) | 'Free Blogs'
(http://www.journalhome.com/) | 'webmaster Directory'
(http://www.webhostshunter.com/)
'Recreation Vehicle insurance'
(http://www.insurance-owl.com/other/car_rec.php) | 'Free URL
redirection service' (http://urlkick.com/)
------------------------------------------------------------------------
FFMG's Profile: http://www.httppoint.com/member.php?userid=580
View this thread: http://www.httppoint.com/showthread.php?t=22775

Message Posted via the webmaster forum http://www.httppoint.com, (Ad revenue sharing).

Dec 1 '07 #4
Thank you for your answer, it was a translation error
I want reverse md5 result in original form but I think it's not possible.
"FFMG" <FF*********@no-mx.httppoint.coma écrit dans le message de news:
FF*********@no-mx.httppoint.com...
>
Ziggy;106343 Wrote:
>Hello,

What function allows conversion md5 in text?

Thanks in advance

Thierry

I am not sure I understand, MD5 returns a string

http://www.php.net/md5
string md5 ( string $str [, bool $raw_output ] )

What are you trying to do?

FFMG
--

'webmaster forum' (http://www.httppoint.com) | 'Free Blogs'
(http://www.journalhome.com/) | 'webmaster Directory'
(http://www.webhostshunter.com/)
'Recreation Vehicle insurance'
(http://www.insurance-owl.com/other/car_rec.php) | 'Free URL
redirection service' (http://urlkick.com/)
------------------------------------------------------------------------
FFMG's Profile: http://www.httppoint.com/member.php?userid=580
View this thread: http://www.httppoint.com/showthread.php?t=22775

Message Posted via the webmaster forum http://www.httppoint.com, (Ad
revenue sharing).

Dec 1 '07 #5

Ziggy;106351 Wrote:
>

http://www.php.net/md5
string md5 ( string $str [, bool $raw_output ] )

Thank you for your answer, it was a translation error
I want reverse md5 result in original form but I think it's not
possible.

[top post fixed, again]

It is not possible. Otherwise MD5 would be useless.

FFMG
--

'webmaster forum' (http://www.httppoint.com) | 'Free Blogs'
(http://www.journalhome.com/) | 'webmaster Directory'
(http://www.webhostshunter.com/)
'Recreation Vehicle insurance'
(http://www.insurance-owl.com/other/car_rec.php) | 'Free URL
redirection service' (http://urlkick.com/)
------------------------------------------------------------------------
FFMG's Profile: http://www.httppoint.com/member.php?userid=580
View this thread: http://www.httppoint.com/showthread.php?t=22775

Message Posted via the webmaster forum http://www.httppoint.com, (Ad revenue sharing).

Dec 1 '07 #6
Hello,

Try Google
http://www.google.com/search?hl=en&q=md5+reverse

But as others have said, it is hard to derive the exact text

--
Singapore Web Design
http://www.bootstrike.com/Webdesign/
Singapore Web Hosting
http://www.bootstrike.com/WinXP/faq.html
Windows XP FAQ

"Ziggy" <tpmsn2004nospam]@nospamfree.frwrote in message
news:47***********************@news.free.fr...
Hello,

What function allows conversion md5 in text?

Thanks in advance

Thierry

Dec 1 '07 #7
Ziggy schrieb:
Thank you for your answer, it was a translation error
I want reverse md5 result in original form but I think it's not possible.
If the text is short then there MIGHT be a solution for your paticular
problem. There are MD5 databases that have really large lists of MD5
input/hash pairs indexed by hash values. Google for "md5 reverse". There
is a small chance to find your input if it was just some characters long.
OLLi

--
The publicity is worth its weight in clients!
[Laura Holt, RS]
Dec 1 '07 #8
Oliver Grätz wrote:
Ziggy schrieb:
>Thank you for your answer, it was a translation error
I want reverse md5 result in original form but I think it's not possible.

If the text is short then there MIGHT be a solution for your paticular
problem. There are MD5 databases that have really large lists of MD5
input/hash pairs indexed by hash values. Google for "md5 reverse". There
is a small chance to find your input if it was just some characters long.
OLLi
Nope. There are a huge number of strings which can generate the same
MD5. Which one do you want?

Those MD5 databases are only good for duplicating a specific MD5 hash.
They can't tell you what the original was.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================

Dec 1 '07 #9
Jerry Stuckle schrieb:
Oliver Grätz wrote:
>Ziggy schrieb:
>>I want reverse md5 result in original form but I think it's not possible.
If the text is short then there MIGHT be a solution for your paticular
problem. There are MD5 databases that have really large lists of MD5
input/hash pairs indexed by hash values. Google for "md5 reverse". There
is a small chance to find your input if it was just some characters long.
Nope. There are a huge number of strings which can generate the same
MD5. Which one do you want?

Those MD5 databases are only good for duplicating a specific MD5 hash.
They can't tell you what the original was.
Ziggy didn't tell us for what application he needed to revert MD5. If it
was about password restoration, then reverse MD5 lookup databases ARE a
possible solution. I precisely narrowed the usability of my answer down
to "short strings" and "a small chance to find _your_ input".

OLLi

--
It's 106 miles to Chicago, we've got a full tank of gas,
half a pack of cigarettes, it's dark and we're wearing sunglasses.
[Blues Brothers]
Dec 2 '07 #10
Oliver Grätz wrote:
Jerry Stuckle schrieb:
>Oliver Grätz wrote:
>>Ziggy schrieb:
I want reverse md5 result in original form but I think it's not possible.
If the text is short then there MIGHT be a solution for your paticular
problem. There are MD5 databases that have really large lists of MD5
input/hash pairs indexed by hash values. Google for "md5 reverse". There
is a small chance to find your input if it was just some characters long.
Nope. There are a huge number of strings which can generate the same
MD5. Which one do you want?

Those MD5 databases are only good for duplicating a specific MD5 hash.
They can't tell you what the original was.

Ziggy didn't tell us for what application he needed to revert MD5. If it
was about password restoration, then reverse MD5 lookup databases ARE a
possible solution. I precisely narrowed the usability of my answer down
to "short strings" and "a small chance to find _your_ input".

OLLi
And I still stand by my statement. They are not valid for finding an
original string. Even a string of 5 characters may have a duplicate
hash. And the longer you get, the more likely you are to have a
duplicate. Or a password of 'ksfjlksahoh3ndskjvcn' just might have the
same hash as 'abc', for instance.

There is no way you can tell what the original text was. But you can
find one or more values which will generate the same has as you have.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================
Dec 2 '07 #11
Greetings, Ziggy.
In reply to Your message dated Saturday, December 1, 2007, 11:20:42,
Thank you for your answer, it was a translation error
I want reverse md5 result in original form but I think it's not possible.
There is NO original form. MD5 is a checksum, not a chipher or something
other.

And PLEASE DO NOT top-post.
--
Sincerely Yours, AnrDaemon <an*******@freemail.ru>

Dec 3 '07 #12
Greetings, Jerry Stuckle.
In reply to Your message dated Saturday, December 1, 2007, 16:36:05,
Nope. There are a huge number of strings which can generate the same
MD5. Which one do you want?
Any, if that generates the needed MD5 hash.
/whispering: password

--
Sincerely Yours, AnrDaemon <an*******@freemail.ru>

Dec 3 '07 #13

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: Jack | last post by:
Hello, What function can get a string's long by JavaScript? Thank you
5
by: W. Jack | last post by:
Hello, in VBScript: Int(11.4)=11 What function in JScript like this function? Thank you
2
by: Fred Bassett | last post by:
For example, a database with three tables: EMPLOYEE(employee#, empName, empAddress, empTel) EMPLOYEE_ON_PROJECT(employee#, project#) PROJECT(project#, projectStartDate, projectEndDate) What...
16
by: thenightfly | last post by:
Ok, I know all about how binary numbers translate into text characters. My question is what exactly IS a text character? Is it a bitmap?
1
by: Water Cooler v2 | last post by:
What is a full-text index? Please be gentle. Sorry for not looking it up in the help or on the Web. Be kind.
3
by: ashok | last post by:
Hi, I need a function that will divide text from mysql in 2 parts, so that I can display first half in one column and second half in second column. I can't find what function will do this job....
3
by: Mike Weathery | last post by:
Hi all I am using the following function in a text entry box: function goToTV() { location.href="http://www.tvguide.com" + "/search/index.aspx?keyword=" + document.search.q.value; return...
0
by: haukenpo | last post by:
Does anyone has solution for having a similar replace() function on datatype text column? I wish to replace a string with another string in a datatype TEXT column on MSSQL2000. The following...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.