MD5Digest.Process

From Xojo Documentation

Method

MD5Digest.Process(Data as String)

Supported for all project types and targets.

Data is the text to be processed.

Sample Code

This code uses Process to input the data to the MDsDigest instance:

Var m As New MD5Digest
Var s As String
m.Process("Hello world")
s = m.Value