Skip to content

Latest commit

 

History

History
17 lines (10 loc) · 309 Bytes

README.md

File metadata and controls

17 lines (10 loc) · 309 Bytes

XAdES

Utility .net class to sign xml width XAdES-BES (XML Advanced Electronic Signatures) digital signature.

Example

String sXml = "<x></x>";

XAdES xades = new XAdES("CERTNAME");

String sOut = xades.Sign(sXml, true);

Contributors