Reputation: 31
I would Like to know which type of certificate do I need to get from a Certification Authority to Sign an XML Document in .NET ?
We have a xml eletronic invoice that we need to sign using a Digital Certificate.
Any thoughts?
Upvotes: 2
Views: 1041
Reputation: 159
As far as I know, you only need a certificate with has sign purpose. You can import it in the certificates store of Windows to use it directly.
After that, you can use it to sign using one of the many libraries available. For example:
Regards
Upvotes: 1