PhilSwEngr
New Member
- Joined
- Sep 18, 2013
- Messages
- 8
Is there a way I can use System.Security.Cryptography from an Excel 2010 VBA module subroutine to calculate an MD5 checksum of a file? In C# I use the statement:
using System.Security.Cryptography;
…
MD5CryptoServiceProvider md5Generator = new MD5CryptoServiceProvider();
Since System.Security.Cryptography is available as part of .NET 3.5, I s/b able to use it from Excel VBA w/o having to register any DLLs, correct?
Any help is appreciated.
using System.Security.Cryptography;
…
MD5CryptoServiceProvider md5Generator = new MD5CryptoServiceProvider();
Since System.Security.Cryptography is available as part of .NET 3.5, I s/b able to use it from Excel VBA w/o having to register any DLLs, correct?
Any help is appreciated.