Witam,
Kolejne pytanie

Wiem, ze CF.NEt w wersji 1.1 nie obsluguje MD5. Wiem tez, ze jest ta funkcja dostepna w OPENnetcf, jednak kod programu z VB dla wersji pelnej framework .NET nie dziala z opennetcf, co moze mnie nie dziwi, ale za bardzo nie wiem jak to ruszyc. Niestety forum opencfnet zawiera jedynie przyklady dla jezyka C++,C# , a konwrtery z powodu bezpieczenstwa nie chca tego zamienic na VB
W wersji pelnej CF.Net uzywam kodu
Function getMd5Hash(ByVal input As String) As String
' Create a new instance of the MD5 object.
Dim md5Hasher As MD5 = MD5.Create()
' Convert the input string to a byte array and compute the hash.
Dim data As Byte() = md5Hasher.ComputeHash(Encoding.Default.GetBytes(input))
' Create a new Stringbuilder to collect the bytes
' and create a string.
Dim sBuilder As New StringBuilder
' Loop through each byte of the hashed data
' and format each one as a hexadecimal string.
Dim i As Integer
For i = 0 To data.Length - 1
sBuilder.Append(data(i).ToString("x2"))
Next i
' Return the hexadecimal string.
Return sBuilder.ToString()
End Function
czy moze ma ktos doswiadczenie z opennetcf i md5?