VB6 - FUNZIONE GENERA DELL'HASH MD5 DI UNA STRINGA
Vi posto i sorgenti della Funzione che genera l'Hash MD5 in Visual Basic 6 /
VB6.
Come richiamare la funzione che genera l'Hash
Private Sub Form_Load()
Dim KeyChiaro As String
KeyChiaro = "Password"
'Trasformo la Chiave da Chiaro a MD5 HASH
KeyChiaro = DigestStrToHexStr(KeyChiaro)
Debug.Print KeyChiaro
'Scrive l'Hash MD5
End Sub
CODICE COMPLETO DELLA FUNZIONE HASH MD5 :
Option Explicit
'/*****
Leggi tutto il post...