MD5 and Hashing question

reverend

Member
Joined
Jun 10, 2007
Messages
9
Programming Experience
Beginner
I have a code example from what I think is VB6, and in it two values are hashed at once. It is as follows:
Set MD5 = New clsMD5
hash(Index) = MD5.CalculateMD5(example(Index))
response(Index) = MD5.CalculateMD5(hash(Index) & challenge(Index))

What does this translate to in vb.net? Most of it comes over fine(I could be WAY off base too as I am guessing), but in the third line what I translate over as does not allow me to md5 both values together. Go figure, around $500 in vb 2005 books and not one mention of anything similar LOL. Thanks in advance for your responses.
 
Back
Top