Changeset 1553
- Timestamp:
- 1/18/2010 5:34:41 AM (3 years ago)
- Location:
- branches/eraser6/CodeReview
- Files:
-
- 1 deleted
- 3 edited
-
Eraser.Manager/EntropySource.cs (modified) (1 diff)
-
Eraser.Manager/Plugins.cs (modified) (1 diff)
-
Eraser.Manager/Settings.cs (modified) (1 diff)
-
Eraser.Util/WintrustApi.cs (deleted)
Legend:
- Unmodified
- Added
- Removed
-
branches/eraser6/CodeReview/Eraser.Manager/EntropySource.cs
r1552 r1553 450 450 //Finally, our good friend CryptGenRandom() 451 451 byte[] cryptGenRandom = new byte[1536]; 452 if ( CryptApi.CryptGenRandom(cryptGenRandom))452 if (Security.Randomise(cryptGenRandom)) 453 453 result.AddRange(cryptGenRandom); 454 454 -
branches/eraser6/CodeReview/Eraser.Manager/Plugins.cs
r1552 r1553 298 298 299 299 //Verify the certificate in the assembly. 300 if ( WintrustApi.VerifyAuthenticode(assembly.Location))300 if (Security.VerifyAuthenticode(assembly.Location)) 301 301 { 302 302 X509Certificate2 cert = new X509Certificate2( -
branches/eraser6/CodeReview/Eraser.Manager/Settings.cs
r1528 r1553 354 354 355 355 if (pluginKey.Length != ourKey.Length || 356 ! MsCorEEApi.VerifyStrongName(plugin.Assembly.Location))356 !Security.VerifyStrongName(plugin.Assembly.Location)) 357 357 continue; 358 358 bool officialPlugin = true;
Note: See TracChangeset
for help on using the changeset viewer.
