show/hide this revision's text 3 After retesting I decided to rewrite and add observations.

It appears that the MSDN Sample uses Samples use default parameters and this results in machine- specific keys so signing such that you cannot sign on one machine and verify on anotheran arbitrary other machine. I am trying to modify modified the logic in those samples to use the keys in my snk on one the signing machine and keys from my assembly in the otherverifying machine. This was done using the logic from the MSDN sample and routines in the (very nicely done) ExcryptionUtils.cs sample linked above.

For signing the file, I used this:

RSACryptoServiceProvider rsaKey = EncryptionUtils.GetRSAFromSnkFile(keyFilePath);

For verifying the file, I used this:

RSACryptoServiceProvider rsaKey = EncryptionUtils.GetPublicKeyFromAssembly
   (System.Reflection.Assembly.GetExecutingAssembly());

BTW: I observed that the XML signature verification ignores XML comments.

show/hide this revision's text 2 deleted 1280 characters in body

It appears that the MSDN Sample uses machine specific keys so you cannot sign on one machine and verify on another. I modified am trying to modify the logic in those samples to use the keys in my snk/assembly:

  public static void SignFile(string filePath, string keyFilePath)
  {
     // Create a new CspParameters object to specify
     // a key container.
     CspParameters cspParams = new CspParameters();
     cspParams.KeyContainerName = "XML_DSIG_RSA_KEY";

// changed this:

     // Create a new RSA signing key and save it in the container. 
     // RSACryptoServiceProvider rsaKey = new RSACryptoServiceProvider(cspParams);

// to this:

     // Create a new RSA signing key using the snk file
     RSACryptoServiceProvider rsaKey = EncryptionUtils.GetRSAFromSnkFile(keyFilePath);

...

  public static bool VerifyFile(string filePath)
  {
     // Create a new CspParameters object to specify
     // a key container.
     CspParameters cspParams = new CspParameters();
     cspParams.KeyContainerName = "XML_DSIG_RSA_KEY";

// changed this:

     // Create a new RSA signing key on one machine and save it my assembly in the containerother.// RSACryptoServiceProvider rsaKey = new RSACryptoServiceProvider(cspParams);

// to this:

     // Create a new RSA signing key from the public assembly key
     RSACryptoServiceProvider rsaKey = EncryptionUtils.GetPublicKeyFromAssembly(System.Reflection.Assembly.GetExecutingAssembly());

show/hide this revision's text 1

It appears that the MSDN Sample uses machine specific keys so you cannot sign on one machine and verify on another. I modified the logic in those samples to use the keys in my snk/assembly:

  public static void SignFile(string filePath, string keyFilePath)
  {
     // Create a new CspParameters object to specify
     // a key container.
     CspParameters cspParams = new CspParameters();
     cspParams.KeyContainerName = "XML_DSIG_RSA_KEY";

// changed this:

     // Create a new RSA signing key and save it in the container. 
     // RSACryptoServiceProvider rsaKey = new RSACryptoServiceProvider(cspParams);

// to this:

     // Create a new RSA signing key using the snk file
     RSACryptoServiceProvider rsaKey = EncryptionUtils.GetRSAFromSnkFile(keyFilePath);

...

  public static bool VerifyFile(string filePath)
  {
     // Create a new CspParameters object to specify
     // a key container.
     CspParameters cspParams = new CspParameters();
     cspParams.KeyContainerName = "XML_DSIG_RSA_KEY";

// changed this:

     // Create a new RSA signing key and save it in the container. 
     // RSACryptoServiceProvider rsaKey = new RSACryptoServiceProvider(cspParams);

// to this:

     // Create a new RSA signing key from the public assembly key
     RSACryptoServiceProvider rsaKey = EncryptionUtils.GetPublicKeyFromAssembly(System.Reflection.Assembly.GetExecutingAssembly());