epp-client-secdns 0.11.0

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.
@@ -0,0 +1,93 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+
3
+ <schema targetNamespace="urn:ietf:params:xml:ns:secDNS-1.0"
4
+ xmlns:secDNS="urn:ietf:params:xml:ns:secDNS-1.0"
5
+ xmlns="http://www.w3.org/2001/XMLSchema"
6
+ elementFormDefault="qualified">
7
+
8
+ <annotation>
9
+ <documentation>
10
+ Extensible Provisioning Protocol v1.0
11
+ domain name extension schema for provisioning
12
+ DNS security (DNSSEC) extensions.
13
+ </documentation>
14
+ </annotation>
15
+
16
+ <!--
17
+ Child elements found in EPP commands.
18
+ -->
19
+ <element name="create" type="secDNS:dsType"/>
20
+ <element name="update" type="secDNS:updateType"/>
21
+
22
+ <!--
23
+ Child elements of the <create> command.
24
+ -->
25
+ <complexType name="dsType">
26
+ <sequence>
27
+ <element name="dsData" type="secDNS:dsDataType"
28
+ maxOccurs="unbounded"/>
29
+ </sequence>
30
+ </complexType>
31
+
32
+ <complexType name="dsDataType">
33
+ <sequence>
34
+ <element name="keyTag" type="unsignedShort"/>
35
+ <element name="alg" type="unsignedByte"/>
36
+ <element name="digestType" type="unsignedByte"/>
37
+ <element name="digest" type="hexBinary"/>
38
+ <element name="maxSigLife" type="secDNS:maxSigLifeType"
39
+ minOccurs="0"/>
40
+ <element name="keyData" type="secDNS:keyDataType"
41
+ minOccurs="0"/>
42
+ </sequence>
43
+ </complexType>
44
+
45
+ <simpleType name="maxSigLifeType">
46
+ <restriction base="int">
47
+ <minInclusive value="1"/>
48
+ </restriction>
49
+ </simpleType>
50
+
51
+ <complexType name="keyDataType">
52
+ <sequence>
53
+ <element name="flags" type="unsignedShort"/>
54
+ <element name="protocol" type="unsignedByte"/>
55
+ <element name="alg" type="unsignedByte"/>
56
+ <element name="pubKey" type="secDNS:keyType"/>
57
+ </sequence>
58
+ </complexType>
59
+
60
+ <simpleType name="keyType">
61
+ <restriction base="base64Binary">
62
+ <minLength value="1"/>
63
+ </restriction>
64
+ </simpleType>
65
+
66
+ <!--
67
+ Child elements of the <update> command.
68
+ -->
69
+ <complexType name="updateType">
70
+ <choice>
71
+ <element name="add" type="secDNS:dsType"/>
72
+ <element name="chg" type="secDNS:dsType"/>
73
+ <element name="rem" type="secDNS:remType"/>
74
+ </choice>
75
+ <attribute name="urgent" type="boolean" default="false"/>
76
+ </complexType>
77
+
78
+ <complexType name="remType">
79
+ <sequence>
80
+ <element name="keyTag" type="unsignedShort"
81
+ maxOccurs="unbounded"/>
82
+ </sequence>
83
+ </complexType>
84
+
85
+ <!--
86
+ Child response elements.
87
+ -->
88
+ <element name="infData" type="secDNS:dsType"/>
89
+
90
+ <!--
91
+ End of schema.
92
+ -->
93
+ </schema>
@@ -0,0 +1,127 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <schema
3
+ targetNamespace="urn:ietf:params:xml:ns:secDNS-1.1"
4
+ xmlns:secDNS="urn:ietf:params:xml:ns:secDNS-1.1"
5
+ xmlns="http://www.w3.org/2001/XMLSchema"
6
+ elementFormDefault="qualified">
7
+
8
+ <annotation>
9
+ <documentation>
10
+ Extensible Provisioning Protocol v1.0
11
+ domain name extension schema
12
+ for provisioning DNS security (DNSSEC) extensions.
13
+ </documentation>
14
+ </annotation>
15
+
16
+ <!--
17
+ Child elements found in EPP commands.
18
+ -->
19
+ <element name="create" type="secDNS:dsOrKeyType"/>
20
+ <element name="update" type="secDNS:updateType"/>
21
+
22
+ <!--
23
+ Child elements supporting either the
24
+ dsData or the keyData interface.
25
+ -->
26
+ <complexType name="dsOrKeyType">
27
+ <sequence>
28
+ <element name="maxSigLife" type="secDNS:maxSigLifeType"
29
+ minOccurs="0"/>
30
+ <choice>
31
+ <element name="dsData" type="secDNS:dsDataType"
32
+ maxOccurs="unbounded"/>
33
+ <element name="keyData" type="secDNS:keyDataType"
34
+ maxOccurs="unbounded"/>
35
+ </choice>
36
+ </sequence>
37
+ </complexType>
38
+
39
+ <!--
40
+ Definition for the maximum signature lifetime (maxSigLife)
41
+ -->
42
+ <simpleType name="maxSigLifeType">
43
+ <restriction base="int">
44
+ <minInclusive value="1"/>
45
+ </restriction>
46
+ </simpleType>
47
+
48
+ <!--
49
+ Child elements of dsData used for dsData interface
50
+ -->
51
+ <complexType name="dsDataType">
52
+ <sequence>
53
+ <element name="keyTag" type="unsignedShort"/>
54
+ <element name="alg" type="unsignedByte"/>
55
+ <element name="digestType" type="unsignedByte"/>
56
+ <element name="digest" type="hexBinary"/>
57
+ <element name="keyData" type="secDNS:keyDataType"
58
+ minOccurs="0"/>
59
+ </sequence>
60
+ </complexType>
61
+
62
+ <!--
63
+ Child elements of keyData used for keyData interface
64
+ and optionally with dsData interface
65
+ -->
66
+ <complexType name="keyDataType">
67
+ <sequence>
68
+ <element name="flags" type="unsignedShort"/>
69
+ <element name="protocol" type="unsignedByte"/>
70
+ <element name="alg" type="unsignedByte"/>
71
+ <element name="pubKey" type="secDNS:keyType"/>
72
+ </sequence>
73
+ </complexType>
74
+
75
+ <!--
76
+ Definition for the public key
77
+ -->
78
+ <simpleType name="keyType">
79
+ <restriction base="base64Binary">
80
+ <minLength value="1"/>
81
+ </restriction>
82
+ </simpleType>
83
+
84
+ <!--
85
+ Child elements of the <update> element.
86
+ -->
87
+ <complexType name="updateType">
88
+ <sequence>
89
+ <element name="rem" type="secDNS:remType"
90
+ minOccurs="0"/>
91
+ <element name="add" type="secDNS:dsOrKeyType"
92
+ minOccurs="0"/>
93
+ <element name="chg" type="secDNS:chgType"
94
+ minOccurs="0"/>
95
+ </sequence>
96
+ <attribute name="urgent" type="boolean" default="false"/>
97
+ </complexType>
98
+
99
+ <!--
100
+ Child elements of the <rem> command.
101
+ -->
102
+ <complexType name="remType">
103
+ <choice>
104
+ <element name="all" type="boolean"/>
105
+ <element name="dsData" type="secDNS:dsDataType"
106
+ maxOccurs="unbounded"/>
107
+ <element name="keyData" type="secDNS:keyDataType"
108
+ maxOccurs="unbounded"/>
109
+ </choice>
110
+ </complexType>
111
+
112
+ <!--
113
+ Child elements supporting the <chg> element.
114
+ -->
115
+ <complexType name="chgType">
116
+ <sequence>
117
+ <element name="maxSigLife" type="secDNS:maxSigLifeType"
118
+ minOccurs="0"/>
119
+ </sequence>
120
+ </complexType>
121
+
122
+ <!--
123
+ Child response elements.
124
+ -->
125
+ <element name="infData" type="secDNS:dsOrKeyType"/>
126
+
127
+ </schema>
metadata ADDED
@@ -0,0 +1,126 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: epp-client-secdns
3
+ version: !ruby/object:Gem::Version
4
+ hash: 51
5
+ prerelease:
6
+ segments:
7
+ - 0
8
+ - 11
9
+ - 0
10
+ version: 0.11.0
11
+ platform: ruby
12
+ authors:
13
+ - Mathieu Arnold
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2010-05-14 00:00:00 Z
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ name: bundler
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ none: false
25
+ requirements:
26
+ - - ">="
27
+ - !ruby/object:Gem::Version
28
+ hash: 23
29
+ segments:
30
+ - 1
31
+ - 0
32
+ - 0
33
+ version: 1.0.0
34
+ type: :development
35
+ version_requirements: *id001
36
+ - !ruby/object:Gem::Dependency
37
+ name: nokogiri
38
+ prerelease: false
39
+ requirement: &id002 !ruby/object:Gem::Requirement
40
+ none: false
41
+ requirements:
42
+ - - ~>
43
+ - !ruby/object:Gem::Version
44
+ hash: 7
45
+ segments:
46
+ - 1
47
+ - 4
48
+ version: "1.4"
49
+ type: :runtime
50
+ version_requirements: *id002
51
+ - !ruby/object:Gem::Dependency
52
+ name: builder
53
+ prerelease: false
54
+ requirement: &id003 !ruby/object:Gem::Requirement
55
+ none: false
56
+ requirements:
57
+ - - ">="
58
+ - !ruby/object:Gem::Version
59
+ hash: 15
60
+ segments:
61
+ - 2
62
+ - 1
63
+ - 2
64
+ version: 2.1.2
65
+ type: :runtime
66
+ version_requirements: *id003
67
+ description: SecDNS EPP client library.
68
+ email:
69
+ - m@absolight.fr
70
+ executables: []
71
+
72
+ extensions: []
73
+
74
+ extra_rdoc_files: []
75
+
76
+ files:
77
+ - ChangeLog
78
+ - Gemfile
79
+ - MIT-LICENSE
80
+ - README
81
+ - Rakefile
82
+ - epp-client-secdns.gemspec
83
+ - lib/epp-client/secdns.rb
84
+ - vendor/ietf/rfc4310.txt
85
+ - vendor/ietf/rfc5910.txt
86
+ - vendor/ietf/secDNS-1.0.xsd
87
+ - vendor/ietf/secDNS-1.1.xsd
88
+ homepage: https://github.com/Absolight/epp-client
89
+ licenses: []
90
+
91
+ post_install_message:
92
+ rdoc_options: []
93
+
94
+ require_paths:
95
+ - lib
96
+ required_ruby_version: !ruby/object:Gem::Requirement
97
+ none: false
98
+ requirements:
99
+ - - ">="
100
+ - !ruby/object:Gem::Version
101
+ hash: 57
102
+ segments:
103
+ - 1
104
+ - 8
105
+ - 7
106
+ version: 1.8.7
107
+ required_rubygems_version: !ruby/object:Gem::Requirement
108
+ none: false
109
+ requirements:
110
+ - - ">="
111
+ - !ruby/object:Gem::Version
112
+ hash: 23
113
+ segments:
114
+ - 1
115
+ - 3
116
+ - 6
117
+ version: 1.3.6
118
+ requirements: []
119
+
120
+ rubyforge_project:
121
+ rubygems_version: 1.8.16
122
+ signing_key:
123
+ specification_version: 3
124
+ summary: SecDNS EPP client library
125
+ test_files: []
126
+