xmldsigjs
Version:
XML Digital Signature implementation in TypeScript/JavaScript using Web Crypto API
26 lines (25 loc) • 733 B
TypeScript
import { XmlSignatureObject } from './xml_object.js';
/**
* Represents the <CanonicalizationMethod> element of an XML signature.
*
* ```xml
* <element name="CanonicalizationMethod" type="ds:CanonicalizationMethodType"/>
* <complexType name="CanonicalizationMethodType" mixed="true">
* <sequence>
* <any namespace="##any" minOccurs="0" maxOccurs="unbounded"/>
* <!-- (0,unbounded) elements from (1,1) namespace -->
* </sequence>
* <attribute name="Algorithm" type="anyURI" use="required"/>
* </complexType>
* ```
*/
/**
*
*
* @export
* @class CanonicalizationMethod
* @extends {XmlSignatureObject}
*/
export declare class CanonicalizationMethod extends XmlSignatureObject {
Algorithm: string;
}