Generating XML Digital Signature Using JavaScript

I need to create an XML digital signature on the client.

I have a plugin through which I can get:

  • Digest value using the specified digest method
  • Signature value using certificate selected by client
  • X509Data li>

But I can not do canonicalization and conversion using the specified methods.

Canonicalization: xml-exc-c14n .

Transformation: enveloped-signature .

Are there any JavaScript libraries that can do canonicalization and conversion of an XML document?

Thanks for any answer!

+3
source share

All Articles