Sign in
.NET Security Blog
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
RSS for posts
Atom
RSS for comments
OK
Search
Tags
CAS
ClickOnce
CLR v4
CNG
Cryptography
Debugging
Orcas
Other
Pages
Policy
SecAnnotate
Security
Silverlight
SSCLI
StrongName
Transparency
Under the Hood
Visual Studio
Windows
XML
Archive
Archives
April 2010
(1)
February 2010
(1)
November 2009
(7)
June 2009
(4)
May 2009
(6)
March 2009
(1)
December 2008
(2)
August 2008
(1)
July 2008
(2)
May 2008
(2)
March 2008
(2)
February 2008
(1)
January 2008
(1)
October 2007
(2)
June 2007
(1)
May 2007
(5)
April 2007
(1)
March 2007
(5)
February 2007
(3)
January 2007
(5)
December 2006
(2)
November 2006
(3)
October 2006
(5)
September 2006
(2)
August 2006
(1)
July 2006
(6)
June 2006
(6)
May 2006
(7)
April 2006
(7)
March 2006
(6)
February 2006
(7)
January 2006
(9)
December 2005
(7)
November 2005
(8)
October 2005
(8)
September 2005
(13)
August 2005
(7)
July 2005
(8)
June 2005
(4)
May 2005
(10)
April 2005
(6)
March 2005
(10)
February 2005
(9)
January 2005
(10)
December 2004
(27)
November 2004
(12)
October 2004
(12)
September 2004
(10)
August 2004
(10)
July 2004
(10)
June 2004
(11)
May 2004
(7)
April 2004
(15)
March 2004
(21)
February 2004
(12)
January 2004
(3)
December 2003
(1)
November 2003
(5)
October 2003
(1)
June 2003
(2)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
.NET Security Blog
PDC '05: Let There Be Light
Posted
over 8 years ago
by
shawnfa
0
Comments
After spending the beginning of the morning in the Fundamentals Lounge, I went up to see Keith during the intermission of his Art of Secure Coding and to let him know that Mike and I would swing by his BOF's tomorrow . Afterwords, we grabbed some lunch...
.NET Security Blog
Bridging the Gap Between Transparent and Critical Code
Posted
over 4 years ago
by
shawnfa
0
Comments
Last time we looked at the set of operations that can only be performed by security critical code . One interesting observation is that just because you are doing one of these operations does not mean that your method in and of itself is security sensitive...
.NET Security Blog
MS.StrongName\KeyStore.cs
Posted
over 9 years ago
by
shawnfa
0
Comments
1 using System; 2 3 namespace MS.StrongName 4 { 5 /// < summary > 6 /// Key stores available for use 7 /// </ summary > 8 public enum KeyStore 9 { 10 /// < summary > 11 /// Machine wide key store 12 /// </ summary > 13 Machine...
.NET Security Blog
$20 on Double Zero, $20 on LUA please
Posted
over 7 years ago
by
shawnfa
0
Comments
I spent last weekend in Vegas, and on Saturday night / Sunday morning decided to recreate those college bar crawls with a bit of a casino crawl. Starting a Caesar's we bounced up the strip hitting every casino on the way with one rule: start with $40...
.NET Security Blog
MS.StrongName\Registry.cs
Posted
over 9 years ago
by
shawnfa
0
Comments
1 using System; 2 3 namespace MS.StrongName 4 { 5 /// < summary > 6 /// Constants for the configuraiton registry keys 7 /// </ summary > 8 internal static class Registry 9 { 10 /// < summary > 11 /// Name of the registry key under HKLM...
.NET Security Blog
Category Cleanup
Posted
over 7 years ago
by
shawnfa
0
Comments
My Ship-It sticker for Whidbey shows that we officially shipped on October 27th -- hard to believe it's been 6 months already! In celebration of the anniversary, I'm going to remove the Whidbey category from this blog, and future posts will assume...
.NET Security Blog
msn\Command.cs
Posted
over 9 years ago
by
shawnfa
0
Comments
1 using System; 2 using System.Diagnostics; 3 4 namespace MS.StrongName.ManagedSN 5 { 6 /// < summary > 7 /// Handler for a specific command line option 8 /// </ summary > 9 /// < param name = "arguments" > List of all the...
.NET Security Blog
MS.StrongName\Signatures.cs
Posted
over 9 years ago
by
shawnfa
0
Comments
1 using System; 2 using System.Diagnostics; 3 using System.Globalization; 4 using System.IO; 5 using MS.StrongName.Native; 6 7 namespace MS.StrongName 8 { 9 /// < summary > 10 /// Class that exposes the managed StrongName API for dealing with signatures...
.NET Security Blog
MS.StrongName\Utility.cs
Posted
over 9 years ago
by
shawnfa
0
Comments
1 using System; 2 using System.Diagnostics; 3 using System.IO; 4 using System.Security; 5 using System.Runtime.InteropServices; 6 using MS.StrongName.Native; 7 8 namespace MS.StrongName 9 { 10 /// < summary > 11 /// General-purpose utility methods...
.NET Security Blog
ZoneSandboxAppDomainManager.cs
Posted
over 9 years ago
by
shawnfa
4
Comments
1 using System; 2 using System.Reflection; 3 using System.Security; 4 using System.Security.Policy; 5 6 namespace AppDomainManagers 7 { 8 public sealed class ZoneSandboxAppDomainManager : AppDomainManager 9 { 10 private AppDomain internetDomain = null...
.NET Security Blog
Happy Holidays!
Posted
over 7 years ago
by
shawnfa
0
Comments
In an effort to escape Seattle's ... interesting ... weather patterns of the last few months, I've taken off to New York for the holidays. (And unlike last year's 19 degree temperature drop , this year it's actually going to be warmer in the Northeast...
.NET Security Blog
MS.StrongName\MS.StrongName.txt
Posted
over 9 years ago
by
shawnfa
0
Comments
1 BadFile=Invalid file specified: {0} 2 BadOperation=Error completing operation: {0} 3 CouldNotOpenMachineStoreKey=Could not open the strong name configuration key 4 InternalError=Internal error processing request 5 InvalidAssemblyName=Invalid assembly...
.NET Security Blog
msn\Log.cs
Posted
over 9 years ago
by
shawnfa
0
Comments
1 using System; 2 3 namespace MS.StrongName.ManagedSN 4 { 5 /// < summary > 6 /// Handles all I/O with the user 7 /// </ summary > 8 internal sealed class Log 9 { 10 private static bool quietMode = false ; 11 12 /// < summary > 13 /...
.NET Security Blog
MS.StrongName\Native\StrongNameKeyGenFlags.cs
Posted
over 9 years ago
by
shawnfa
0
Comments
1 using System; 2 3 namespace MS.StrongName.Native 4 { 5 /// < summary > 6 /// Flags for use with strong name key gneeration methods 7 /// </ summary > 8 [Flags] 9 internal enum StrongNameKeyGenFlags : int 10 { 11 /// < summary > 12...
.NET Security Blog
XmlIdSignedXml.cs
Posted
over 9 years ago
by
shawnfa
2
Comments
using System; using System . Security . Cryptography . Xml; using System . Xml; /// <summary> /// Provides xml:id support for XML digital signatures /// </summary> /// <remarks> /// This class allows the .NET XML Digital Signature system...
.NET Security Blog
MS.StrongName\Native\StrongNameInFlags.cs
Posted
over 9 years ago
by
shawnfa
0
Comments
1 using System; 2 3 namespace MS.StrongName.Native 4 { 5 /// < summary > 6 /// Input flags for use with the strong name verification functions 7 /// </ summary > 8 [Flags] 9 internal enum StrongNameInFlags : int 10 { 11 /// < summary >...
.NET Security Blog
MS.StrongName\VerificationResult.cs
Posted
over 9 years ago
by
shawnfa
0
Comments
1 using System; 2 3 namespace MS.StrongName 4 { 5 /// < summary > 6 /// Results of signature verification 7 /// </ summary > 8 public enum VerificationResult 9 { 10 /// < summary > 11 /// The assembly's signature did not verify 12 /...
.NET Security Blog
MS.StrongName\Native\StrongNameOutFlags.cs
Posted
over 9 years ago
by
shawnfa
0
Comments
1 using System; 2 3 namespace MS.StrongName.Native 4 { 5 /// < summary > 6 /// Flags output from the strong name verification functions 7 /// </ summary > 8 [Flags] 9 internal enum StrongNameOutFlags : int 10 { 11 /// < summary > 12...
Page 15 of 15 (368 items)
«
11
12
13
14
15