epics 2.10.0 → 3.0.0.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +2 -1
- data/.semaphore/semaphore.yml +17 -8
- data/CHANGELOG.md +97 -0
- data/EBICS_REFERENCES.md +169 -0
- data/README.md +219 -50
- data/lib/epics/azv.rb +3 -10
- data/lib/epics/b2b.rb +3 -10
- data/lib/epics/bka.rb +3 -14
- data/lib/epics/builders/body_builder/base.rb +26 -0
- data/lib/epics/builders/body_builder/v2.rb +9 -0
- data/lib/epics/builders/body_builder/v3.rb +9 -0
- data/lib/epics/builders/body_builder.rb +6 -0
- data/lib/epics/builders/data_encryption_info_builder.rb +29 -0
- data/lib/epics/builders/data_transfer_builder/base.rb +52 -0
- data/lib/epics/builders/data_transfer_builder/v2.rb +9 -0
- data/lib/epics/builders/data_transfer_builder/v3.rb +12 -0
- data/lib/epics/builders/data_transfer_builder.rb +6 -0
- data/lib/epics/builders/header_builder/base.rb +26 -0
- data/lib/epics/builders/header_builder/v2.rb +9 -0
- data/lib/epics/builders/header_builder/v3.rb +9 -0
- data/lib/epics/builders/header_builder.rb +6 -0
- data/lib/epics/builders/mutable_builder.rb +28 -0
- data/lib/epics/builders/order_details_builder/base.rb +100 -0
- data/lib/epics/builders/order_details_builder/v2.rb +21 -0
- data/lib/epics/builders/order_details_builder/v3.rb +51 -0
- data/lib/epics/builders/order_details_builder.rb +10 -0
- data/lib/epics/builders/request_builder.rb +25 -0
- data/lib/epics/builders/static_builder/base.rb +75 -0
- data/lib/epics/builders/static_builder/v2.rb +9 -0
- data/lib/epics/builders/static_builder/v3.rb +9 -0
- data/lib/epics/builders/static_builder.rb +9 -0
- data/lib/epics/builders/transfer_receipt_builder.rb +19 -0
- data/lib/epics/builders/xml_builder/base.rb +92 -0
- data/lib/epics/builders/xml_builder/v24.rb +31 -0
- data/lib/epics/builders/xml_builder/v25.rb +31 -0
- data/lib/epics/builders/xml_builder/v3.rb +31 -0
- data/lib/epics/builders/xml_builder.rb +7 -0
- data/lib/epics/builders.rb +13 -0
- data/lib/epics/c2s.rb +3 -10
- data/lib/epics/c52.rb +2 -14
- data/lib/epics/c53.rb +2 -14
- data/lib/epics/c54.rb +2 -14
- data/lib/epics/c5n.rb +3 -14
- data/lib/epics/ccs.rb +3 -10
- data/lib/epics/cct.rb +3 -10
- data/lib/epics/cd1.rb +3 -10
- data/lib/epics/cdb.rb +3 -10
- data/lib/epics/cdd.rb +3 -10
- data/lib/epics/cds.rb +3 -10
- data/lib/epics/cdz.rb +3 -14
- data/lib/epics/cip.rb +3 -10
- data/lib/epics/client.rb +491 -123
- data/lib/epics/crypt/aes.rb +56 -0
- data/lib/epics/crypt/x_509.rb +52 -0
- data/lib/epics/crypt.rb +5 -0
- data/lib/epics/crz.rb +3 -14
- data/lib/epics/factories/crypt/aes_factory.rb +5 -0
- data/lib/epics/factories/crypt.rb +4 -0
- data/lib/epics/factories/request_factory/base.rb +236 -0
- data/lib/epics/factories/request_factory/v2.rb +194 -0
- data/lib/epics/factories/request_factory/v24.rb +32 -0
- data/lib/epics/factories/request_factory/v25.rb +31 -0
- data/lib/epics/factories/request_factory/v3.rb +305 -0
- data/lib/epics/factories/request_factory.rb +8 -0
- data/lib/epics/factories.rb +5 -0
- data/lib/epics/fdl.rb +3 -18
- data/lib/epics/ful.rb +6 -0
- data/lib/epics/generic_request.rb +31 -92
- data/lib/epics/generic_upload_request.rb +14 -67
- data/lib/epics/haa.rb +3 -9
- data/lib/epics/hac.rb +3 -14
- data/lib/epics/handlers/auth_signature_handler.rb +102 -0
- data/lib/epics/handlers/order_data_handler/base.rb +98 -0
- data/lib/epics/handlers/order_data_handler/v2.rb +39 -0
- data/lib/epics/handlers/order_data_handler/v24.rb +11 -0
- data/lib/epics/handlers/order_data_handler/v25.rb +11 -0
- data/lib/epics/handlers/order_data_handler/v3.rb +41 -0
- data/lib/epics/handlers/order_data_handler.rb +8 -0
- data/lib/epics/handlers/user_signature_handler/base.rb +10 -0
- data/lib/epics/handlers/user_signature_handler/v2.rb +17 -0
- data/lib/epics/handlers/user_signature_handler/v3.rb +17 -0
- data/lib/epics/handlers/user_signature_handler.rb +6 -0
- data/lib/epics/handlers.rb +6 -0
- data/lib/epics/hev.rb +2 -15
- data/lib/epics/hia.rb +4 -55
- data/lib/epics/hkd.rb +3 -9
- data/lib/epics/hpb.rb +3 -13
- data/lib/epics/hpd.rb +3 -9
- data/lib/epics/htd.rb +3 -9
- data/lib/epics/ini.rb +4 -46
- data/lib/epics/keyring.rb +17 -0
- data/lib/epics/letter_renderer.rb +17 -22
- data/lib/epics/ptk.rb +3 -14
- data/lib/epics/response.rb +34 -29
- data/lib/epics/services/crypt_service.rb +62 -0
- data/lib/epics/services/digest_resolver/base.rb +30 -0
- data/lib/epics/services/digest_resolver/v2.rb +13 -0
- data/lib/epics/services/digest_resolver/v3.rb +19 -0
- data/lib/epics/services/digest_resolver.rb +6 -0
- data/lib/epics/services.rb +5 -0
- data/lib/epics/signature.rb +50 -0
- data/lib/epics/{key.rb → signature_algorithm/base.rb} +14 -21
- data/lib/epics/signature_algorithm/rsa.rb +50 -0
- data/lib/epics/signature_algorithm/rsapkcs1.rb +16 -0
- data/lib/epics/signature_algorithm/rsapss.rb +20 -0
- data/lib/epics/signature_algorithm.rb +2 -0
- data/lib/epics/sta.rb +3 -14
- data/lib/epics/version.rb +1 -1
- data/lib/epics/vmk.rb +3 -14
- data/lib/epics/wss.rb +3 -9
- data/lib/epics/xct.rb +3 -10
- data/lib/epics/xds.rb +3 -10
- data/lib/epics/xe2.rb +3 -10
- data/lib/epics/xe3.rb +3 -10
- data/lib/epics/xek.rb +5 -0
- data/lib/epics/yct.rb +6 -0
- data/lib/epics/z01.rb +2 -14
- data/lib/epics/z52.rb +2 -14
- data/lib/epics/z53.rb +2 -14
- data/lib/epics/z54.rb +2 -14
- data/lib/epics/zsr.rb +5 -0
- data/lib/epics.rb +69 -5
- data/lib/letter/ini.erb +27 -6
- data/spec/aes_spec.rb +46 -0
- data/spec/auth_signature_handler_spec.rb +58 -0
- data/spec/builders_spec.rb +616 -0
- data/spec/certificate_handling_spec.rb +189 -0
- data/spec/client_setup_block_spec.rb +41 -0
- data/spec/client_spec.rb +143 -91
- data/spec/crypt_service_spec.rb +132 -0
- data/spec/date_range_spec.rb +46 -0
- data/spec/digest_resolver_spec.rb +164 -0
- data/spec/fixtures/bank_x509.pem +3 -0
- data/spec/fixtures/xml/haa.xml +40 -1
- data/spec/fixtures/xml/haa_receipt.xml +33 -30
- data/spec/fixtures/xml/haa_response_h004.xml +4 -0
- data/spec/fixtures/xml/haa_response_h005.xml +38 -0
- data/spec/fixtures/xml/hia_request_order_data.xml +24 -1
- data/spec/fixtures/xml/hpb_request.xml +1 -1
- data/spec/fixtures/xml/hpb_response_x509.xml +16 -0
- data/spec/fixtures/xml/htd_order_data_h005.xml +55 -0
- data/spec/fixtures/xml/jruby/hia.xml +20 -22
- data/spec/fixtures/xml/jruby/ini.xml +1 -3
- data/spec/fixtures/xml/ruby/hia.xml +21 -1
- data/spec/fixtures/xml/ruby/ini.xml +21 -1
- data/spec/handlers_spec.rb +267 -0
- data/spec/hpb_malformed_certificate_spec.rb +36 -0
- data/spec/key_file_decryption_spec.rb +27 -0
- data/spec/key_file_preservation_spec.rb +78 -0
- data/spec/keyring_spec.rb +349 -0
- data/spec/middleware/parse_ebics_spec.rb +2 -1
- data/spec/order_id_spec.rb +65 -0
- data/spec/orders/azv_spec.rb +63 -7
- data/spec/orders/b2b_spec.rb +68 -3
- data/spec/orders/bka_spec.rb +34 -4
- data/spec/orders/c2s_spec.rb +62 -9
- data/spec/orders/c52_spec.rb +34 -4
- data/spec/orders/c53_spec.rb +34 -4
- data/spec/orders/c54_spec.rb +36 -4
- data/spec/orders/c5n_spec.rb +36 -4
- data/spec/orders/camt_parity_spec.rb +80 -0
- data/spec/orders/ccs_spec.rb +62 -9
- data/spec/orders/cct_spec.rb +83 -9
- data/spec/orders/cd1_spec.rb +50 -7
- data/spec/orders/cdb_spec.rb +64 -7
- data/spec/orders/cdd_spec.rb +64 -7
- data/spec/orders/cds_spec.rb +74 -0
- data/spec/orders/cdz_spec.rb +67 -4
- data/spec/orders/cip_spec.rb +61 -9
- data/spec/orders/crz_spec.rb +67 -4
- data/spec/orders/fdl_spec.rb +143 -13
- data/spec/orders/ful_spec.rb +63 -0
- data/spec/orders/haa_spec.rb +115 -9
- data/spec/orders/hac_spec.rb +89 -10
- data/spec/orders/hev_spec.rb +1 -6
- data/spec/orders/hia_spec.rb +25 -22
- data/spec/orders/hkd_spec.rb +23 -4
- data/spec/orders/hpb_spec.rb +7 -4
- data/spec/orders/hpd_spec.rb +23 -4
- data/spec/orders/htd_spec.rb +23 -4
- data/spec/orders/ini_spec.rb +23 -18
- data/spec/orders/ptk_spec.rb +27 -4
- data/spec/orders/sta_spec.rb +129 -11
- data/spec/orders/vmk_spec.rb +36 -4
- data/spec/orders/wss_spec.rb +29 -3
- data/spec/orders/x_509_certificate_spec.rb +9 -1
- data/spec/orders/xct_spec.rb +63 -0
- data/spec/orders/xds_spec.rb +13 -6
- data/spec/orders/xe2_spec.rb +64 -7
- data/spec/orders/xe3_spec.rb +64 -7
- data/spec/orders/xek_spec.rb +31 -0
- data/spec/orders/yct_spec.rb +43 -0
- data/spec/orders/z01_spec.rb +34 -4
- data/spec/orders/z52_spec.rb +34 -4
- data/spec/orders/z53_spec.rb +34 -4
- data/spec/orders/z54_spec.rb +36 -4
- data/spec/orders/zsr_spec.rb +31 -0
- data/spec/request_factory_spec.rb +444 -0
- data/spec/response_business_error_spec.rb +45 -0
- data/spec/response_validation_spec.rb +23 -0
- data/spec/{key_spec.rb → signature_algorithm/rsa_pss_spec.rb} +4 -13
- data/spec/support/ebics_matcher.rb +17 -9
- data/spec/support/ebics_shared_examples.rb +642 -0
- data/spec/support/h005_client_helper.rb +23 -0
- data/spec/upload_digest_spec.rb +69 -0
- data/spec/user_signature_handler_spec.rb +25 -0
- data/spec/version_support_error_spec.rb +76 -0
- data/spec/xsd/{ebics_hev.xsd → H000/ebics_hev.xsd} +0 -0
- data/spec/xsd/H003/ebics.xsd +11 -0
- data/spec/xsd/H003/ebics_keymgmt_request.xsd +555 -0
- data/spec/xsd/H003/ebics_keymgmt_response.xsd +131 -0
- data/spec/xsd/H003/ebics_orders.xsd +1811 -0
- data/spec/xsd/H003/ebics_request.xsd +354 -0
- data/spec/xsd/H003/ebics_response.xsd +161 -0
- data/spec/xsd/{ebics_signature.xsd → H003/ebics_signature.xsd} +0 -0
- data/spec/xsd/H003/ebics_types.xsd +2361 -0
- data/spec/xsd/H003/xmldsig-core-schema.xsd +318 -0
- data/spec/xsd/H004/ebics_signature.xsd +217 -0
- data/spec/xsd/H005/ebics_H005.xsd +11 -0
- data/spec/xsd/H005/ebics_keymgmt_request_H005.xsd +523 -0
- data/spec/xsd/H005/ebics_keymgmt_response_H005.xsd +137 -0
- data/spec/xsd/H005/ebics_orders_H005.xsd +2094 -0
- data/spec/xsd/H005/ebics_request_H005.xsd +349 -0
- data/spec/xsd/H005/ebics_response_H005.xsd +167 -0
- data/spec/xsd/H005/ebics_signature_S002.xsd +177 -0
- data/spec/xsd/H005/ebics_types_H005.xsd +1885 -0
- data/spec/xsd/H005/xmldsig-core-schema.xsd +318 -0
- metadata +200 -36
- data/lib/epics/header_request.rb +0 -58
- data/lib/epics/middleware/xmlsig.rb +0 -16
- data/lib/epics/signer.rb +0 -40
- data/lib/epics/x_509_certificate.rb +0 -15
- data/lib/letter/ini_with_certs.erb +0 -335
- data/spec/generic_upload_spec.rb +0 -58
- data/spec/hpb_spec.rb +0 -15
- data/spec/signer_spec.rb +0 -34
- /data/spec/xsd/{ebics_H004.xsd → H004/ebics_H004.xsd} +0 -0
- /data/spec/xsd/{ebics_keymgmt_request_H004.xsd → H004/ebics_keymgmt_request_H004.xsd} +0 -0
- /data/spec/xsd/{ebics_keymgmt_response_H004.xsd → H004/ebics_keymgmt_response_H004.xsd} +0 -0
- /data/spec/xsd/{ebics_orders_H004.xsd → H004/ebics_orders_H004.xsd} +0 -0
- /data/spec/xsd/{ebics_request_H004.xsd → H004/ebics_request_H004.xsd} +0 -0
- /data/spec/xsd/{ebics_response_H004.xsd → H004/ebics_response_H004.xsd} +0 -0
- /data/spec/xsd/{ebics_types_H004.xsd → H004/ebics_types_H004.xsd} +0 -0
- /data/spec/xsd/{xmldsig-core-schema.xsd → H004/xmldsig-core-schema.xsd} +0 -0
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!-- edited with XMLSpy v2016 sp1 (x64) (http://www.altova.com) by EBICS Working Group - October 2016 -->
|
|
3
|
+
<schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:esig="http://www.ebics.org/S002" targetNamespace="http://www.ebics.org/S002" elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
|
|
4
|
+
<import namespace="http://www.w3.org/2000/09/xmldsig#" schemaLocation="xmldsig-core-schema.xsd"/>
|
|
5
|
+
<annotation>
|
|
6
|
+
<documentation xml:lang="de">ebics_signature enthält Typdefinitionen für elektronische Unterschriften der Versionen A005, A006 und folgende.</documentation>
|
|
7
|
+
<documentation xml:lang="en">ebics_EU contains type definitions for electronic signatures: versions A005, A006 and et sqq.</documentation>
|
|
8
|
+
</annotation>
|
|
9
|
+
<!-- Elementdefinitionen für die EU. Die XML-Klartext-Struktur wird im EBICS-Signaturdatenkontext binär interpretiert.-->
|
|
10
|
+
<element name="EBICSSignatureData" abstract="true">
|
|
11
|
+
<annotation>
|
|
12
|
+
<documentation xml:lang="de">XML-Strukturen für bankfachliche Elektronische Unterschriften (EUs).</documentation>
|
|
13
|
+
<documentation xml:lang="en">contains the digital signatures.</documentation>
|
|
14
|
+
</annotation>
|
|
15
|
+
</element>
|
|
16
|
+
<element name="UserSignatureData" type="esig:UserSignatureDataSigBookType" substitutionGroup="esig:EBICSSignatureData">
|
|
17
|
+
<annotation>
|
|
18
|
+
<documentation xml:lang="de">enthält die EUs der Teilnehmer.</documentation>
|
|
19
|
+
<documentation xml:lang="en">contains the digital signatures.</documentation>
|
|
20
|
+
</annotation>
|
|
21
|
+
</element>
|
|
22
|
+
<complexType name="UserSignatureDataSigBookType">
|
|
23
|
+
<annotation>
|
|
24
|
+
<documentation xml:lang="de">Datentyp für Signaturdaten des Teilnehmers beim EU-Transfer.</documentation>
|
|
25
|
+
<documentation xml:lang="en">Data type for digital signature data transferred using EBICS.</documentation>
|
|
26
|
+
</annotation>
|
|
27
|
+
<sequence>
|
|
28
|
+
<element name="OrderSignatureData" type="esig:OrderSignatureDataType" maxOccurs="unbounded">
|
|
29
|
+
<annotation>
|
|
30
|
+
<documentation xml:lang="de">bankfachliche Elektronische Unterschrift oder Transportunterschrift (strukturiertes Format).</documentation>
|
|
31
|
+
<documentation xml:lang="en">Digital signature (either autorising an order or applied for transportation), structured format.</documentation>
|
|
32
|
+
</annotation>
|
|
33
|
+
</element>
|
|
34
|
+
<any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
|
|
35
|
+
</sequence>
|
|
36
|
+
</complexType>
|
|
37
|
+
<simpleType name="OrderSignatureType">
|
|
38
|
+
<annotation>
|
|
39
|
+
<documentation xml:lang="de">Datentyp für kryptographische Unterschriften.</documentation>
|
|
40
|
+
</annotation>
|
|
41
|
+
<restriction base="base64Binary"/>
|
|
42
|
+
</simpleType>
|
|
43
|
+
<element name="OrderSignatureData" type="esig:OrderSignatureDataType">
|
|
44
|
+
<annotation>
|
|
45
|
+
<documentation xml:lang="de">bankfachliche Elektronische Unterschrift oder Transportunterschrift (strukturiertes Format).</documentation>
|
|
46
|
+
<documentation xml:lang="en">Digital signature (either autorising an order or applied for transportation), structured format.</documentation>
|
|
47
|
+
</annotation>
|
|
48
|
+
</element>
|
|
49
|
+
<complexType name="OrderSignatureDataType">
|
|
50
|
+
<annotation>
|
|
51
|
+
<documentation xml:lang="de">Datentyp für bankfachliche Elektronische Unterschrift oder Transportunterschrift (strukturiertes Format).</documentation>
|
|
52
|
+
<documentation xml:lang="en">Data type according for a digital signature (either autorising an order or applied for transportation), structured format.</documentation>
|
|
53
|
+
</annotation>
|
|
54
|
+
<sequence>
|
|
55
|
+
<element name="SignatureVersion" type="esig:SignatureVersionType">
|
|
56
|
+
<annotation>
|
|
57
|
+
<documentation xml:lang="de">Version des Signaturverfahrens.</documentation>
|
|
58
|
+
<documentation xml:lang="en">Version of the algorithm used for signature creation.</documentation>
|
|
59
|
+
</annotation>
|
|
60
|
+
</element>
|
|
61
|
+
<element name="SignatureValue" type="base64Binary">
|
|
62
|
+
<annotation>
|
|
63
|
+
<documentation xml:lang="de">Digitale Signatur.</documentation>
|
|
64
|
+
<documentation xml:lang="en">Digital signature.</documentation>
|
|
65
|
+
</annotation>
|
|
66
|
+
</element>
|
|
67
|
+
<element name="PartnerID" type="esig:PartnerIDType">
|
|
68
|
+
<annotation>
|
|
69
|
+
<documentation xml:lang="de">Kunden-ID des Unterzeichners.</documentation>
|
|
70
|
+
<documentation xml:lang="en">Customer ID of the signer.</documentation>
|
|
71
|
+
</annotation>
|
|
72
|
+
</element>
|
|
73
|
+
<element name="UserID" type="esig:UserIDType">
|
|
74
|
+
<annotation>
|
|
75
|
+
<documentation xml:lang="de">Teilnehmer-ID.</documentation>
|
|
76
|
+
<documentation xml:lang="en">User ID.</documentation>
|
|
77
|
+
</annotation>
|
|
78
|
+
</element>
|
|
79
|
+
<element ref="ds:X509Data" minOccurs="0">
|
|
80
|
+
<annotation>
|
|
81
|
+
<documentation xml:lang="de">Parameter zur X.509-Funktionalität</documentation>
|
|
82
|
+
<documentation xml:lang="en">Parameter for X509Data</documentation>
|
|
83
|
+
</annotation>
|
|
84
|
+
</element>
|
|
85
|
+
</sequence>
|
|
86
|
+
</complexType>
|
|
87
|
+
<simpleType name="PartnerIDType">
|
|
88
|
+
<annotation>
|
|
89
|
+
<documentation xml:lang="de">Datentyp für eine Kunden-ID.</documentation>
|
|
90
|
+
</annotation>
|
|
91
|
+
<restriction base="token">
|
|
92
|
+
<maxLength value="35"/>
|
|
93
|
+
</restriction>
|
|
94
|
+
</simpleType>
|
|
95
|
+
<simpleType name="UserIDType">
|
|
96
|
+
<annotation>
|
|
97
|
+
<documentation xml:lang="de">Datentyp für eine Teilnehmer-ID.</documentation>
|
|
98
|
+
</annotation>
|
|
99
|
+
<restriction base="token">
|
|
100
|
+
<maxLength value="35"/>
|
|
101
|
+
</restriction>
|
|
102
|
+
</simpleType>
|
|
103
|
+
<simpleType name="SignatureVersionType">
|
|
104
|
+
<annotation>
|
|
105
|
+
<documentation xml:lang="de">Datentyp für Versionsnummern zur Elektronischen Unterschrift (EU).</documentation>
|
|
106
|
+
</annotation>
|
|
107
|
+
<restriction base="token">
|
|
108
|
+
<length value="4"/>
|
|
109
|
+
<pattern value="A\d{3}"/>
|
|
110
|
+
</restriction>
|
|
111
|
+
</simpleType>
|
|
112
|
+
<!-- Definitionen für die Uebertragung von oeffentlichen Signierschlüsseln. z.B. ueber EBICS mit INI, PUB, HCS.-->
|
|
113
|
+
<element name="SignaturePubKeyOrderData" type="esig:SignaturePubKeyOrderDataType">
|
|
114
|
+
<annotation>
|
|
115
|
+
<documentation xml:lang="de">Element für Public Key Dateien unabhängig von der Auftragsart / Geschäftsvorfall.</documentation>
|
|
116
|
+
</annotation>
|
|
117
|
+
</element>
|
|
118
|
+
<complexType name="SignaturePubKeyOrderDataType">
|
|
119
|
+
<annotation>
|
|
120
|
+
<documentation xml:lang="de">Datentyp für Public Key Dateien unabhängig von der Auftragsart / Geschäftsvorfall.</documentation>
|
|
121
|
+
</annotation>
|
|
122
|
+
<sequence>
|
|
123
|
+
<element name="SignaturePubKeyInfo" type="esig:SignaturePubKeyInfoType">
|
|
124
|
+
<annotation>
|
|
125
|
+
<documentation xml:lang="de">öffentlicher Signaturschlüssel.</documentation>
|
|
126
|
+
</annotation>
|
|
127
|
+
</element>
|
|
128
|
+
<element name="PartnerID" type="esig:PartnerIDType">
|
|
129
|
+
<annotation>
|
|
130
|
+
<documentation xml:lang="de">Kunden-ID.</documentation>
|
|
131
|
+
</annotation>
|
|
132
|
+
</element>
|
|
133
|
+
<element name="UserID" type="esig:UserIDType">
|
|
134
|
+
<annotation>
|
|
135
|
+
<documentation xml:lang="de">Teilnehmer-ID.</documentation>
|
|
136
|
+
</annotation>
|
|
137
|
+
</element>
|
|
138
|
+
<any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
|
|
139
|
+
</sequence>
|
|
140
|
+
</complexType>
|
|
141
|
+
<element name="SignaturePubKeyInfo" type="esig:SignaturePubKeyInfoType">
|
|
142
|
+
<annotation>
|
|
143
|
+
<documentation xml:lang="de">öffentlicher Signaturschlüssel.</documentation>
|
|
144
|
+
</annotation>
|
|
145
|
+
</element>
|
|
146
|
+
<complexType name="SignaturePubKeyInfoType">
|
|
147
|
+
<annotation>
|
|
148
|
+
<documentation xml:lang="de">Datentyp für öffentliche bankfachliche Schlüssel.</documentation>
|
|
149
|
+
</annotation>
|
|
150
|
+
<complexContent>
|
|
151
|
+
<extension base="esig:PubKeyInfoType">
|
|
152
|
+
<sequence>
|
|
153
|
+
<element name="SignatureVersion" type="esig:SignatureVersionType">
|
|
154
|
+
<annotation>
|
|
155
|
+
<documentation xml:lang="de">Version des EU-Signaturverfahrens.</documentation>
|
|
156
|
+
</annotation>
|
|
157
|
+
</element>
|
|
158
|
+
</sequence>
|
|
159
|
+
</extension>
|
|
160
|
+
</complexContent>
|
|
161
|
+
</complexType>
|
|
162
|
+
<complexType name="PubKeyInfoType">
|
|
163
|
+
<annotation>
|
|
164
|
+
<documentation xml:lang="de">Datentyp für die Darstellung eines öffentlichen RSA-Schlüssels als Exponent-Modulus-Kombination oder als X509-Zertifikat.</documentation>
|
|
165
|
+
</annotation>
|
|
166
|
+
<sequence>
|
|
167
|
+
<element ref="ds:X509Data"/>
|
|
168
|
+
<any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
|
|
169
|
+
</sequence>
|
|
170
|
+
</complexType>
|
|
171
|
+
<simpleType name="TimestampType">
|
|
172
|
+
<annotation>
|
|
173
|
+
<documentation xml:lang="de">Datentyp für Zeitstempel.</documentation>
|
|
174
|
+
</annotation>
|
|
175
|
+
<restriction base="dateTime"/>
|
|
176
|
+
</simpleType>
|
|
177
|
+
</schema>
|