I'm using DSA to create a signature for a binary blob, and I'm trying to figure out what I would gain from using the DSASignatureFormatter's CreateSignature(byte[]), rather than just using DSACryptoServiceProvider's CreateSignature(byte[])
As far as I can tell, the only benefit to using the DSASignatureFormatter is that I can specify the hashing algorithm by using SetHashAlgorithm(), and then the formatter takes care of hashing the data for me. In the DSACryptoServiceProvider scenario, I have to pre-hash the data before passing it to the CreateSignature method.
Is there anything else to be gained by using the Formatter?