MD5 Hash Calculator for VB6 (Module).
You can add the module to your project.
License
Entessa Public LicenseFollow MD5 Hash Calculator for VB6 (Module)
Other Useful Business Software
AI-generated apps that pass security review
Retool lets you generate dashboards, admin panels, and workflows directly on your data. Type something like “Build me a revenue dashboard on my Stripe data” and get a working app with security, permissions, and compliance built in from day one. Whether on our cloud or self-hosted, create the internal software your team needs without compromising enterprise standards or control.
Rate This Project
Login To Rate This Project
User Reviews
-
This module uses segmented file access(in configurable chunk sizes) making large file calculations fast,
-
Use fnArrayMD5 with strings. See the example below: 'Tested in Visual Basic 6.5 (MS Office Excel 2003) Public Function t4() Dim buf() As Byte buf = StrConv("foof", vbFromUnicode) Dim md5hash As String md5hash = fnArrayMD5(buf, True, True) Debug.Print "input string is: " & StrConv(buf, vbUnicode) Debug.Assert md5hash = "C17B41544BCAB6B6B47A5C0BC6E1286A" Debug.Print " output MD5 is: " & md5hash End Function
-
Thanks for your code, but only works with files, do not work with strings.