Carlos Lone
Carlos Lone

Reputation: 31

XML Digital Signature in .NET

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

Answers (1)

Luis M. Villa
Luis M. Villa

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:

  • In Java, the signature applet created by the Jaume I University (CryptoApplet), that you can find at projectestic.uji.es/pr/cryptoapplet
  • In .NET: a new project I'm involved in (XAdES .NET Project), that you can find at xadesnet.codeplex.com

Regards

Upvotes: 1

Related Questions