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.
