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
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
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)
April, 2004
MSDN Blogs
>
.NET Security Blog
>
April, 2004
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
.NET Security Blog
Arrays and SOS
Posted
over 8 years ago
by
shawnfa
4
Comments
Looking at arrays with SOS on WinDBG is not exactly the most intuitive process in the world. In order to demonstrate how to do this, I've written a small sample program that I'm going to “debug”. The code simply creates three arrays: ...
.NET Security Blog
Writing Managed Code With VC++ 2005
Posted
over 8 years ago
by
shawnfa
0
Comments
There's been a few articles around lately on the new syntax for Managed C++ that's in VC++ 2005. MSDN had an article in the May magazine by Stephen Toub, Write Faster Code with the Modern Language Features of Visual C++ 2005 , which focuses on many new...
.NET Security Blog
xml:id and SignedXml
Posted
over 8 years ago
by
shawnfa
4
Comments
A few weeks back, I posted about customizing how SignedXml searches for XML elements identified by a reference to an ID. By default, SignedXml searches for elements with an attribute named Id that has the given value. Recently, the W3C has come up...
.NET Security Blog
XmlIdSignedXml.cs
Posted
over 8 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
Why Doesn't .NET Support Deterministic Finalization?
Posted
over 8 years ago
by
shawnfa
1
Comments
This email from Brian Harry has been making the rounds again lately. It's a pretty in depth talk about the reasons why .NET doesn't support deterministic finalization, including the history behind it. I found it a pretty interesting read. The mail's a...
.NET Security Blog
ClickOnce Overview in May's MSDN Magazine
Posted
over 8 years ago
by
shawnfa
0
Comments
ClickOnce made the cover of the May 2004 issue of MSDN Magazine . (OK, yes, it was just a little blurb at the bottom of the cover, but that still counts!). Bryan Noyes gives a nice general overview of what you can do with ClickOnce in the article ...
.NET Security Blog
Customizable CAS Defaults
Posted
over 8 years ago
by
shawnfa
3
Comments
One of the nicer new Whidbey features, at least from an admin standpoint, is the ability to customize the default CAS settings. On v1.0 and 1.1 of the framework running caspol -all -reset resulted in the security policy being reset to hardcoded defaults...
.NET Security Blog
P/Invoke Wiki
Posted
over 8 years ago
by
shawnfa
2
Comments
Adam Nathan , who you may recognize as being the author of .NET and COM: The Complete Interoperability Guide , has started up a Wiki on P/Invoke . You'll find lots of P/Invoke definitions, along with recommend managed alternatives and gotchyas there....
.NET Security Blog
New VC++ Toolkit 2003
Posted
over 8 years ago
by
shawnfa
0
Comments
The Visual C++ team has released the Visual C++ Toolkit 2003 , which includes the full optimizing C++ compiler found in VC++ 2003 professional. It also includes the STL, standard C library, and some samples. Definately worth checking out if you're in...
.NET Security Blog
Signing Assemblies With C# in Whidbey
Posted
over 8 years ago
by
shawnfa
16
Comments
You may be in for a surprise when you try to rebuild your strongly named assemblies written in C# under Whidbey for the first time. If you're using the AssemblyKeyFile attribute, you'll get a warning similar to this: signed.cs(4,11): warning CS1699...
.NET Security Blog
Generating a Key from a Password
Posted
over 8 years ago
by
shawnfa
31
Comments
If you're trying to encrypt data using a password, how do you convert the password into a key for symmetric encryption? The easiest way might be to simply convert the password to a byte array, and use this array as your key. However, this is a very bad...
.NET Security Blog
Ivan Writes about Strong Name Signing with Smart Cards
Posted
over 8 years ago
by
shawnfa
0
Comments
Ivan's written a new article , showing how to use keys stored on a smart card to strong name sign an assembly. Worth a read if you've ever wondered how this might be done, or wanted a more secure method than using .snk files.
.NET Security Blog
Whidbey's Secure CRT
Posted
over 8 years ago
by
shawnfa
8
Comments
One of the features that the Whidbey release of Visual C++ is going to bring is the new Secure CRT. The C++ library team has put a lot of work into creating safe alternatives to the old C runtime library functions that seem to always be behind security...
.NET Security Blog
Using XPath to Sign Specific XML
Posted
over 8 years ago
by
shawnfa
13
Comments
In my last posting , I promised to write about a more general purpose way of selecting specific XML to sign. Although the technique I presented in the last post will work, it requires a custom class derived from SignedXml, and will not work unless both...
.NET Security Blog
Searching for Custom ID Tags With Signed XML
Posted
over 8 years ago
by
shawnfa
16
Comments
Last week, I blogged about using references to sign only specific parts of an XML document. The biggest limitation with doing this is that you must refer to the nodes that are being signed by ID, which for v1.1 and 1.0 of the framework was given by an...
Page 1 of 1 (15 items)