| | |
How to create SHA1 Encryption program
Please support our VB.NET advertiser: Intel Parallel Studio Home
![]() |
•
•
Join Date: Dec 2006
Posts: 2
Reputation:
Solved Threads: 0
I just finished writing a SHA1 digester for Visual Basic 6. We needed this as a plug in for calculating the Psuedo-ESN in our cell phone database (KWC).
Hope it helps!
jt :eek:
http://www.tayloredge.com/utilities/...1_VBSource.txt
http://www.tayloredge.com/utilities/vbapps/iSHA1.e_e
Hope it helps!
jt :eek:
http://www.tayloredge.com/utilities/...1_VBSource.txt
http://www.tayloredge.com/utilities/vbapps/iSHA1.e_e
•
•
Join Date: Jun 2007
Posts: 1
Reputation:
Solved Threads: 0
public static string SHA1(string password)
{
byte[] textBytes = System.Text.Encoding.Default.GetBytes(password);
try
{
System.Security.Cryptography.SHA1CryptoServiceProvider cryptHandler;
cryptHandler = new System.Security.Cryptography.SHA1CryptoServiceProvider();
byte[] hash = cryptHandler.ComputeHash (textBytes);
string ret = "";
foreach (byte a in hash)
{
ret += a.ToString("x2");
}
return ret ;
}
catch
{
throw;
}
}
{
byte[] textBytes = System.Text.Encoding.Default.GetBytes(password);
try
{
System.Security.Cryptography.SHA1CryptoServiceProvider cryptHandler;
cryptHandler = new System.Security.Cryptography.SHA1CryptoServiceProvider();
byte[] hash = cryptHandler.ComputeHash (textBytes);
string ret = "";
foreach (byte a in hash)
{
ret += a.ToString("x2");
}
return ret ;
}
catch
{
throw;
}
}
Last edited by sembtest; Jun 22nd, 2007 at 5:30 am.
![]() |
Other Threads in the VB.NET Forum
- Previous Thread: Project ideas
- Next Thread: interger
| Thread Tools | Search this Thread |
.net 30minutes 2005 2008 access account arithmetic array arrays basic binary bing button buttons c# center check checkbox code combobox component connectionstring convert crystalreport data database databasesearch datagrid datagridview design dissertation dissertations dissertationthesis dropdownlist excel file-dialog folder ftp generatetags google gridview hardcopy image images inline insert intel internet listview mobile monitor ms net networking output passingparameters peertopeervideostreaming picturebox picturebox1 plugin port print printing problem problemwithinstallation project reports" save searchbox searchvb.net select serial server soap sql table tcp text textbox timer toolbox trim update updown user usercontrol vb vb.net vb.netcode vb.netformclosing()eventpictureboxmessagebox vb2008 vbnet view visual visualbasic visualbasic.net visualstudio visualstudio2008 web wpf





