XmlSignatureConfig constructor

const XmlSignatureConfig({
  1. String? signatureId,
  2. String canonicalizationMethod = 'http://www.w3.org/TR/2001/REC-xml-c14n-20010315',
  3. String signatureMethod = 'http://www.w3.org/2001/04/xmldsig-more#rsa-sha256',
  4. String digestMethod = 'http://www.w3.org/2001/04/xmlenc#sha256',
  5. String? referenceUri,
  6. Map<String, String>? namespaces,
  7. bool includeCertificate = true,
  8. bool enveloped = true,
  9. String? xpath,
})

Implementation

const XmlSignatureConfig({
  this.signatureId,
  this.canonicalizationMethod = 'http://www.w3.org/TR/2001/REC-xml-c14n-20010315',
  this.signatureMethod = 'http://www.w3.org/2001/04/xmldsig-more#rsa-sha256',
  this.digestMethod = 'http://www.w3.org/2001/04/xmlenc#sha256',
  this.referenceUri,
  this.namespaces,
  this.includeCertificate = true,
  this.enveloped = true,
  this.xpath,
});