opcua 0.12 → 0.13
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/README.md +71 -4
- data/cert/cert.h +52 -52
- data/cert/cert_key.h +101 -101
- data/example/array/Makefile +3 -0
- data/example/array/clienttest.c +168 -0
- data/example/array/open62541.h +27464 -0
- data/example/array/servertest.c +142 -0
- data/example/bug5.rb +22 -0
- data/example/client_method.rb +7 -3
- data/example/server.rb +3 -3
- data/ext/opcua/client/client.c +38 -13
- data/ext/opcua/client/client.h +2 -1
- data/ext/opcua/client/finders.c +1 -0
- data/ext/opcua/client/finders.h +1 -0
- data/ext/opcua/client/log_none.c +1 -0
- data/ext/opcua/client/log_none.h +1 -0
- data/ext/opcua/client/strnautocat.c +1 -0
- data/ext/opcua/client/strnautocat.h +1 -0
- data/ext/opcua/client/values.c +1 -0
- data/ext/opcua/client/values.h +1 -0
- data/ext/opcua/helpers/finders.c +142 -0
- data/ext/opcua/helpers/finders.h +13 -0
- data/ext/opcua/{log_none.h → helpers/log_none.c} +2 -0
- data/ext/opcua/helpers/log_none.h +12 -0
- data/ext/opcua/{strnautocat.h → helpers/strnautocat.c} +2 -0
- data/ext/opcua/helpers/strnautocat.h +8 -0
- data/ext/opcua/{values.h → helpers/values.c} +64 -25
- data/ext/opcua/helpers/values.h +12 -0
- data/ext/opcua/server/finders.c +1 -0
- data/ext/opcua/server/finders.h +1 -0
- data/ext/opcua/server/log_none.c +1 -0
- data/ext/opcua/server/log_none.h +1 -0
- data/ext/opcua/server/server.c +70 -57
- data/ext/opcua/server/server.h +4 -2
- data/ext/opcua/server/strnautocat.c +1 -0
- data/ext/opcua/server/strnautocat.h +1 -0
- data/ext/opcua/server/values.c +1 -0
- data/ext/opcua/server/values.h +1 -0
- data/opcua.gemspec +1 -1
- metadata +32 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e345f9c4d554639361dd575506d330b5ae391e2cce03b6fa6be5c0033748f8e3
|
4
|
+
data.tar.gz: 9011b057a063114638c4697659e241392999ecc6e4706da33048adfcc048012d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d8f488d4c7b451b9a135aef850e4351892879dcf00d971cfd14eddcb936a6b105712c38c15296d23bf7d85aa16a09e4c7983bcc227e7f665e4027bcf4bef9ad0
|
7
|
+
data.tar.gz: e0b99731b5bf47c216a5a76c5591e39531999a506b39313e3feadf895a1660b585658bbea20fe36f0d0971abcf757aaa798abd39e7aae1bb80bad9aa015055ef
|
data/README.md
CHANGED
@@ -10,6 +10,9 @@ The development of OPC UA applications takes currently a lot of effort. This is
|
|
10
10
|
1. [Server](#Server)
|
11
11
|
1. [Create Server and Namespace](#Create-Server-and-Namespace)
|
12
12
|
2. [Create ObjectTypes](#Create-ObjectTypes)
|
13
|
+
1.[Add Variable](#add-variable)
|
14
|
+
2.[Add Object](#add-object)
|
15
|
+
3.[Add Method](#add-method)
|
13
16
|
3. [Manifest Objects](#Manifest-Objects)
|
14
17
|
4. [Find Nodes in the Addressspace](#Find-Nodes-in-the-Addressspace)
|
15
18
|
5. [Loop for getting Real Life Data](#Loop-for-getting-Real-Life-Data)
|
@@ -56,13 +59,32 @@ sudo ldconfig -p | grep libopen62541 # check if its there
|
|
56
59
|
|
57
60
|
### Server
|
58
61
|
|
59
|
-
The server has following
|
62
|
+
The server has following functions:
|
60
63
|
* Create the server and add_namespace
|
61
64
|
* Create ObjectTypes
|
62
65
|
* Manifest ObjectTypes
|
66
|
+
* Delete Objects
|
63
67
|
* Find nodes in the adress space
|
64
68
|
* Loop for getting real life data
|
65
69
|
|
70
|
+
Every server application uses the Demonite gem, which allows to run the server as service.
|
71
|
+
```ruby
|
72
|
+
Daemonite.new do
|
73
|
+
on startup do |opts|
|
74
|
+
...
|
75
|
+
end
|
76
|
+
run do |opts|
|
77
|
+
...
|
78
|
+
end
|
79
|
+
on exit do
|
80
|
+
...
|
81
|
+
end
|
82
|
+
end.loop!
|
83
|
+
```
|
84
|
+
Each server has 3 sections the __startup__, __run__, and __exit__.
|
85
|
+
In the __startup__ we create the server and the namespace, define all nodes and typically manifest the adress space. The __run__ section loops and therefore updates the values of the nodes in the server.
|
86
|
+
On __exit__ we can d additionally things e.g. close the connection to another interface.
|
87
|
+
|
66
88
|
#### Create Server and Namespace
|
67
89
|
|
68
90
|
```ruby
|
@@ -88,10 +110,25 @@ to = server.types.add_object_type(:TestObjectType).tap{ |t|
|
|
88
110
|
```
|
89
111
|
In this example the _TestObjectType_ is defined. It consits of _TestVariable_ of the _BaseVariableType_ an _TestObject_ of the _FolderType_ and a _TestMethod_.
|
90
112
|
|
113
|
+
##### Add Variable
|
114
|
+
|
91
115
|
The ``` .add_variable :TestVariable ``` command adds a variable with the name _TestVariable_.
|
116
|
+
Multible variables can be defined at once with the ```.add_variables``` command.
|
117
|
+
```ruby
|
118
|
+
t.add_variables :TestVar1, :TestVar2
|
119
|
+
```
|
120
|
+
By default variables are read-only.
|
121
|
+
If you want to add a variable with read/write support you must use the ```.add_Varable_rw``` method.
|
122
|
+
```ruby
|
123
|
+
t.add_variable_rw :TestVar1
|
124
|
+
```
|
125
|
+
|
126
|
+
##### Add Object
|
92
127
|
|
93
128
|
With ```.add_object(:TestObject)``` a new object named _TestObject_ is added. The second parameter is optional and definies of which type the new object is. Default the object is from _BaseObjectType_. In this example the created object is from _FolderType_. All child nodes of the object can be definded in the ```tap{}``` area.
|
94
129
|
|
130
|
+
##### Add Method
|
131
|
+
|
95
132
|
Methods are added with the ```.add_method(:TestMethod)``` function. Per default the method has no input and output arguments. By adding additional arguments you can define input arguments. The code for defining a method with input arguments looks like
|
96
133
|
```ruby
|
97
134
|
t.add_method :TestMethod, inputarg1: OPCUA::TYPES::STRING, inputarg2: OPCUA::TYPES::DATETIME do |node, inputarg1, inputarg2|
|
@@ -106,17 +143,47 @@ in the ```do...end```section you write the code which should be executed by call
|
|
106
143
|
ObjectTypes can be instiantiated with the ```.manifest``` method.
|
107
144
|
|
108
145
|
```ruby
|
109
|
-
|
146
|
+
testobject =server.objects.manifest(:TestObjectType, to)
|
147
|
+
```
|
148
|
+
|
149
|
+
#### Delete Objects
|
150
|
+
Objects can be deleted witch the ```.delete!``` function.
|
151
|
+
|
152
|
+
```ruby
|
153
|
+
testobject =server.objects.manifest(:TestObjectType, to)
|
154
|
+
testobject.delete!
|
110
155
|
```
|
111
156
|
|
112
157
|
#### Find Nodes in the Addressspace
|
113
158
|
|
114
|
-
To get a specific node
|
159
|
+
To get a specific node you should use the ```.find``` method.
|
115
160
|
```ruby
|
116
|
-
tv = to.find
|
161
|
+
tv = to.find :TestVariable
|
117
162
|
```
|
118
163
|
_tv_ is now the _TestVariable_ node.
|
119
164
|
|
165
|
+
You can also find several nodes at the same time.
|
166
|
+
```ruby
|
167
|
+
tva = to.find :TestVariable1, :TestVariable2
|
168
|
+
```
|
169
|
+
_tva_ is now a array containing the requested nodes.
|
170
|
+
|
171
|
+
```ruby
|
172
|
+
tv1, tv2 = to.find :TestVariable1, :TestVariable2
|
173
|
+
```
|
174
|
+
You can also request several nodes with one _find_ statement.
|
175
|
+
|
176
|
+
#### Access the value of a node
|
177
|
+
|
178
|
+
To get the value of a specific node use the ```.value``` method.
|
179
|
+
```ruby
|
180
|
+
tv.value = 10
|
181
|
+
tv.value = 'ten'
|
182
|
+
puts tv.value
|
183
|
+
```
|
184
|
+
|
185
|
+
You can assign vlaues without definig a datatype. The correct _DataType_ will be used. Default we use _UA::STRING, UA::DOUBLE and _UA::INT_. Additional Datatypes can be added by request.
|
186
|
+
|
120
187
|
#### Loop for getting Real Life Data
|
121
188
|
The server loop looks like follows:
|
122
189
|
```ruby
|
data/cert/cert.h
CHANGED
@@ -1,70 +1,70 @@
|
|
1
1
|
unsigned char cert_der[] = {
|
2
2
|
0x30, 0x82, 0x03, 0x18, 0x30, 0x82, 0x02, 0x00, 0xa0, 0x03, 0x02, 0x01,
|
3
|
-
0x02, 0x02, 0x14,
|
4
|
-
|
3
|
+
0x02, 0x02, 0x14, 0x73, 0x68, 0xed, 0xf8, 0xee, 0x4a, 0x9b, 0xba, 0xd8,
|
4
|
+
0x6b, 0x1f, 0xd4, 0x30, 0xe4, 0x7e, 0x68, 0x4d, 0x24, 0x6b, 0xbc, 0x30,
|
5
5
|
0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x0b,
|
6
6
|
0x05, 0x00, 0x30, 0x15, 0x31, 0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04,
|
7
7
|
0x03, 0x0c, 0x0a, 0x72, 0x75, 0x62, 0x79, 0x2d, 0x6f, 0x70, 0x63, 0x75,
|
8
|
-
0x61, 0x30, 0x1e, 0x17, 0x0d, 0x31, 0x39, 0x30,
|
9
|
-
|
10
|
-
|
8
|
+
0x61, 0x30, 0x1e, 0x17, 0x0d, 0x31, 0x39, 0x30, 0x37, 0x31, 0x31, 0x30,
|
9
|
+
0x38, 0x34, 0x34, 0x34, 0x36, 0x5a, 0x17, 0x0d, 0x32, 0x30, 0x30, 0x36,
|
10
|
+
0x33, 0x30, 0x30, 0x38, 0x34, 0x34, 0x34, 0x36, 0x5a, 0x30, 0x15, 0x31,
|
11
11
|
0x13, 0x30, 0x11, 0x06, 0x03, 0x55, 0x04, 0x03, 0x0c, 0x0a, 0x72, 0x75,
|
12
12
|
0x62, 0x79, 0x2d, 0x6f, 0x70, 0x63, 0x75, 0x61, 0x30, 0x82, 0x01, 0x22,
|
13
13
|
0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01,
|
14
14
|
0x01, 0x05, 0x00, 0x03, 0x82, 0x01, 0x0f, 0x00, 0x30, 0x82, 0x01, 0x0a,
|
15
|
-
0x02, 0x82, 0x01, 0x01, 0x00,
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
15
|
+
0x02, 0x82, 0x01, 0x01, 0x00, 0x98, 0xf9, 0x60, 0x18, 0x4f, 0xc2, 0x81,
|
16
|
+
0xdd, 0x1f, 0x3b, 0x68, 0x49, 0x9f, 0x08, 0x13, 0x0b, 0x53, 0x3c, 0xea,
|
17
|
+
0xdd, 0xeb, 0xcd, 0xf9, 0x03, 0x40, 0x62, 0xe8, 0x72, 0xe5, 0xf7, 0xea,
|
18
|
+
0x8b, 0x91, 0x35, 0x67, 0x22, 0x62, 0x91, 0x2a, 0x16, 0x28, 0xa4, 0xfe,
|
19
|
+
0x3c, 0xef, 0x20, 0xcf, 0x4d, 0xab, 0x5b, 0xc6, 0xbb, 0xb3, 0x0f, 0x6b,
|
20
|
+
0xee, 0x2b, 0x2c, 0xac, 0x14, 0xb3, 0xe1, 0xff, 0xb3, 0x6e, 0xe4, 0x47,
|
21
|
+
0x7c, 0x69, 0xa9, 0x9b, 0x4e, 0xfe, 0xdb, 0xf3, 0x5d, 0x31, 0x53, 0x39,
|
22
|
+
0x23, 0x80, 0x65, 0xf0, 0x87, 0xe8, 0x16, 0x27, 0xb3, 0x37, 0x40, 0x96,
|
23
|
+
0x7b, 0xe5, 0x1c, 0x78, 0x6f, 0x49, 0x36, 0x6b, 0x07, 0x1e, 0xcc, 0x93,
|
24
|
+
0xe1, 0x36, 0x40, 0xdd, 0x91, 0x35, 0x08, 0xf3, 0x7c, 0xec, 0x8d, 0xd7,
|
25
|
+
0x71, 0x17, 0x4a, 0xea, 0xe2, 0x02, 0xd3, 0xa9, 0xbd, 0x26, 0x8a, 0x13,
|
26
|
+
0x31, 0x5d, 0x76, 0x41, 0x6d, 0x5d, 0xa1, 0x83, 0x09, 0xb7, 0x9a, 0x55,
|
27
|
+
0x91, 0x5a, 0x9e, 0x46, 0x7f, 0x69, 0xcf, 0x5b, 0x3e, 0x92, 0x30, 0x7a,
|
28
|
+
0xc3, 0x41, 0xf4, 0x9e, 0x80, 0x01, 0xe9, 0xd5, 0xd6, 0x98, 0xe6, 0xcf,
|
29
|
+
0x38, 0x09, 0x9b, 0x8b, 0xc4, 0x8c, 0x6c, 0xd4, 0x90, 0xf0, 0x6f, 0xff,
|
30
|
+
0x31, 0x95, 0xe9, 0x02, 0x59, 0x2d, 0xaf, 0x84, 0xbb, 0xa4, 0x8e, 0x88,
|
31
|
+
0x3c, 0x14, 0xb9, 0x06, 0xac, 0x87, 0xea, 0xc3, 0x05, 0x1d, 0x2a, 0xe4,
|
32
|
+
0x81, 0x05, 0xcd, 0xe4, 0xc6, 0xe9, 0x3f, 0xdd, 0xc9, 0xbe, 0x4f, 0x9a,
|
33
|
+
0xd0, 0xed, 0x7d, 0x4f, 0x30, 0x26, 0xa6, 0xd5, 0x67, 0x53, 0x55, 0x0c,
|
34
|
+
0x3e, 0x70, 0xa5, 0x92, 0x4c, 0x3d, 0x0b, 0x82, 0x32, 0xcf, 0x91, 0x93,
|
35
|
+
0x8a, 0xea, 0xa4, 0xad, 0x7a, 0xb2, 0x17, 0x37, 0x15, 0x2e, 0x7e, 0x0a,
|
36
|
+
0x18, 0xc4, 0x21, 0xc9, 0xc1, 0x69, 0xe8, 0x10, 0x11, 0x02, 0x03, 0x01,
|
37
37
|
0x00, 0x01, 0xa3, 0x60, 0x30, 0x5e, 0x30, 0x1d, 0x06, 0x03, 0x55, 0x1d,
|
38
|
-
0x0e, 0x04, 0x16, 0x04, 0x14,
|
39
|
-
|
40
|
-
|
38
|
+
0x0e, 0x04, 0x16, 0x04, 0x14, 0x73, 0x40, 0xba, 0xeb, 0xba, 0xaf, 0x49,
|
39
|
+
0x5d, 0xe7, 0x0e, 0x86, 0x07, 0x39, 0xb3, 0xc4, 0x0e, 0xbc, 0x79, 0x71,
|
40
|
+
0x16, 0x30, 0x0f, 0x06, 0x03, 0x55, 0x1d, 0x13, 0x01, 0x01, 0xff, 0x04,
|
41
41
|
0x05, 0x30, 0x03, 0x01, 0x01, 0xff, 0x30, 0x1c, 0x06, 0x03, 0x55, 0x1d,
|
42
42
|
0x11, 0x04, 0x15, 0x30, 0x13, 0x86, 0x11, 0x72, 0x75, 0x62, 0x79, 0x2d,
|
43
43
|
0x6f, 0x70, 0x63, 0x75, 0x61, 0x3a, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74,
|
44
44
|
0x30, 0x0e, 0x06, 0x03, 0x55, 0x1d, 0x0f, 0x01, 0x01, 0xff, 0x04, 0x04,
|
45
45
|
0x03, 0x02, 0x05, 0xa0, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86,
|
46
46
|
0xf7, 0x0d, 0x01, 0x01, 0x0b, 0x05, 0x00, 0x03, 0x82, 0x01, 0x01, 0x00,
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
47
|
+
0x50, 0x04, 0x7d, 0x62, 0xb7, 0xd3, 0x1c, 0xf9, 0xbe, 0xe7, 0xbb, 0x30,
|
48
|
+
0x83, 0xf5, 0xa6, 0x49, 0xbd, 0xef, 0x26, 0x12, 0x47, 0xf5, 0xb9, 0x5e,
|
49
|
+
0xda, 0x4c, 0xb2, 0xb8, 0x3d, 0x87, 0xe7, 0xc2, 0xfc, 0x33, 0x6e, 0x01,
|
50
|
+
0x10, 0x35, 0xf6, 0xba, 0xc6, 0x22, 0x14, 0x64, 0x73, 0xcb, 0x4b, 0xb4,
|
51
|
+
0x85, 0x1b, 0xf9, 0xbf, 0x53, 0x46, 0x83, 0x28, 0xee, 0x2f, 0xf9, 0x49,
|
52
|
+
0x45, 0x40, 0x8b, 0x84, 0x77, 0xa8, 0x0b, 0xef, 0x2e, 0x12, 0x8f, 0xc7,
|
53
|
+
0xb2, 0x59, 0x6a, 0x7a, 0xc5, 0x19, 0x23, 0x3b, 0x12, 0x3d, 0xea, 0xb5,
|
54
|
+
0x5b, 0x3e, 0x59, 0x94, 0xb6, 0x81, 0x85, 0x6b, 0xe1, 0x69, 0x1e, 0xbe,
|
55
|
+
0x4e, 0x78, 0x9d, 0x21, 0x90, 0x43, 0x5e, 0xdb, 0x4d, 0xa8, 0x58, 0x54,
|
56
|
+
0xdd, 0x34, 0x3a, 0x17, 0xca, 0xfd, 0x9c, 0x82, 0x0c, 0xf5, 0x0e, 0x7b,
|
57
|
+
0x2d, 0x4d, 0x2d, 0x97, 0x8d, 0xce, 0xb1, 0x70, 0x6d, 0x57, 0x22, 0xdc,
|
58
|
+
0xd7, 0x61, 0x20, 0x1d, 0x3f, 0x28, 0xa3, 0x67, 0xd2, 0xb9, 0x44, 0x6a,
|
59
|
+
0x5f, 0xe6, 0x66, 0xf1, 0x49, 0xe3, 0x51, 0x06, 0x71, 0x09, 0x7e, 0x3a,
|
60
|
+
0xc8, 0x9d, 0xb6, 0xb1, 0x49, 0x47, 0xbe, 0x8d, 0xf0, 0x19, 0x17, 0xa1,
|
61
|
+
0x77, 0x72, 0x66, 0x68, 0x95, 0x4c, 0xe4, 0xb7, 0xdc, 0x38, 0x8d, 0x6b,
|
62
|
+
0x80, 0xe3, 0x43, 0x0a, 0x2b, 0xde, 0x29, 0x08, 0xa5, 0x41, 0xcf, 0x52,
|
63
|
+
0x0f, 0xff, 0xad, 0xa3, 0x44, 0x82, 0xed, 0x3d, 0xf4, 0xaa, 0x98, 0xce,
|
64
|
+
0xde, 0xd0, 0xa9, 0xc8, 0x2a, 0x76, 0xc6, 0xcb, 0xdb, 0x1f, 0x65, 0x60,
|
65
|
+
0xbd, 0xaa, 0xd0, 0x40, 0x1b, 0xb6, 0x22, 0xbb, 0x80, 0x62, 0xb1, 0xaa,
|
66
|
+
0xe3, 0xeb, 0x81, 0x12, 0x3a, 0x61, 0x68, 0x74, 0x10, 0x46, 0x51, 0x37,
|
67
|
+
0xfd, 0x6c, 0x95, 0xa7, 0x0b, 0xd4, 0x87, 0xc0, 0x36, 0x62, 0x94, 0x87,
|
68
|
+
0x3b, 0xfc, 0x03, 0xb0
|
69
69
|
};
|
70
70
|
unsigned int cert_der_len = 796;
|
data/cert/cert_key.h
CHANGED
@@ -1,103 +1,103 @@
|
|
1
1
|
unsigned char cert_key_der[] = {
|
2
|
-
0x30, 0x82, 0x04,
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
0x66,
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
2
|
+
0x30, 0x82, 0x04, 0xa3, 0x02, 0x01, 0x00, 0x02, 0x82, 0x01, 0x01, 0x00,
|
3
|
+
0x98, 0xf9, 0x60, 0x18, 0x4f, 0xc2, 0x81, 0xdd, 0x1f, 0x3b, 0x68, 0x49,
|
4
|
+
0x9f, 0x08, 0x13, 0x0b, 0x53, 0x3c, 0xea, 0xdd, 0xeb, 0xcd, 0xf9, 0x03,
|
5
|
+
0x40, 0x62, 0xe8, 0x72, 0xe5, 0xf7, 0xea, 0x8b, 0x91, 0x35, 0x67, 0x22,
|
6
|
+
0x62, 0x91, 0x2a, 0x16, 0x28, 0xa4, 0xfe, 0x3c, 0xef, 0x20, 0xcf, 0x4d,
|
7
|
+
0xab, 0x5b, 0xc6, 0xbb, 0xb3, 0x0f, 0x6b, 0xee, 0x2b, 0x2c, 0xac, 0x14,
|
8
|
+
0xb3, 0xe1, 0xff, 0xb3, 0x6e, 0xe4, 0x47, 0x7c, 0x69, 0xa9, 0x9b, 0x4e,
|
9
|
+
0xfe, 0xdb, 0xf3, 0x5d, 0x31, 0x53, 0x39, 0x23, 0x80, 0x65, 0xf0, 0x87,
|
10
|
+
0xe8, 0x16, 0x27, 0xb3, 0x37, 0x40, 0x96, 0x7b, 0xe5, 0x1c, 0x78, 0x6f,
|
11
|
+
0x49, 0x36, 0x6b, 0x07, 0x1e, 0xcc, 0x93, 0xe1, 0x36, 0x40, 0xdd, 0x91,
|
12
|
+
0x35, 0x08, 0xf3, 0x7c, 0xec, 0x8d, 0xd7, 0x71, 0x17, 0x4a, 0xea, 0xe2,
|
13
|
+
0x02, 0xd3, 0xa9, 0xbd, 0x26, 0x8a, 0x13, 0x31, 0x5d, 0x76, 0x41, 0x6d,
|
14
|
+
0x5d, 0xa1, 0x83, 0x09, 0xb7, 0x9a, 0x55, 0x91, 0x5a, 0x9e, 0x46, 0x7f,
|
15
|
+
0x69, 0xcf, 0x5b, 0x3e, 0x92, 0x30, 0x7a, 0xc3, 0x41, 0xf4, 0x9e, 0x80,
|
16
|
+
0x01, 0xe9, 0xd5, 0xd6, 0x98, 0xe6, 0xcf, 0x38, 0x09, 0x9b, 0x8b, 0xc4,
|
17
|
+
0x8c, 0x6c, 0xd4, 0x90, 0xf0, 0x6f, 0xff, 0x31, 0x95, 0xe9, 0x02, 0x59,
|
18
|
+
0x2d, 0xaf, 0x84, 0xbb, 0xa4, 0x8e, 0x88, 0x3c, 0x14, 0xb9, 0x06, 0xac,
|
19
|
+
0x87, 0xea, 0xc3, 0x05, 0x1d, 0x2a, 0xe4, 0x81, 0x05, 0xcd, 0xe4, 0xc6,
|
20
|
+
0xe9, 0x3f, 0xdd, 0xc9, 0xbe, 0x4f, 0x9a, 0xd0, 0xed, 0x7d, 0x4f, 0x30,
|
21
|
+
0x26, 0xa6, 0xd5, 0x67, 0x53, 0x55, 0x0c, 0x3e, 0x70, 0xa5, 0x92, 0x4c,
|
22
|
+
0x3d, 0x0b, 0x82, 0x32, 0xcf, 0x91, 0x93, 0x8a, 0xea, 0xa4, 0xad, 0x7a,
|
23
|
+
0xb2, 0x17, 0x37, 0x15, 0x2e, 0x7e, 0x0a, 0x18, 0xc4, 0x21, 0xc9, 0xc1,
|
24
|
+
0x69, 0xe8, 0x10, 0x11, 0x02, 0x03, 0x01, 0x00, 0x01, 0x02, 0x82, 0x01,
|
25
|
+
0x01, 0x00, 0x86, 0x09, 0x7b, 0xf9, 0xd1, 0x69, 0x4d, 0x00, 0xc3, 0x6c,
|
26
|
+
0xfa, 0x64, 0x07, 0xc4, 0xbb, 0x6b, 0x20, 0xf4, 0x2f, 0x97, 0x64, 0x16,
|
27
|
+
0x86, 0x2a, 0x23, 0x30, 0x87, 0x1c, 0xa6, 0x04, 0x24, 0xaf, 0x45, 0xfc,
|
28
|
+
0xd4, 0xf1, 0x7c, 0x0c, 0x56, 0x24, 0x34, 0x58, 0xdd, 0xab, 0xe6, 0x9b,
|
29
|
+
0x89, 0x09, 0x35, 0x2c, 0xa5, 0x65, 0xb1, 0xef, 0xc1, 0x52, 0x5e, 0xe2,
|
30
|
+
0x35, 0xa5, 0xae, 0x38, 0x48, 0x24, 0xa0, 0xf5, 0xc4, 0xed, 0x6e, 0x67,
|
31
|
+
0xfe, 0x7d, 0xa9, 0x32, 0x70, 0x7b, 0x27, 0xcd, 0x14, 0x33, 0xd7, 0x3d,
|
32
|
+
0x7b, 0x14, 0x9a, 0x77, 0x4f, 0x31, 0xe9, 0x27, 0xde, 0xb3, 0x90, 0x7c,
|
33
|
+
0xf1, 0xca, 0x11, 0x0c, 0x6d, 0x9b, 0x3f, 0x91, 0x61, 0xc1, 0xe4, 0x17,
|
34
|
+
0xd2, 0x0c, 0x79, 0xbb, 0xee, 0x1d, 0x77, 0xe8, 0x90, 0xed, 0xb6, 0xcb,
|
35
|
+
0x1e, 0x24, 0x0a, 0xf6, 0x0b, 0xb4, 0x81, 0x20, 0x5a, 0xcf, 0x7b, 0x98,
|
36
|
+
0x3c, 0x98, 0xe8, 0xa5, 0xf6, 0xe5, 0x83, 0x79, 0x0b, 0xdd, 0x49, 0x5b,
|
37
|
+
0xab, 0x50, 0x38, 0xcf, 0xb8, 0x58, 0x81, 0x45, 0xa6, 0xc3, 0xb7, 0x37,
|
38
|
+
0x6f, 0x3b, 0x7e, 0x80, 0x61, 0x6e, 0xc5, 0x10, 0xf8, 0xd4, 0x3e, 0x58,
|
39
|
+
0x0e, 0x8f, 0x02, 0xf5, 0x0a, 0x97, 0x59, 0x3f, 0x72, 0x72, 0x82, 0x18,
|
40
|
+
0x58, 0xd5, 0x77, 0x50, 0xe9, 0xcb, 0x9a, 0x29, 0x3a, 0xdb, 0xbc, 0x89,
|
41
|
+
0x19, 0x27, 0xe2, 0xf6, 0xf0, 0xfc, 0x2f, 0x23, 0xe8, 0x09, 0xab, 0x9e,
|
42
|
+
0x15, 0x2f, 0x8c, 0xfc, 0x55, 0x2a, 0xf3, 0x73, 0x43, 0x24, 0x8a, 0x0a,
|
43
|
+
0x71, 0xba, 0xfb, 0x72, 0xe6, 0xd5, 0x8c, 0xda, 0xea, 0x9b, 0xee, 0xa4,
|
44
|
+
0xc4, 0x37, 0x22, 0xd8, 0xbc, 0xd3, 0x7c, 0x87, 0x62, 0xbd, 0x7e, 0x7d,
|
45
|
+
0x0f, 0x75, 0x95, 0xef, 0x73, 0xd4, 0x3a, 0xe2, 0x79, 0x68, 0x9a, 0xc7,
|
46
|
+
0x81, 0x53, 0x2d, 0xec, 0x27, 0x41, 0x02, 0x81, 0x81, 0x00, 0xc7, 0x0d,
|
47
|
+
0x16, 0x03, 0x03, 0x73, 0xcd, 0xbb, 0xc5, 0x8b, 0xaa, 0x1f, 0x43, 0x90,
|
48
|
+
0x6f, 0x2f, 0x6f, 0xae, 0x02, 0x71, 0x4b, 0xbb, 0x75, 0x3d, 0x5b, 0x44,
|
49
|
+
0x8f, 0xc3, 0xe9, 0x74, 0x21, 0x37, 0xb7, 0x81, 0x2a, 0x81, 0x37, 0x5e,
|
50
|
+
0xaf, 0xbb, 0x58, 0x75, 0xca, 0xe5, 0xef, 0x08, 0x77, 0x78, 0xdd, 0x2b,
|
51
|
+
0x2e, 0xdd, 0x6c, 0x0e, 0x4c, 0x57, 0x93, 0xf8, 0x8f, 0xcd, 0x29, 0xc5,
|
52
|
+
0xcf, 0x1b, 0x48, 0x92, 0xfc, 0x03, 0xb2, 0xa4, 0xae, 0x0f, 0x1a, 0x9a,
|
53
|
+
0x0d, 0x55, 0x39, 0x87, 0xfe, 0xee, 0x72, 0x44, 0xbd, 0x06, 0x38, 0x94,
|
54
|
+
0xe9, 0x69, 0x6c, 0x0c, 0xd5, 0x43, 0x61, 0x91, 0xbc, 0xc8, 0x71, 0x94,
|
55
|
+
0x38, 0xed, 0x09, 0x2b, 0xb6, 0x1f, 0x6d, 0xfb, 0x0f, 0x01, 0xcf, 0x5b,
|
56
|
+
0x4c, 0xb7, 0xdf, 0x65, 0xb6, 0xa4, 0xe1, 0x0c, 0xe3, 0x13, 0xe6, 0x04,
|
57
|
+
0x02, 0xca, 0xa1, 0x2c, 0xc4, 0xe7, 0x02, 0x81, 0x81, 0x00, 0xc4, 0xbd,
|
58
|
+
0x83, 0xee, 0x00, 0x98, 0x22, 0x19, 0xf8, 0xc4, 0xc6, 0x98, 0x03, 0x8a,
|
59
|
+
0x93, 0x23, 0xe0, 0x98, 0x3f, 0x4c, 0xfb, 0x91, 0xdf, 0xbf, 0x8b, 0x43,
|
60
|
+
0xf7, 0x1c, 0x9d, 0x26, 0x75, 0x91, 0xcc, 0x5b, 0x2a, 0xdc, 0x61, 0x32,
|
61
|
+
0x9a, 0x18, 0xac, 0xb4, 0xff, 0x7b, 0xe9, 0x43, 0xd0, 0x41, 0x27, 0x65,
|
62
|
+
0x54, 0x50, 0x3e, 0xb6, 0x66, 0x69, 0xe5, 0x69, 0x02, 0xc0, 0xfc, 0x0c,
|
63
|
+
0x28, 0x27, 0xe9, 0x65, 0x86, 0xb9, 0x5f, 0x8a, 0x08, 0x4e, 0x4f, 0x2b,
|
64
|
+
0xd9, 0x61, 0x69, 0xe7, 0xcb, 0x47, 0xad, 0xc5, 0x6f, 0x0d, 0xe9, 0x44,
|
65
|
+
0x92, 0xd5, 0x01, 0xde, 0x65, 0x1a, 0xcc, 0x3d, 0xe4, 0x4b, 0x4c, 0xe2,
|
66
|
+
0x79, 0x21, 0xaf, 0x7c, 0xef, 0xc1, 0xcf, 0x75, 0x23, 0x93, 0xdf, 0x2e,
|
67
|
+
0x35, 0xf3, 0xa8, 0xcc, 0xfd, 0xbf, 0x57, 0x41, 0x6a, 0x04, 0xd9, 0x56,
|
68
|
+
0x37, 0x42, 0x77, 0xb4, 0x6c, 0x47, 0x02, 0x81, 0x80, 0x32, 0x5c, 0x40,
|
69
|
+
0x36, 0x70, 0xf8, 0x2a, 0x94, 0x18, 0x4d, 0xd6, 0xb3, 0xe4, 0x3f, 0x35,
|
70
|
+
0xb2, 0x35, 0xba, 0x3b, 0xc9, 0xf8, 0x54, 0x2c, 0x3c, 0x62, 0xcb, 0xfc,
|
71
|
+
0xe7, 0x9f, 0x38, 0x0f, 0x73, 0x6e, 0x4d, 0x12, 0xb8, 0xf0, 0x8e, 0x57,
|
72
|
+
0x3d, 0xba, 0x0a, 0xcb, 0x53, 0xd3, 0x5f, 0x3c, 0x02, 0xeb, 0x4a, 0x12,
|
73
|
+
0xa8, 0x58, 0xbf, 0x61, 0x57, 0x43, 0x0b, 0xbf, 0x2e, 0x34, 0x24, 0x64,
|
74
|
+
0xda, 0xcd, 0x48, 0xca, 0xd4, 0x10, 0xad, 0x93, 0x90, 0x24, 0xb5, 0xd7,
|
75
|
+
0x2b, 0xb9, 0xcb, 0x8b, 0x97, 0x3e, 0x77, 0xdf, 0xaf, 0x24, 0x3f, 0xa0,
|
76
|
+
0xb2, 0x58, 0x71, 0x02, 0xbf, 0xf2, 0x7e, 0x91, 0xd9, 0xd0, 0xca, 0xa4,
|
77
|
+
0x80, 0x6c, 0x32, 0x8f, 0xf8, 0x71, 0xb5, 0xf4, 0x3d, 0x0b, 0xfe, 0x58,
|
78
|
+
0x71, 0xa8, 0xe6, 0xae, 0x08, 0x17, 0x1c, 0x50, 0x93, 0x67, 0x3d, 0x9a,
|
79
|
+
0x8b, 0x33, 0xae, 0x04, 0xff, 0x02, 0x81, 0x80, 0x61, 0x5e, 0x76, 0x13,
|
80
|
+
0xed, 0xa1, 0x5d, 0x87, 0x43, 0x12, 0x88, 0x43, 0x25, 0xc5, 0x88, 0x8b,
|
81
|
+
0x02, 0x15, 0xf7, 0x86, 0x2f, 0x1f, 0x84, 0x00, 0x35, 0x79, 0x9e, 0xac,
|
82
|
+
0x3f, 0xae, 0x90, 0x13, 0x67, 0x73, 0x5b, 0x64, 0x14, 0x8a, 0xc9, 0xaf,
|
83
|
+
0x1a, 0x92, 0xbd, 0xba, 0xe2, 0xb8, 0x98, 0x32, 0x16, 0xc0, 0x54, 0x99,
|
84
|
+
0x1e, 0x60, 0x81, 0x91, 0x39, 0x63, 0xde, 0x64, 0x0a, 0x9a, 0x2d, 0xa9,
|
85
|
+
0x8b, 0x1e, 0x9f, 0x2d, 0xd1, 0x75, 0xec, 0x24, 0x6d, 0x94, 0x83, 0x12,
|
86
|
+
0x6e, 0x2a, 0xb4, 0xf5, 0xb5, 0xaf, 0xf8, 0x05, 0x87, 0x84, 0x53, 0xb3,
|
87
|
+
0x2e, 0x28, 0x96, 0x1b, 0x4c, 0x27, 0xf9, 0x7b, 0xb7, 0x02, 0x82, 0xf6,
|
88
|
+
0xc3, 0xf6, 0x6e, 0x66, 0x9a, 0x39, 0x1c, 0x31, 0x8c, 0x0c, 0x3f, 0xd1,
|
89
|
+
0x66, 0xa2, 0x85, 0x97, 0x14, 0x25, 0x20, 0xc6, 0x63, 0x96, 0x02, 0xe5,
|
90
|
+
0x57, 0x7f, 0x28, 0xf3, 0x02, 0x81, 0x80, 0x65, 0xff, 0x67, 0x14, 0x67,
|
91
|
+
0xeb, 0x33, 0x05, 0x39, 0xd9, 0xae, 0xa5, 0xc2, 0x57, 0xa4, 0xdf, 0xc1,
|
92
|
+
0xe6, 0x77, 0xe2, 0x7f, 0x64, 0x2c, 0xf3, 0x40, 0xfb, 0x21, 0x33, 0x30,
|
93
|
+
0xe4, 0xc6, 0xfa, 0x12, 0x20, 0x7a, 0xb9, 0xee, 0xef, 0x8f, 0x08, 0xdb,
|
94
|
+
0x6b, 0x2e, 0x6d, 0xfd, 0xeb, 0xbc, 0x42, 0xd9, 0xdb, 0x29, 0xc5, 0x33,
|
95
|
+
0xf0, 0x80, 0x3c, 0x68, 0xf1, 0x8e, 0x50, 0x15, 0x9e, 0x34, 0x03, 0x85,
|
96
|
+
0xec, 0x2a, 0xb0, 0x40, 0xb3, 0xd2, 0x73, 0xfa, 0x4f, 0xc4, 0x48, 0xe0,
|
97
|
+
0x12, 0x6e, 0x25, 0x0b, 0x25, 0xd6, 0x9a, 0xd3, 0xfe, 0x27, 0x3c, 0xe1,
|
98
|
+
0xb7, 0xd8, 0xc2, 0xfc, 0x28, 0x34, 0xb8, 0xdd, 0x9f, 0x8d, 0x6f, 0x2c,
|
99
|
+
0x87, 0x12, 0x5f, 0x0b, 0xbc, 0x9d, 0xd4, 0xfe, 0x9a, 0xaf, 0xa2, 0x06,
|
100
|
+
0x9f, 0x2b, 0xf2, 0x91, 0xd5, 0xac, 0x2c, 0x63, 0xcf, 0x6f, 0x65, 0xe2,
|
101
|
+
0x22, 0xfb, 0x9c
|
102
102
|
};
|
103
|
-
unsigned int cert_key_der_len =
|
103
|
+
unsigned int cert_key_der_len = 1191;
|