Re: MD5 and MS Access
- From: wawang@xxxxxxxxxxxxxxxxxxxx (Walter Wang [MSFT])
- Date: Tue, 27 Jun 2006 07:00:55 GMT
Hi,
Thank you for your post.
The 128-bit (16-byte) MD5 hashes (also termed message digests) are
typically represented as a sequence of 32 hexadecimal digits. You can use
following code to convert the byte array to a hex string:
Dim i As Integer = 0, md5 As String = String.Empty
For i = 0 To hashedBytes.Length - 1
md5 += hashedBytes(i).ToString("x")
Next
Hope this helps. Please feel free to post here if anything is unclear.
Regards,
Walter Wang (wawang@xxxxxxxxxxxxxxxxxxxx, remove 'online.')
Microsoft Online Community Support
==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
.
- Follow-Ups:
- Re: MD5 and MS Access
- From: Walter Wang [MSFT]
- Re: MD5 and MS Access
- References:
- Re: MD5 and MS Access
- From: Ray Booysen
- Re: MD5 and MS Access
- Prev by Date: Manually populated combo not showing values
- Next by Date: Re: MD5 and MS Access
- Previous by thread: Re: MD5 and MS Access
- Next by thread: Re: MD5 and MS Access
- Index(es):
Relevant Pages
|