gitextract_0mi2stbx/ ├── .github/ │ └── workflows/ │ └── ci.yml ├── .gitignore ├── .npmignore ├── LICENSE.md ├── README.md ├── eslint.config.mjs ├── examples/ │ └── html/ │ ├── sign.html │ ├── src/ │ │ ├── helper.js │ │ └── main.js │ └── verify.html ├── package.json ├── rollup.config.js ├── src/ │ ├── dateformat.ts │ ├── index.ts │ ├── signed_xml.ts │ └── xml/ │ ├── any.ts │ ├── certificate_values.ts │ ├── commitment_type_indication.ts │ ├── complete_certificate_refs.ts │ ├── complete_revocation_refs.ts │ ├── converter.ts │ ├── counter_signature.ts │ ├── data_object.ts │ ├── data_object_format.ts │ ├── date_time.ts │ ├── encapsulated_pki_data.ts │ ├── generic_time_stamp.ts │ ├── index.ts │ ├── object_identifier.ts │ ├── other_time_stamp.ts │ ├── qualifying_properties.ts │ ├── qualifying_properties_reference.ts │ ├── revocation_values.ts │ ├── signature_policy_identifier.ts │ ├── signature_product_place.ts │ ├── signed_data_object_properties.ts │ ├── signed_properties.ts │ ├── signed_signature_properties.ts │ ├── signer_role.ts │ ├── signing_certificate.ts │ ├── signing_certificate_v2.ts │ ├── unsigned_data_object_property.ts │ ├── unsigned_properties.ts │ ├── unsigned_signature_properties.ts │ ├── xades.xsd │ ├── xades_time_stamp.ts │ ├── xml.ts │ └── xml_base.ts ├── test/ │ ├── signed_xml/ │ │ └── signing.ts │ ├── vectors/ │ │ └── reading.ts │ └── xml/ │ ├── date_time.ts │ ├── encapsulated_pki_data.ts │ ├── generic_time_stamp.ts │ └── object_identifier.ts ├── tsconfig.json └── tsconfig.types.json