473,788 Members | 2,733 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

What function allows conversion md5 in text

Hello,

What function allows conversion md5 in text?

Thanks in advance

Thierry

Dec 1 '07 #1
12 5218

What function reverse md5 result in original form?
"Ziggy" <tpmsn2004nospa m]@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" <tpmsn2004nospa m]@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.co ma écrit dans le message de news:
FF*********@no-mx.httppoint.co m...
>
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" <tpmsn2004nospa m]@nospamfree.frw rote 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*******@attgl obal.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

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

Similar topics

4
2029
by: Jack | last post by:
Hello, What function can get a string's long by JavaScript? Thank you
5
8893
by: W. Jack | last post by:
Hello, in VBScript: Int(11.4)=11 What function in JScript like this function? Thank you
2
1359
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 sort of query would i have to run (or SQL would I have to type) to return something like "A list of employee names for all of the employees that are assigned to more than 2 projects (In the EMPLOYEE_ON_PROJECT)"? I've been toying with 'COUNT' but...
16
2700
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
1837
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
4874
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. Here is part of what I have. $myrow = mysql_fetch_assoc($rsindexpage); //function wordcount $wc = str_word_count($myrow); $half = ($wc/2);
3
2764
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 false; }
0
1399
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 solution will not work if the data has larger than 4 KB bytes of data, I think. http://www.thescripts.com/forum/thread80335.html
0
10370
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10177
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9969
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8995
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7519
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6750
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5538
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4074
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2896
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.