cmonhackns.n-stars.org
Would you like to react to this message? Create an account in a few clicks or log in to continue.


Indonesian SWF Editor Community
 
HomeLatest imagesRegisterLog in
SELAMAT Datang Di Cmonhackns ===> Mulailah dari yang kecil... karena semua yang besar dulunya juga kecil..

 

 Cara Membuat MD5 Hasher Dengan VB 2010

Go down 
AuthorMessage
bebaswelah
Donatur
Donatur
bebaswelah


Jumlah posting : 159
Join date : 2011-01-16

Cara Membuat MD5 Hasher Dengan VB 2010 Empty
PostSubject: Cara Membuat MD5 Hasher Dengan VB 2010   Cara Membuat MD5 Hasher Dengan VB 2010 Icon_minitime1Sun Aug 07, 2011 10:57 am

[You must be registered and logged in to see this image.]

Nih gan Script a
Code:
Private Function StringToMD5(ByVal Content As String) As String
        Dim M5 As New Security.Cryptography.MD5CryptoServiceProvider

        Dim ByteString() As Byte = System.Text.Encoding.ASCII.GetBytes(Content)
        ByteString = M5.ComputeHash(ByteString)

        Dim FinalString As String = Nothing
        For Each bt As Byte In ByteString
            FinalString &= bt.ToString("x2")
        Next
        Return FinalString
    End Function


    Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged
        TextBox2.Text = StringToMD5(TextBox1.Text)
        If TextBox1.Text = String.Empty Then
            TextBox2.Clear()
        End If
    End Sub

Kalo ga Jelas ada Video a gan



Kalo ga kluar bisa klik link ini



Aplikasi ini buat ngubah kata kata jadi MD5 gan
Back to top Go down
 
Cara Membuat MD5 Hasher Dengan VB 2010
Back to top 
Page 1 of 1
 Similar topics
-
» Cara Membuat Calender dengan VB 6
» Cara Membuat Virus Dengan Mudah
» Cara Membuat Proggres Bar VB 2010 & VB 6
» Cara membuat Tampilan Matrix Dengan Notepad
» Cara membuat web browser sendiri dengan VB 2008/2006

Permissions in this forum:You cannot reply to topics in this forum
cmonhackns.n-stars.org :: Computer Freakz :: All About Programming :: Visual Basic-
Jump to: