Click here to Skip to main content
15,892,965 members
Home / Discussions / C#
   

C#

 
GeneralRe: How do I inherit ComboBox to implement my function Pin
Ravi Bhavnani22-Feb-14 11:15
professionalRavi Bhavnani22-Feb-14 11:15 
GeneralRe: How do I inherit ComboBox to implement my function Pin
Dave Kreskowiak23-Feb-14 4:47
mveDave Kreskowiak23-Feb-14 4:47 
GeneralRe: How do I inherit ComboBox to implement my function Pin
Ravi Bhavnani23-Feb-14 6:34
professionalRavi Bhavnani23-Feb-14 6:34 
GeneralRe: How do I inherit ComboBox to implement my function Pin
Richard MacCutchan23-Feb-14 21:59
mveRichard MacCutchan23-Feb-14 21:59 
GeneralRe: How do I inherit ComboBox to implement my function Pin
Member 1041329223-Feb-14 13:53
professionalMember 1041329223-Feb-14 13:53 
AnswerRe: How do I inherit ComboBox to implement my function Pin
BillWoodruff22-Feb-14 4:48
professionalBillWoodruff22-Feb-14 4:48 
GeneralRe: How do I inherit ComboBox to implement my function Pin
Member 1041329223-Feb-14 13:50
professionalMember 1041329223-Feb-14 13:50 
GeneralRe: How do I inherit ComboBox to implement my function Pin
BillWoodruff23-Feb-14 14:06
professionalBillWoodruff23-Feb-14 14:06 
Questionslow motion problem in picture box... Pin
Edalat_201121-Feb-14 21:36
Edalat_201121-Feb-14 21:36 
AnswerRe: slow motion problem in picture box... Pin
BillWoodruff22-Feb-14 9:11
professionalBillWoodruff22-Feb-14 9:11 
AnswerRe: slow motion problem in picture box... Pin
TnTinMn23-Feb-14 11:10
TnTinMn23-Feb-14 11:10 
QuestionAcroRd32.exe command line options and alternatives Pin
kranthi198821-Feb-14 10:58
kranthi198821-Feb-14 10:58 
AnswerRe: AcroRd32.exe command line options and alternatives Pin
Garth J Lancaster21-Feb-14 11:14
professionalGarth J Lancaster21-Feb-14 11:14 
Questionhow to use a key in md5 algorithm in c# Pin
rincy sivan21-Feb-14 0:22
rincy sivan21-Feb-14 0:22 
AnswerRe: how to use a key in md5 algorithm in c# PinPopular
Eddy Vluggen21-Feb-14 0:27
professionalEddy Vluggen21-Feb-14 0:27 
GeneralRe: how to use a key in md5 algorithm in c# Pin
OriginalGriff21-Feb-14 0:57
mveOriginalGriff21-Feb-14 0:57 
AnswerRe: how to use a key in md5 algorithm in c# PinPopular
OriginalGriff21-Feb-14 1:03
mveOriginalGriff21-Feb-14 1:03 
JokeRe: how to use a key in md5 algorithm in c# Pin
Marco Bertschi21-Feb-14 1:18
protectorMarco Bertschi21-Feb-14 1:18 
GeneralRe: how to use a key in md5 algorithm in c# Pin
OriginalGriff21-Feb-14 3:30
mveOriginalGriff21-Feb-14 3:30 
GeneralRe: how to use a key in md5 algorithm in c# Pin
harold aptroot21-Feb-14 1:44
harold aptroot21-Feb-14 1:44 
While it seems unlikely that you actually meant to ask "how can I generate a pre-image of an MD5 hash", that would be a much more interesting question, so I'll pretend you asked it.
In general, that's still "very hard". That is, given a random MD5 hash x, it's not (yet) feasible to compute a string that would hash to x (though there is an 2123.4 attack, which is better than brute force). By the way, there is obviously an unlimited number of strings that would have the same hash, because there's an infinite number of different strings and only a finite number of MD5 hashes. So in general it's not possible to get the actual original string, but you may find a string that has the same hash, and for short strings there's a very good probability that you would have found the original.
By contrast, generating two strings that have the same MD5 hash is efficiently doable[^] and highly realistic.

If you know something about the key, for example that it's an 8-letter alpha-numeric string, a brute force attack is often very feasible - for this example, it would take several hours on a good GPU. (26+26+10)8 / 10GH/s[^] = about 6 hours, and you could buy a better GPU, or several.
MD5-ed passwords hashes can also be easy, it depends. On the one hand, it's obviously possible to make a long random password, and you won't crack it. But on the other hand, most passwords used in real life are not like that. See for example this article[^] about some of the subtleties of passwords.
AnswerRe: how to use a key in md5 algorithm in c# Pin
AmitGajjar23-Feb-14 18:48
professionalAmitGajjar23-Feb-14 18:48 
Questionweb browser Pin
Member 1045906320-Feb-14 23:42
Member 1045906320-Feb-14 23:42 
AnswerRe: web browser Pin
OriginalGriff21-Feb-14 0:07
mveOriginalGriff21-Feb-14 0:07 
GeneralRe: web browser Pin
AmitGajjar23-Feb-14 18:53
professionalAmitGajjar23-Feb-14 18:53 
Questionweb browser Pin
Member 1045906320-Feb-14 23:41
Member 1045906320-Feb-14 23:41 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.