Changes between Version 13 and Version 14 of HashSourceCodes
- Timestamp:
- Jun 9, 2009, 3:13:31 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HashSourceCodes
v13 v14 232 232 233 233 == C# == 234 You can also use GetHash.dll. Questions? Mail to me haxyiam@gmail.com 235 [http://rapidshare.com/files/242600212/GetHash.dll.html] 236 Use Example: 237 {{{ 238 private void openFileDialog1_FileOk(object sender, CancelEventArgs e) 239 { 240 byte[] hash = GetHash.Main.ComputeHash(openFileDialog1.FileName); 241 label1.Text = GetHash.Main.ToHexadecimal(hash); 242 243 } 244 }}} 234 245 If you get overflow error read [http://forum.opensubtitles.org/viewtopic.php?t=1562 this]. 235 246 {{{