forked from joval/jOVAL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathx-protocols-system-characteristics-schema.xsd
3229 lines (3229 loc) · 220 KB
/
x-protocols-system-characteristics-schema.xsd
1
2
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:oval-sc="http://oval.mitre.org/XMLSchema/oval-system-characteristics-5"
xmlns:oval="http://oval.mitre.org/XMLSchema/oval-common-5"
xmlns:sch="http://purl.oclc.org/dsdl/schematron"
xmlns:x-net-sc="http://oval.mitre.org/XMLSchema/oval-system-characteristics-5#x-net"
targetNamespace="http://oval.mitre.org/XMLSchema/oval-system-characteristics-5#x-net"
elementFormDefault="qualified" version="5.11.2">
<xsd:import namespace="http://oval.mitre.org/XMLSchema/oval-common-5"/>
<xsd:import namespace="http://oval.mitre.org/XMLSchema/oval-system-characteristics-5"/>
<xsd:annotation>
<xsd:documentation>The following is a description of the experimental elements, types, and attributes that involve the exercise of specific network-based protocols. Each item is an extension of the standard item element defined in the Core System Characteristic Schema. Through extension, each item inherits a set of elements and attributes that are shared amongst all OVAL Items. Each item is described in detail and should provide the information necessary to understand what each element and attribute represents. This document is intended for developers and assumes some familiarity with XML. A high level description of the interaction between the different tests and their relationship to the Core System Characteristic Schema is not outlined here.</xsd:documentation>
<xsd:documentation>The OVAL Schema is maintained by The MITRE Corporation and developed by the public OVAL Community. For more information, including how to get involved in the project and how to submit change requests, please visit the OVAL website at http://oval.cisecurity.org.</xsd:documentation>
<xsd:appinfo>
<schema>Experimental Windows System Characteristics</schema>
<version>5.11.2:1.0</version>
<date>06/20/2018 09:00:00 AM</date>
<terms_of_use>Copyright (c) 2018, Center for Internet Security. All rights reserved. The contents of this file are subject to the terms of the OVAL License located at https://oval.cisecurity.org/terms. See the OVAL License for the specific language governing permissions and limitations for use of this schema. When distributing copies of the OVAL Schema, this license header must be included.</terms_of_use>
<sch:ns prefix="oval-sc" uri="http://oval.mitre.org/XMLSchema/oval-system-characteristics-5"/>
<sch:ns prefix="x-net-sc" uri="http://oval.mitre.org/XMLSchema/oval-system-characteristics-5#x-windows"/>
<sch:ns prefix="xsi" uri="http://www.w3.org/2001/XMLSchema-instance"/>
</xsd:appinfo>
</xsd:annotation>
<!-- =============================================================================== -->
<!-- ================================== PORT ITEM ================================ -->
<!-- =============================================================================== -->
<xsd:element name="port_item" substitutionGroup="oval-sc:item">
<xsd:annotation>
<xsd:documentation>Represents a listening port on a target device.</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:complexContent>
<xsd:extension base="oval-sc:ItemType">
<xsd:sequence>
<xsd:element name="id" type="oval-sc:EntityItemIntType" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>The 'id' attribute specifies the port number for a listening port on the target device. Values between 1 and 65535 (inclusive) are permitted.</xsd:documentation>
<xsd:appinfo>
<sch:pattern id="x-net-sc_port_item_id">
<sch:rule context="x-net-sc:port_item/x-net-sc:id">
<sch:assert test="number(.) >= 1 and number(.) <= 65535"><sch:value-of select="../@id"/> - the value of port must be between 1 and 65535.</sch:assert>
</sch:rule>
</sch:pattern>
</xsd:appinfo>
</xsd:annotation>
</xsd:element>
<xsd:element name="protocol" type="x-net-sc:EntityItemProtocolType" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>The port protocol.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
</xsd:element>
<xsd:complexType name="EntityItemProtocolType">
<xsd:annotation>
<xsd:documentation>The EntityItemProtocolType restricts a string value to the permitted port protocol values. The empty string is also allowed to support empty elements associated with error conditions.</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:restriction base="oval-sc:EntityItemStringType">
<xsd:enumeration value="TCP">
<xsd:annotation>
<xsd:documentation>Denotes a Transfer Control Protocol (TCP) port type.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="UDP">
<xsd:annotation>
<xsd:documentation>Denotes a User Datagram Protocol (UDP) port type.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="">
<xsd:annotation>
<xsd:documentation>The empty string value is permitted here to allow for detailed error reporting.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
</xsd:restriction>
</xsd:simpleContent>
</xsd:complexType>
<!-- =============================================================================== -->
<!-- ================================== HTTP ITEM ================================ -->
<!-- =============================================================================== -->
<xsd:element name="http_item" substitutionGroup="oval-sc:item">
<xsd:annotation>
<xsd:documentation>Represents an HTTP server request/response.</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:complexContent>
<xsd:extension base="oval-sc:ItemType">
<xsd:sequence>
<xsd:element name="method" type="x-net-sc:EntityItemHttpMethodType" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>The method of the HTTP request.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="path" type="oval-sc:EntityItemStringType" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>The path of the HTTP request.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="request_headers" type="oval-sc:EntityItemRecordType" minOccurs="0" maxOccurs="1" nillable="true">
<xsd:annotation>
<xsd:documentation>A list of properties (name and value pairs) sent as request headers. Each property name must be unique. When xsi:nil='true', request headers are not provided to the server.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="post_data" type="oval-sc:EntityItemAnySimpleType" minOccurs="0" maxOccurs="1" nillable="true">
<xsd:annotation>
<xsd:documentation>Data posted to the URI. Only valid when used in conjunction with a POST or PUT request method.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="port" type="oval-sc:EntityItemIntType" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>The 'port' attribute specifies the port number for the web server listener. The value of this entity is typically 80 for clear-text, and 443 for secure connections. Values between 1 and 65535 (inclusive) are permitted.</xsd:documentation>
<xsd:appinfo>
<sch:pattern id="x-net-sc_http_item_port">
<sch:rule context="x-net-sc:http_item/x-net-sc:port">
<sch:assert test="number(.) >= 1 and number(.) <= 65535"><sch:value-of select="../@id"/> - the value of port must be between 1 and 65535.</sch:assert>
</sch:rule>
</sch:pattern>
</xsd:appinfo>
</xsd:annotation>
</xsd:element>
<xsd:element name="secure" type="oval-sc:EntityItemBoolType" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>Specifies whether or not transport layer security (TLS) was used when establishing the connection.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="response_code" type="oval-sc:EntityItemIntType" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>The 'response_code' attribute indicates the response code returned by the server for the requested URI. See: https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="response_headers" type="oval-sc:EntityItemRecordType" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>A list of properties (name and value pairs) returned by the server as response headers. Each property name must be unique.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="message_body" type="oval-sc:EntityItemAnySimpleType" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>The message body returned by the server.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
</xsd:element>
<xsd:complexType name="EntityItemHttpMethodType">
<xsd:annotation>
<xsd:documentation>The EntityItemHttpMethodType restricts a string value to the permitted HTTP methods. The empty string is also allowed to support empty elements associated with error conditions.</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:restriction base="oval-sc:EntityItemStringType">
<xsd:enumeration value="GET">
<xsd:annotation>
<xsd:documentation>The GET method is used to retrieve information from a request URI.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="POST">
<xsd:annotation>
<xsd:documentation>The POST method is used to post subordinate data to a request URI.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="HEAD">
<xsd:annotation>
<xsd:documentation>The HEAD method is equivalent to a GET, except that no message-body is returned.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="PUT">
<xsd:annotation>
<xsd:documentation>A PUT method is used to store resource information at a request URI.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="DELETE">
<xsd:annotation>
<xsd:documentation>A DELETE method is used to delete the resource at the request URI.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="">
<xsd:annotation>
<xsd:documentation>The empty string value is permitted here to allow for detailed error reporting.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
</xsd:restriction>
</xsd:simpleContent>
</xsd:complexType>
<!-- =============================================================================== -->
<!-- ================================== SSH ITEM ================================= -->
<!-- =============================================================================== -->
<xsd:element name="ssh_item" substitutionGroup="oval-sc:item">
<xsd:annotation>
<xsd:documentation>Represents an SSH server negotiation response.</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:complexContent>
<xsd:extension base="oval-sc:ItemType">
<xsd:sequence>
<xsd:element name="port" type="oval-sc:EntityItemIntType" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>The 'port' attribute specifies the port number for the web server listener. The value of this entity is typically 22. Values between 1 and 65535 (inclusive) are permitted.</xsd:documentation>
<xsd:appinfo>
<sch:pattern id="x-net-sc_ssh_item_port">
<sch:rule context="x-net-sc:ssh_item/x-net-sc:port">
<sch:assert test="number(.) >= 1 and number(.) <= 65535"><sch:value-of select="../@id"/> - the value of port must be between 1 and 65535.</sch:assert>
</sch:rule>
</sch:pattern>
</xsd:appinfo>
</xsd:annotation>
</xsd:element>
<xsd:element name="proto_version" type="oval-sc:EntityItemVersionType" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>The SSH protocol version.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="software_version" type="oval-sc:EntityItemStringType" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>The SSH server's software version string.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="kex_algorithm" type="oval-sc:EntityItemStringType" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>A key exchange algorithm supported by the server.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="server_host_key_algorithm" type="oval-sc:EntityItemStringType" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>A supported server host key algorithm.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="encryption_algorithm_client_to_server" type="oval-sc:EntityItemStringType" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>An encryption algorithm that is supported for client to server communication.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="encryption_algorithm_server_to_client" type="oval-sc:EntityItemStringType" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>An encryption algorithm that is supported for server to client communication.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="mac_algorithm_client_to_server" type="oval-sc:EntityItemStringType" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>A MAC algorithm that is supported for client to server communication.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="mac_algorithm_server_to_client" type="oval-sc:EntityItemStringType" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>A MAC algorithm that is supported for server to client communication.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="compression_algorithm_client_to_server" type="oval-sc:EntityItemStringType" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>A compression algorithm that is supported for client to server communication.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="compression_algorithm_server_to_client" type="oval-sc:EntityItemStringType" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>A compression algorithm that is supported for server to client communication.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="language_client_to_server" type="oval-sc:EntityItemStringType" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>A language that is supported for client to server communication.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="language_server_to_client" type="oval-sc:EntityItemStringType" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>A language that is supported for server to client communication.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
</xsd:element>
<!-- =============================================================================== -->
<!-- ================================== FTP ITEM ================================= -->
<!-- =============================================================================== -->
<xsd:element name="ftp_item" substitutionGroup="oval-sc:item">
<xsd:annotation>
<xsd:documentation>Represents an FTP server banner message.</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:complexContent>
<xsd:extension base="oval-sc:ItemType">
<xsd:sequence>
<xsd:element name="port" type="oval-sc:EntityItemIntType" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>The 'port' attribute specifies the port number for the FTP server's control connection listener. The value of this entity is typically 21. Values between 1 and 65535 (inclusive) are permitted.</xsd:documentation>
<xsd:appinfo>
<sch:pattern id="x-net-sc_ftp_item_port">
<sch:rule context="x-net-sc:ftp_item/x-net-sc:port">
<sch:assert test="number(.) >= 1 and number(.) <= 65535"><sch:value-of select="../@id"/> - the value of port must be between 1 and 65535.</sch:assert>
</sch:rule>
</sch:pattern>
</xsd:appinfo>
</xsd:annotation>
</xsd:element>
<xsd:element name="banner" type="oval-sc:EntityItemStringType" minOccurs="1" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>The banner lines accompanying 220 messages upon establishing a connection to the server.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
</xsd:element>
<!-- =============================================================================== -->
<!-- ================================== SMTP ITEM ================================ -->
<!-- =============================================================================== -->
<xsd:element name="smtp_item" substitutionGroup="oval-sc:item">
<xsd:annotation>
<xsd:documentation>Represents an SMTP server banner message.</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:complexContent>
<xsd:extension base="oval-sc:ItemType">
<xsd:sequence>
<xsd:element name="port" type="oval-sc:EntityItemIntType" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>The 'port' attribute specifies the port number for the SMTP server's connection listener. The value of this entity is typically 25. Values between 1 and 65535 (inclusive) are permitted.</xsd:documentation>
<xsd:appinfo>
<sch:pattern id="x-net-sc_smtp_item_port">
<sch:rule context="x-net-sc:smtp_item/x-net-sc:port">
<sch:assert test="number(.) >= 1 and number(.) <= 65535"><sch:value-of select="../@id"/> - the value of port must be between 1 and 65535.</sch:assert>
</sch:rule>
</sch:pattern>
</xsd:appinfo>
</xsd:annotation>
</xsd:element>
<xsd:element name="greeting" type="oval-sc:EntityItemStringType" minOccurs="1" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>The greeting messages accompanying 220 response lines upon establishing a connection to the server.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
</xsd:element>
<!-- =============================================================================== -->
<!-- ============================== TLS VERSION ITEM ============================= -->
<!-- =============================================================================== -->
<xsd:element name="tlsversion_item" substitutionGroup="oval-sc:item">
<xsd:annotation>
<xsd:documentation>The tlsversion_item allows for assertions about the data retrieved via a tlsversion_object.</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:complexContent>
<xsd:extension base="oval-sc:ItemType">
<xsd:sequence>
<xsd:element name="port" type="oval-sc:EntityItemIntType" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>The 'port' attribute specifies the port number for the TLS/SSL listener. Values between 1 and 65535 (inclusive) are permitted.</xsd:documentation>
<xsd:appinfo>
<sch:pattern id="x-net-sc_tlsversion_item_port">
<sch:rule context="x-net-sc:tlsversion_item/x-net-sc:port">
<sch:assert test="number(.) >= 1 and number(.) <= 65535"><sch:value-of select="../@id"/> - the value of port must be between 1 and 65535.</sch:assert>
</sch:rule>
</sch:pattern>
</xsd:appinfo>
</xsd:annotation>
</xsd:element>
<xsd:element name="protocol_version" type="x-net-sc:EntityItemTlsVersionType" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>The TLS/SSL protocol version.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="cipher_suite" type="x-net-sc:EntityItemTlsCipherSuiteType" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>The cipher suite selected by the server.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
</xsd:element>
<xsd:complexType name="EntityItemTlsVersionType">
<xsd:annotation>
<xsd:documentation>The EntityItemTlsVersionType restricts a string value to the permitted TLS/SSL version values. The empty string is also allowed to support empty element associated with variable references. Note that when using pattern matches and variables care must be taken to ensure that the regular expression and variable values align with the specified pattern restriction.</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:restriction base="oval-sc:EntityItemStringType">
<xsd:enumeration value="SSL 1.0">
<xsd:annotation>
<xsd:documentation>SSL 1.0 (major version = 1, minor version = 0)</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="SSL 2.0">
<xsd:annotation>
<xsd:documentation>SSL 2.0 (major version = 2, minor version = 0)</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="SSL 3.0">
<xsd:annotation>
<xsd:documentation>SSL 3.0 (major version = 3, minor version = 0)</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS 1.0">
<xsd:annotation>
<xsd:documentation>TLS 1.0 (major version = 3, minor version = 1)</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS 1.1">
<xsd:annotation>
<xsd:documentation>TLS 1.1 (major version = 3, minor version = 2)</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS 1.2">
<xsd:annotation>
<xsd:documentation>TLS 1.2 (major version = 3, minor version = 3)</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS 1.3">
<xsd:annotation>
<xsd:documentation>TLS 1.3 (major version = 3, minor version = 4)</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="">
<xsd:annotation>
<xsd:documentation>The empty string value is permitted here to allow for empty elements associated with variable references.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
</xsd:restriction>
</xsd:simpleContent>
</xsd:complexType>
<!-- =============================================================================== -->
<!-- =========================== TLS CIPHER SUITE ITEM =========================== -->
<!-- =============================================================================== -->
<xsd:element name="tlsciphersuite_item" substitutionGroup="oval-sc:item">
<xsd:annotation>
<xsd:documentation>The tlsciphersuite_item allows for assertions about the data retrieved via a tlsciphersuite_object.</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:complexContent>
<xsd:extension base="oval-sc:ItemType">
<xsd:sequence>
<xsd:element name="ciphersuite" type="x-net-sc:EntityItemTlsCipherSuiteType" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>The sole ciphersuite proposed by the client and accepted by the server.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="raw_ciphersuite" type="oval-sc:EntityItemBinaryType" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>The binary value of the ciphersuite.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="port" type="oval-sc:EntityItemIntType" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>The 'port' attribute specifies the port number for the TLS/SSL listener. The value of this entity is typically 443. Values between 1 and 65535 (inclusive) are permitted.</xsd:documentation>
<xsd:appinfo>
<sch:pattern id="x-net-sc_tlsciphersuite_item_port">
<sch:rule context="x-net-sc:tlsciphersuite_item/x-net-sc:port">
<sch:assert test="(@var_ref and string-length(.) = 0) or (number(.) >= 1 and number(.) <= 65535)"><sch:value-of select="../@id"/> - the value of port must be between 1 and 65535, or empty if var_ref is used.</sch:assert>
</sch:rule>
</sch:pattern>
</xsd:appinfo>
</xsd:annotation>
</xsd:element>
<xsd:element name="protocol_version" type="x-net-sc:EntityItemTlsVersionType" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>The TLS/SSL protocol version.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
</xsd:element>
<!-- =============================================================================== -->
<!-- ============================ TLS CERTIFICATE ITEM =========================== -->
<!-- =============================================================================== -->
<xsd:element name="tlscertificate_item" substitutionGroup="oval-sc:item">
<xsd:annotation>
<xsd:documentation>The tlscertificate_item allows for assertions about the data retrieved via a tlscertificate_object.</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:complexContent>
<xsd:extension base="oval-sc:ItemType">
<xsd:sequence>
<xsd:element name="signature_algorithm" type="x-net-sc:EntityItemTlsSignatureSchemeType" minOccurs="0" maxOccurs="1" nillable="true">
<xsd:annotation>
<xsd:documentation>The sole signature_algorithm that was proposed by the client (if defined by the object). Use xsi:nil='true' in the cases where the tlscertificate_object's signature_algorithm was also xsi:nil='true'.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="raw_signature_algorithm" type="oval-sc:EntityItemBinaryType" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>The binary value of the signature_algorithm proposed by the client (if defined by the object).</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="index" type="oval-sc:EntityItemIntType" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>The index entity calls out a specific certificate in the chain. This can only be a positive integer.</xsd:documentation>
<xsd:appinfo>
<sch:pattern id="x-net-sc_tlscert_i">
<sch:rule context="x-net-sc:tlscertificate_item/x-net-sc:index">
<sch:assert test="(@var_ref and string-length(.) = 0) or (number(.) >= 0)"><sch:value-of select="../@id"/> - the value of index must be greater than or equal to one, or empty if var_ref is used.</sch:assert>
</sch:rule>
</sch:pattern>
</xsd:appinfo>
</xsd:annotation>
</xsd:element>
<xsd:element name="port" type="oval-sc:EntityItemIntType" minOccurs="1" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>The 'port' attribute specifies the port on which the TLS/SSL server is listening. Values between 1 and 65535 (inclusive) are permitted.</xsd:documentation>
<xsd:appinfo>
<sch:pattern id="x-net-sc_tlscertificate_item_port">
<sch:rule context="x-net-sc:tlscertificate_item/x-net-sc:port">
<sch:assert test="(@var_ref and string-length(.) = 0) or (number(.) >= 1 and number(.) <= 65535)"><sch:value-of select="../@id"/> - the value of port must be between 1 and 65535, or empty if var_ref is used.</sch:assert>
</sch:rule>
</sch:pattern>
</xsd:appinfo>
</xsd:annotation>
</xsd:element>
<xsd:element name="subject_principal" type="oval-sc:EntityItemStringType" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>The distinguished name of the certificate subject.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="subject_alt_name" type="oval-sc:EntityItemStringType" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>Alternative names of the certificate subject.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="issuer_principal" type="oval-sc:EntityItemStringType" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>The distinguished name of the certificate issuer.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="issuer_alt_name" type="oval-sc:EntityItemStringType" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>Alternative names of the certificate issuer.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="signature_algorithm_oid" type="oval-sc:EntityItemStringType" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>The certificate's signature algorithm OID, represented by a set of nonnegative whole numbers separated by periods. For example, the string "1.2.840.10040.4.3" identifies the SHA-1 with DSA signature algorithm defined in RFC 3279.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="not_before" type="oval-sc:EntityItemIntType" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>The beginning of the validity period for the certificate, expressed as the number of seconds since January 1, 1970, 00:00:00 GMT.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="not_after" type="oval-sc:EntityItemIntType" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>The end of the validity period for the certificate, expressed as the number of seconds since January 1, 1970, 00:00:00 GMT.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="serial_number" type="oval-sc:EntityItemIntType" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>Specifies the certificate serial number expressed as an integer.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="public_key_type" type="x-net-sc:EntityItemPublicKeyTypeType" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>Specifies the type of the certificate's public key.</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="public_key_length" type="oval-sc:EntityItemIntType" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>Specifies the bit length of the certificate's public key.</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
</xsd:element>
<xsd:complexType name="EntityItemTlsCipherSuiteType">
<xsd:annotation>
<xsd:documentation>The EntityItemTlsCipherSuiteType restricts a string value to the permitted TLS/SSL cipher suite values. The empty string is also allowed to support empty element associated with variable references. Note that when using pattern matches and variables care must be taken to ensure that the regular expression and variable values align with the specified pattern restriction.</xsd:documentation>
</xsd:annotation>
<xsd:simpleContent>
<xsd:restriction base="oval-sc:EntityItemStringType">
<xsd:enumeration value="TLS_NULL_WITH_NULL_NULL">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0000.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_RSA_WITH_NULL_MD5">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0001.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_RSA_WITH_NULL_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0002.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_RSA_EXPORT_WITH_RC4_40_MD5">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0003.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_RSA_WITH_RC4_128_MD5">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0004.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_RSA_WITH_RC4_128_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0005.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_RSA_EXPORT_WITH_RC2_CBC_40_MD5">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0006.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_RSA_WITH_IDEA_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0007.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_RSA_EXPORT_WITH_DES40_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0008.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_RSA_WITH_DES_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0009.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_RSA_WITH_3DES_EDE_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x000A.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DH_DSS_EXPORT_WITH_DES40_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x000B.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DH_DSS_WITH_DES_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x000C.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DH_DSS_WITH_3DES_EDE_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x000D.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DH_RSA_EXPORT_WITH_DES40_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x000E.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DH_RSA_WITH_DES_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x000F.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DH_RSA_WITH_3DES_EDE_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0010.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0011.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DHE_DSS_WITH_DES_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0012.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0013.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0014.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DHE_RSA_WITH_DES_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0015.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0016.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DH_anon_EXPORT_WITH_RC4_40_MD5">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0017.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DH_anon_WITH_RC4_128_MD5">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0018.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DH_anon_EXPORT_WITH_DES40_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0019.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DH_anon_WITH_DES_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x001A.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DH_anon_WITH_3DES_EDE_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x001B.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_KRB5_WITH_DES_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x001E.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_KRB5_WITH_3DES_EDE_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x001F.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_KRB5_WITH_RC4_128_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0020.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_KRB5_WITH_IDEA_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0021.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_KRB5_WITH_DES_CBC_MD5">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0022.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_KRB5_WITH_3DES_EDE_CBC_MD5">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0023.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_KRB5_WITH_RC4_128_MD5">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0024.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_KRB5_WITH_IDEA_CBC_MD5">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0025.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_KRB5_EXPORT_WITH_DES_CBC_40_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0026.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_KRB5_EXPORT_WITH_RC2_CBC_40_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0027.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_KRB5_EXPORT_WITH_RC4_40_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0028.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_KRB5_EXPORT_WITH_DES_CBC_40_MD5">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0029.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_KRB5_EXPORT_WITH_RC2_CBC_40_MD5">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x002A.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_KRB5_EXPORT_WITH_RC4_40_MD5">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x002B.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_PSK_WITH_NULL_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x002C.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DHE_PSK_WITH_NULL_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x002D.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_RSA_PSK_WITH_NULL_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x002E.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_RSA_WITH_AES_128_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x002F.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DH_DSS_WITH_AES_128_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0030.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DH_RSA_WITH_AES_128_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0031.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DHE_DSS_WITH_AES_128_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0032.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DHE_RSA_WITH_AES_128_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0033.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DH_anon_WITH_AES_128_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0034.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_RSA_WITH_AES_256_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0035.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DH_DSS_WITH_AES_256_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0036.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DH_RSA_WITH_AES_256_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0037.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DHE_DSS_WITH_AES_256_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0038.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DHE_RSA_WITH_AES_256_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0039.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DH_anon_WITH_AES_256_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x003A.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_RSA_WITH_NULL_SHA256">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x003B.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_RSA_WITH_AES_128_CBC_SHA256">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x003C.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_RSA_WITH_AES_256_CBC_SHA256">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x003D.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DH_DSS_WITH_AES_128_CBC_SHA256">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x003E.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DH_RSA_WITH_AES_128_CBC_SHA256">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x003F.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DHE_DSS_WITH_AES_128_CBC_SHA256">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0040.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_RSA_WITH_CAMELLIA_128_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0041.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DH_DSS_WITH_CAMELLIA_128_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0042.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DH_RSA_WITH_CAMELLIA_128_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0043.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0044.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0045.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DH_anon_WITH_CAMELLIA_128_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0046.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_RSA_EXPORT1024_WITH_RC4_56_MD5">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0060.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_RSA_EXPORT1024_WITH_RC2_CBC_56_MD5">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0061.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_RSA_EXPORT1024_WITH_DES_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0062.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DHE_DSS_EXPORT1024_WITH_DES_CBC_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0063.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_RSA_EXPORT1024_WITH_RC4_56_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0064.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DHE_DSS_EXPORT1024_WITH_RC4_56_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0065.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DHE_DSS_WITH_RC4_128_SHA">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0066.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DHE_RSA_WITH_AES_128_CBC_SHA256">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0067.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DH_DSS_WITH_AES_256_CBC_SHA256">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0068.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DH_RSA_WITH_AES_256_CBC_SHA256">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0069.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DHE_DSS_WITH_AES_256_CBC_SHA256">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x006A.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DHE_RSA_WITH_AES_256_CBC_SHA256">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x006B.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DH_anon_WITH_AES_128_CBC_SHA256">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x006C.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_DH_anon_WITH_AES_256_CBC_SHA256">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x006D.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_GOSTR341094_WITH_28147_CNT_IMIT6">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0080.</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="TLS_GOSTR341001_WITH_28147_CNT_IMIT">
<xsd:annotation>
<xsd:documentation>Corresponds to the binary value 0x0081.</xsd:documentation>