UNPKG

xmldsigjs

Version:

XMLDSIGjs provides an implementation of XMLDSIG in Typescript/Javascript based on WebCrypto

17 lines (16 loc) 516 B
import { XmlSignatureObject } from "./xml_object"; /** * * <element name="DigestMethod" type="ds:DigestMethodType"/> * <complexType name="DigestMethodType" mixed="true"> * <sequence> * <any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/> * </sequence> * <attribute name="Algorithm" type="anyURI" use="required"/> * </complexType> * */ export declare class DigestMethod extends XmlSignatureObject { Algorithm: string; constructor(hashNamespace?: string); }