-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxep.ent
1680 lines (1558 loc) · 309 KB
/
xep.ent
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
<!--
This file contains common entities for use in XMPP
Extension Protocols (XEPs):
https://xmpp.org/extensions/
This file is maintained by the XMPP Extensions Editor:
https://xmpp.org/about/xsf/editor-team.html
Please do not add entities to this file; instead,
add them to the relevant XEP and then ask the Editor
to add them to this file.
Thanks!
-->
<!--
Copyright (c) 1999 - 2021 XMPP Standards Foundation
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-->
<!-- HTML entities -->
<!ENTITY tm "™">
<!ENTITY nbsp " ">
<!ENTITY copy "©">
<!ENTITY reg "®">
<!ENTITY sect "§">
<!ENTITY mdash "—">
<!-- shortcuts for stanza types and children -->
<!ENTITY MESSAGE "<message/>">
<!ENTITY PRESENCE "<presence/>">
<!ENTITY IQ "<iq/>">
<!ENTITY SUBJECT "<subject/>">
<!ENTITY THREAD "<thread/>">
<!ENTITY BODY "<body/>">
<!ENTITY SHOW "<show/>">
<!ENTITY STATUS "<status/>">
<!ENTITY PRIORITY "<priority/>">
<!ENTITY QUERY "<query/>">
<!ENTITY X "<x/>">
<!ENTITY UNAVAILABLE "<presence type='unavailable'/>">
<!ENTITY ERROR "<error/>">
<!-- notes about namespace versioning -->
<!ENTITY VNOTE "(see <link url='#registrar-versioning'>Namespace Versioning</link> regarding the possibility of incrementing the version number)">
<!ENTITY NSVER "<p>If the protocol defined in this specification undergoes a revision that is not fully backwards-compatible with an older version, the XMPP Registrar shall increment the protocol version number found at the end of the XML namespaces defined herein, as described in Section 4 of <cite>XEP-0053</cite>.</p>">
<!-- old note about provisional namespaces in experimental specs -->
<!ENTITY NSNOTE "(see <link url='#ns'>Protocol Namespaces</link> regarding issuance of one or more permanent namespaces)">
<!-- shortcuts for registries -->
<!ENTITY ALTCONN "<<link url='https://xmpp.org/registrar/alt-connections.html'>https://xmpp.org/registrar/alt-connections.html</link>>">
<!ENTITY AMPACTIONS "<<link url='https://xmpp.org/registrar/amp-actions.html'>https://xmpp.org/registrar/amp-actions.html</link>>">
<!ENTITY AMPCONDITIONS "<<link url='https://xmpp.org/registrar/amp-conditions.html'>https://xmpp.org/registrar/amp-conditions.html</link>>">
<!ENTITY APPERRORS "<<link url='https://xmpp.org/registrar/errors.html'>https://xmpp.org/registrar/errors.html</link>>">
<!ENTITY COMPRESSMETHODS "<<link url='https://xmpp.org/registrar/compress.html'>https://xmpp.org/registrar/compress.html</link>>">
<!ENTITY DISCOCATEGORIES "<<link url='https://xmpp.org/registrar/disco-categories.html'>https://xmpp.org/registrar/disco-categories.html</link>>">
<!ENTITY DISCOFEATURES "<<link url='https://xmpp.org/registrar/disco-features.html'>https://xmpp.org/registrar/disco-features.html</link>>">
<!ENTITY FORMTYPES "<<link url='https://xmpp.org/registrar/formtypes.html'>https://xmpp.org/registrar/formtypes.html</link>>">
<!ENTITY JINGLEAPPS "<<link url='https://xmpp.org/registrar/jingle-apps.html'>https://xmpp.org/registrar/jingle-apps.html</link>>">
<!ENTITY JINGLETRANSPORTS "<<link url='https://xmpp.org/registrar/jingle-transports.html'>https://xmpp.org/registrar/jingle-transports.html</link>>">
<!ENTITY LINKLOCAL "<<link url='https://xmpp.org/registrar/linklocal.html'>https://xmpp.org/registrar/linklocal.html</link>>">
<!ENTITY MUCSTATUS "<<link url='https://xmpp.org/registrar/mucstatus.html'>https://xmpp.org/registrar/mucstatus.html</link>>">
<!ENTITY NAMESPACES "<<link url='https://xmpp.org/registrar/namespaces.html'>https://xmpp.org/registrar/namespaces.html</link>>">
<!ENTITY NODES "<<link url='https://xmpp.org/registrar/nodes.html'>https://xmpp.org/registrar/nodes.html</link>>">
<!ENTITY QUERYTYPES "<<link url='https://xmpp.org/registrar/querytypes.html'>https://xmpp.org/registrar/querytypes.html</link>>">
<!ENTITY SHIMHEADERS "<<link url='https://xmpp.org/registrar/shim.html'>https://xmpp.org/registrar/shim.html</link>>">
<!ENTITY SIPROFILES "<<link url='https://xmpp.org/registrar/si-profiles.html'>https://xmpp.org/registrar/si-profiles.html</link>>">
<!ENTITY STREAMFEATURES "<<link url='https://xmpp.org/registrar/stream-features.html'>https://xmpp.org/registrar/stream-features.html</link>>">
<!ENTITY XDVPREFIXES "<<link url='https://xmpp.org/registrar/xdv-prefixes.html'>https://xmpp.org/registrar/xdv-prefixes.html</link>>">
<!ENTITY XDVTYPES "<<link url='https://xmpp.org/registrar/xdv-datatypes.html'>https://xmpp.org/registrar/xdv-datatypes.html</link>>">
<!-- Jingle elements -->
<!ENTITY JINGLE "<jingle/>">
<!ENTITY CONTENT "<content/>">
<!ENTITY DESCRIPTION "<description/>">
<!ENTITY PAYLOADTYPE "<payload-type/>">
<!ENTITY TRANSPORT "<transport/>">
<!ENTITY CANDIDATE "<candidate/>">
<!-- shortcuts for Encrypted Sessions XEPs -->
<!ENTITY CBeCAx2n1 "&CsubB; = &CsubA; XOR 2<span class='super'>n-1</span>">
<!ENTITY CsubA "C<span class='sub'>A</span>">
<!ENTITY CsubB "C<span class='sub'>B</span>">
<!ENTITY dsupx "d<span class='super'>x</span>">
<!ENTITY e1eZ "e<span class='sub'>1</span>...e<span class='sub'>Z</span>">
<!ENTITY esupy "e<span class='super'>y</span>">
<!ENTITY formA "form<span class='sub'>A</span>">
<!ENTITY formA2 "form<span class='sub'>A2</span>">
<!ENTITY formB "form<span class='sub'>B</span>">
<!ENTITY formB2 "form<span class='sub'>B2</span>">
<!ENTITY gsupx "g<span class='super'>x</span>">
<!ENTITY gsupy "g<span class='super'>y</span>">
<!ENTITY He1HeZ "He<span class='sub'>1</span>...He<span class='sub'>Z</span>">
<!ENTITY IDA "ID<span class='sub'>A</span>">
<!ENTITY IDB "ID<span class='sub'>B</span>">
<!ENTITY isPKsubA "isPK<span class='sub'>A</span>">
<!ENTITY isPKsubB "isPK<span class='sub'>B</span>">
<!ENTITY KCsubA "KC<span class='sub'>A</span>">
<!ENTITY KCsubB "KC<span class='sub'>B</span>">
<!ENTITY KMsubA "KM<span class='sub'>A</span>">
<!ENTITY KMsubB "KM<span class='sub'>B</span>">
<!ENTITY KSsubA "KS<span class='sub'>A</span>">
<!ENTITY KSsubB "KS<span class='sub'>B</span>">
<!ENTITY macA "mac<span class='sub'>A</span>">
<!ENTITY macB "mac<span class='sub'>B</span>">
<!ENTITY NsubA "N<span class='sub'>A</span>">
<!ENTITY NsubB "N<span class='sub'>B</span>">
<!ENTITY MsubA "M<span class='sub'>A</span>">
<!ENTITY MsubB "M<span class='sub'>B</span>">
<!ENTITY pubKeyA "pubKey<span class='sub'>A</span>">
<!ENTITY pubKeyB "pubKey<span class='sub'>B</span>">
<!ENTITY pubKeysA "pubKeys<span class='sub'>A</span>">
<!ENTITY RS1ARSZA "RS<span class='sub'>1A</span>...RS<span class='sub'>ZA</span>">
<!ENTITY RS1BRSZB "RS<span class='sub'>1B</span>...RS<span class='sub'>ZB</span>">
<!ENTITY RSH1ARSHZA "RSH<span class='sub'>1A</span>...RSH<span class='sub'>ZA</span>">
<!ENTITY setA "{&KCsubB; &KMsubB; x}">
<!ENTITY setB "{&KCsubA; &KMsubA; y}">
<!ENTITY signA "sign<span class='sub'>A</span>">
<!ENTITY signB "sign<span class='sub'>B</span>">
<!ENTITY signKeyA "signKey<span class='sub'>A</span>">
<!ENTITY signKeyB "signKey<span class='sub'>B</span>">
<!ENTITY signKeysA "signKeys<span class='sub'>A</span>">
<!ENTITY signsA "signs<span class='sub'>A</span>">
<!ENTITY signsB "signs<span class='sub'>B</span>">
<!ENTITY twosup2n "2<span class='super'>2n-1</span>">
<!ENTITY twosup32 "2<span class='super'>32</span>">
<!ENTITY x1xZ "x<span class='sub'>1</span>...x<span class='sub'>Z</span>">
<!-- shortcuts for address types -->
<!ENTITY BAREJID "(<localpart@domain.tld> or <domain.tld>)">
<!ENTITY FULLJID "(<localpart@domain.tld/resource> or <domain.tld/resource>)">
<!ENTITY LOCALBARE "<localpart@domain.tld>">
<!ENTITY LOCALFULL "<localpart@domain.tld/resource>">
<!ENTITY DOMAINBARE "<domain.tld>">
<!ENTITY DOMAINFULL "<domain.tld/resource>">
<!-- shortcuts for error conditions -->
<!ENTITY e400 "<bad-request/>">
<!ENTITY badrequest "<bad-request/>">
<!ENTITY e409 "<conflict/>">
<!ENTITY conflict "<conflict/>">
<!ENTITY e501 "<feature-not-implemented/>">
<!ENTITY feature "<feature-not-implemented/>">
<!ENTITY e409 "<forbidden/>">
<!ENTITY forbidden "<forbidden/>">
<!-- no number for gone -->
<!ENTITY gone "<gone/>">
<!ENTITY e500 "<internal-server-error/>">
<!ENTITY internalserver "<internal-server-error/>">
<!ENTITY e404 "<item-not-found/>">
<!ENTITY notfound "<item-not-found/>">
<!-- no number for jid-malformed -->
<!ENTITY badjid "<jid-malformed/>">
<!ENTITY e406 "<not-acceptable/>">
<!ENTITY notacceptable "<not-acceptable/>">
<!ENTITY e405 "<not-allowed/>">
<!ENTITY notallowed "<not-allowed/>">
<!ENTITY e401 "<not-authorized/>">
<!ENTITY notauthorized "<not-authorized/>">
<!ENTITY e402 "<payment-required/>">
<!ENTITY payment "<payment-required/>">
<!ENTITY policy "<policy-violation/>">
<!-- no number for recipient-unavailable -->
<!ENTITY recipient "<recipient-unavailable/>">
<!ENTITY e302 "<redirect/>">
<!ENTITY redirect "<redirect/>">
<!ENTITY e407 "<registration-required/>">
<!ENTITY registration "<registration-required/>">
<!-- no number for remote-server-not-found -->
<!ENTITY remoteconnection "<remote-connection-failed/>">
<!-- no number for remote-server-not-found -->
<!ENTITY remoteserver "<remote-server-not-found/>">
<!ENTITY e504 "<remote-server-timeout/>">
<!ENTITY timeout "<remote-server-timeout/>">
<!-- no number for resource-constraint -->
<!ENTITY constraint "<resource-constraint/>">
<!ENTITY e503 "<service-unavailable/>">
<!ENTITY unavailable "<service-unavailable/>">
<!-- no number for subscription-required -->
<!ENTITY subrequired "<subscription-required/>">
<!-- no number for undefined-condition -->
<!ENTITY undefined "<undefined-condition/>">
<!-- no number for unexpected-request -->
<!ENTITY unexpected "<unexpected-request/>">
<!-- legal notice required by the XSF's IPR Policy -->
<!ENTITY LEGALNOTICE "
<legal>
<copyright>This XMPP Extension Protocol is copyright © 1999 – 2020 by the <link url='https://xmpp.org/'>XMPP Standards Foundation</link> (XSF).</copyright>
<permissions>Permission is hereby granted, free of charge, to any person obtaining a copy of this specification (the "Specification"), to make use of the Specification without restriction, including without limitation the rights to implement the Specification in a software program, deploy the Specification in a network service, and copy, modify, merge, publish, translate, distribute, sublicense, or sell copies of the Specification, and to permit persons to whom the Specification is furnished to do so, subject to the condition that the foregoing copyright notice and this permission notice shall be included in all copies or substantial portions of the Specification. Unless separate permission is granted, modified works that are redistributed shall not contain misleading information regarding the authors, title, number, or publisher of the Specification, and shall not claim endorsement of the modified works by the authors, any organization or project to which the authors belong, or the XMPP Standards Foundation.</permissions>
<warranty>## NOTE WELL: This Specification is provided on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. ##</warranty>
<liability>In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall the XMPP Standards Foundation or any author of this Specification be liable for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising from, out of, or in connection with the Specification or the implementation, deployment, or other use of the Specification (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if the XMPP Standards Foundation or such author has been advised of the possibility of such damages.</liability>
<conformance>This XMPP Extension Protocol has been contributed in full conformance with the XSF's Intellectual Property Rights Policy (a copy of which can be found at <<link url='https://xmpp.org/about/xsf/ipr-policy'>https://xmpp.org/about/xsf/ipr-policy</link>> or obtained by writing to XMPP Standards Foundation, P.O. Box 787, Parker, CO 80134 USA).</conformance>
</legal>" >
<!-- NOTE: New XEPs should not use this. Use LEGALNOTICE. -->
<!ENTITY PUBLICDOMAINNOTICE "
<legal>
<copyright>This document has been placed in the public domain.</copyright>
<!-- These probably need to be fixed, but they weren't in the documents this
entity replaces and I have no idea if adding them makes any sense legally.
Needs expert review.
-->
<permissions/>
<warranty/>
<liability/>
<conformance/>
</legal>" >
<!-- other XSF-related text shortcuts -->
<!ENTITY BOOLEANNOTE "<note>In accordance with Section 3.2.2.1 of <cite>XML Schema Part 2: Datatypes</cite>, the allowable lexical representations for the xs:boolean datatype are the strings "0" and "false" for the concept 'false' and the strings "1" and "true" for the concept 'true'; implementations MUST support both styles of lexical representation.</note>" >
<!ENTITY REGPROCESS "<p>In order to submit new values to this registry, the registrant shall define an XML fragment of the following form and either include it in the relevant XMPP Extension Protocol or send it to the email address <registrar@xmpp.org>:</p>" >
<!-- RFC 2119 reference -->
<!ENTITY CONFORMANCE '<p>The keywords "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in &rfc2119;.</p>' >
<!-- common XSF-related URLs -->
<!ENTITY BOARD "<span class='ref'><link url='https://xmpp.org/about/xmpp-standards-foundation#board'>XSF Board of Directors</link></span> <note>The XSF Board of Directors is an elected body that possesses overall responsibility for the affairs of the XMPP Standards Foundation. For further information, see <<link url='https://xmpp.org/about/xmpp-standards-foundation#board'>https://xmpp.org/about/xmpp-standards-foundation#board</link>>.</note>" >
<!ENTITY BYLAWS "<span class='ref'><link url='https://xmpp.org/about/xsf/bylaws'>XSF Bylaws</link></span> <note>The Bylaws of the XMPP Standards Foundation (XSF) define the legal basis and operating procedures of the XSF. For further information, see <<link url='https://xmpp.org/about/xsf/bylaws'>https://xmpp.org/about/xsf/bylaws</link>>.</note>" >
<!ENTITY COUNCIL "<span class='ref'><link url='https://xmpp.org/about/xmpp-standards-foundation#council'>XMPP Council</link></span> <note>The XMPP Council is a technical steering committee, authorized by the XSF Board of Directors and elected by XSF members, that approves of new XMPP Extensions Protocols and oversees the XSF's standards process. For further information, see <<link url='https://xmpp.org/about/xmpp-standards-foundation#council'>https://xmpp.org/about/xmpp-standards-foundation#council</link>>.</note>" >
<!ENTITY EDITOR "<span class='ref'><link url='https://xmpp.org/about/xsf/editor-team'>XMPP Extensions Editor</link></span> <note>The XMPP Extensions Editor is the individual appointed by the XSF Board of Directors to handle protocol submissions and provide day-to-day management of the XSF's standards process. For further information, see <<link url='https://xmpp.org/about/xsf/editor-team'>https://xmpp.org/about/xsf/editor-team</link>>.</note>" >
<!ENTITY XSF "<span class='ref'><link url='https://xmpp.org/about/xmpp-standards-foundation'>XMPP Standards Foundation (XSF)</link></span> <note>The XMPP Standards Foundation (XSF) is an independent, non-profit membership organization that develops open extensions to the IETF's Extensible Messaging and Presence Protocol (XMPP). For further information, see <<link url='https://xmpp.org/about/xmpp-standards-foundation'>https://xmpp.org/about/xmpp-standards-foundation</link>>.</note>" >
<!ENTITY XSFIETF "<span class='ref'><link url='https://mail.jabber.org/mailman/listinfo/xsf-ietf/'>XSF-IETF list</link></span> <note>The XSF-IETF list is for discussion of matters of mutual interest to the XMPP Standards Foundation and the Internet Engineering Task Force. The primary focus of the list is technical, mainly regarding XSF use of IETF technologies (e.g., references to RFCs in XMPP Extension Protocols) and IETF use of XSF technologies (e.g., references to XMPP Extension Protocols in Internet-Drafts and RFCs). To subscribe to the list or view the list archives, visit <<link url='https://mail.jabber.org/mailman/listinfo/xsf-ietf/'>https://mail.jabber.org/mailman/listinfo/xsf-ietf/</link>>.</note>" >
<!ENTITY XSFIPR "<span class='ref'><link url='https://xmpp.org/about/xsf/ipr-policy'>XSF IPR Policy</link></span> <note>The XSF IPR Policy defines the XMPP Standards Foundation's official policy regarding intellectual property rights (IPR) as they pertain to XMPP Extension Protocols (XEPs). For further information, see <<link url='https://xmpp.org/about/xsf/ipr-policy'>https://xmpp.org/about/xsf/ipr-policy</link>>.</note>" >
<!ENTITY REGISTRAR "<span class='ref'><link url='https://xmpp.org/registrar/'>XMPP Registrar</link></span> <note>The XMPP Registrar maintains a list of reserved protocol namespaces as well as registries of parameters used in the context of XMPP extension protocols approved by the XMPP Standards Foundation. For further information, see <<link url='https://xmpp.org/registrar/'>https://xmpp.org/registrar/</link>>.</note>" >
<!ENTITY SSIG "<span class='ref'><link url='https://mail.jabber.org/mailman/listinfo/standards/'>Standards SIG</link></span> <note>The Standards SIG is a standing Special Interest Group devoted to development of XMPP Extension Protocols. The discussion list of the Standards SIG is the primary venue for discussion of XMPP protocol extensions, as well as for announcements by the XMPP Extensions Editor and XMPP Registrar. To subscribe to the list or view the list archives, visit <<link url='https://mail.jabber.org/mailman/listinfo/standards/'>https://mail.jabber.org/mailman/listinfo/standards/</link>>.</note>" >
<!-- various code projects -->
<!ENTITY jabberd "<span class='ref'><link url='http://jabberd.org/'>jabberd</link></span> <note>The jabberd server is the original server implementation of the Jabber/XMPP protocols, first developed by Jeremie Miller, inventor of Jabber. For further information, see <<link url='http://jabberd.org/'>http://jabberd.org/</link>>.</note>" >
<!-- source code licenses -->
<!ENTITY GPL "<span class='ref'><link url='http://www.gnu.org/licenses/gpl.txt'>The General Public License</link></span> <note>The General Public License is the primary code license for free software as defined by the Free Software Foundation. For further information, see <<link url='http://www.gnu.org/licenses/gpl.txt'>http://www.gnu.org/licenses/gpl.txt</link>>.</note>" >
<!ENTITY LGPL "<span class='ref'><link url='http://www.gnu.org/licenses/lgpl.txt'>The Lesser General Public License</link></span> <note>The Lesser General Public License is a secondary code license for free software as defined by the Free Software Foundation. For further information, see <<link url='http://www.gnu.org/licenses/lgpl.txt'>http://www.gnu.org/licenses/lgpl.txt</link>>.</note>" >
<!ENTITY OSI "<span class='ref'><link url='http://www.opensource.org/'>The Open Source Initiative</link></span> <note>The Open Source Initiative defines the term 'open source' and maintains a list of open-source code licenses. For further information, see <<link url='http://www.opensource.org/'>http://www.opensource.org/</link>>.</note>" >
<!-- miscellaneous URLs -->
<!ENTITY clark "<span class='ref'><link url='http://www.jclark.com/xml/xmlns.htm'>Clark Notation</link></span> <note>Clark Notation, a syntax to allow universal names written as a URI in curly brackets followed by the local name; developed by James Clark. <<link url='http://www.jclark.com/xml/xmlns.htm'>http://www.jclark.com/xml/xmlns.htm</link>>.</note>" >
<!ENTITY CRIME "<span class='ref'><link url='https://blog.thijsalkema.de/blog/2014/08/07/https-attacks-and-xmpp-2-crime-and-breach/'>CRIME</link></span>" >
<!-- other organizations -->
<!ENTITY CACERT "<span class='ref'><link url='http://www.cacert.org/'>CAcert</link></span> <note>CAcert is a community-driven certificate authority which issues validated certificates based on participation in a web of trust rather than payment of a fee. For further information, see <<link url='http://www.cacert.org/'>http://www.cacert.org/</link>>.</note>" >
<!ENTITY DUBLINCORE "<span class='ref'><link url='http://www.dublincore.org/'>Dublin Core Metadata Initiative (DCMI)</link></span> <note>The Dublin Core Metadata Initiative (DCMI) is an organization dedicated to promoting the widespread adoption of interoperable metadata standards. For further information, see <<link url='http://www.dublincore.org/'>http://www.dublincore.org/</link>>.</note>" >
<!ENTITY FPL "<span class='ref'><link url='http://www.fixprotocol.org/'>FIX Protocol, Ltd.</link></span> <note>FIX Protocol, Ltd. is a securities industry consortium that has developed the Financial Information eXchange Protocol (FIX). For further information, see <<link url='http://www.fixprotocol.org/'>http://www.fixprotocol.org/</link>>.</note>" >
<!ENTITY IANA "the <span class='ref'><link url='http://www.iana.org/'>Internet Assigned Numbers Authority (IANA)</link></span> <note>The Internet Assigned Numbers Authority (IANA) is the central coordinator for the assignment of unique parameter values for Internet protocols, such as port numbers and URI schemes. For further information, see <<link url='http://www.iana.org/'>http://www.iana.org/</link>>.</note>" >
<!ENTITY IETF "<span class='ref'><link url='http://www.ietf.org/'>Internet Engineering Task Force (IETF)</link></span> <note>The Internet Engineering Task Force is the principal body engaged in the development of new Internet standard specifications, best known for its work on standards such as HTTP and SMTP. For further information, see <<link url='http://www.ietf.org/'>http://www.ietf.org/</link>>.</note>" >
<!ENTITY ISO "<span class='ref'><link url='http://www.iso.org/'>International Organization for Standardization (ISO)</link></span> <note>The International Organization for Standardization develops standards a wide variety of technical domains. For further information, see <<link url='http://www.iso.org/'>http://www.iso.org/</link>>.</note>" >
<!ENTITY ITU "<span class='ref'><link url='http://www.itu.int/'>International Telecommunication Union (ITU)</link></span> <note>The International Telecommunication Union develops technical and operating standards (such as H.323) for international telecommunication services. For further information, see <<link url='http://www.itu.int/'>http://www.itu.int/</link>>.</note>" >
<!ENTITY OASIS "<span class='ref'><link url='http://www.oasis-open.org/'>OASIS</link></span> <note>OASIS is a not-for-profit, international consortium that drives the development, convergence and adoption of e-business standards. For further information, see <<link url='http://www.oasis-open.org/'>http://www.oasis-open.org/</link>>.</note>" >
<!ENTITY OMA "<span class='ref'><link url='http://www.openmobilealliance.org/'>Open Mobile Alliance (OMA)</link></span> <note>The Open Mobile Alliance is the focal point for the development of mobile service enabler specifications, which support the creation of interoperable end-to-end mobile services. For further information, see <<link url='http://www.openmobilealliance.org/'>http://www.openmobilealliance.org/</link>>.</note>" >
<!ENTITY SFSCA "<span class='ref'><link url='http://cert.startcom.org/'>StartCom Free SSL Certification Authority</link></span> <note> The StartCom Free SSL Certification Authority is a certification authority that offers free or low-cost X.509 certificates to Internet user and server administrators. It is is also the root CA for the XMPP Intermediate Certification Authority run by the XMPP Standards Foundation. For further information, see <<link url='http://cert.startcom.org/'>http://cert.startcom.org/</link>>.</note>" >
<!ENTITY XMPPWG "<span class='ref'><link url='https://datatracker.ietf.org/wg/xmpp/charter/'>XMPP Working Group</link></span> <note>The XMPP Working Group was created by the Internet Engineering Task Force to define an adaptation of the base Jabber protocols that could be considered an IETF-approved instant messaging and presence technology. For further information, see <<link url='https://datatracker.ietf.org/wg/xmpp/charter/'>https://datatracker.ietf.org/wg/xmpp/charter/</link>>.</note>" >
<!ENTITY W3C "<span class='ref'><link url='http://www.w3.org/'>World Wide Web Consortium (W3C)</link></span> <note>The World Wide Web Consortium defines data formats and markup languages (such as HTML and XML) for use over the Internet. For further information, see <<link url='http://www.w3.org/'>http://www.w3.org/</link>>.</note>" >
<!-- W3C specs -->
<!ENTITY w3canon "<span class='ref'><link url='http://www.w3.org/TR/xml-c14n'>Canonical XML</link></span> <note>Canonical XML 1.0 <<link url='http://www.w3.org/TR/xml-c14n'>http://www.w3.org/TR/xml-c14n</link>>.</note>" >
<!ENTITY w3css "<span class='ref'><link url='http://www.w3.org/TR/REC-CSS1'>Cascading Style Sheets</link></span> <note>Cascading Style Sheets, level 1 <<link url='http://www.w3.org/TR/REC-CSS1'>http://www.w3.org/TR/REC-CSS1</link>>.</note>" >
<!ENTITY w3exi "<span class='ref'><link url='http://www.w3.org/TR/exi'>Efficient XML Interchange</link></span> <note>Efficient XML Interchange (EXI) Format 1.0 <<link url='http://www.w3.org/TR/exi'>http://www.w3.org/TR/exi</link>>.</note>" >
<!ENTITY w3html "<span class='ref'><link url='http://www.w3.org/TR/REC-html40'>HTML 4.0</link></span> <note>HTML 4.0 <<link url='http://www.w3.org/TR/REC-html40'>http://www.w3.org/TR/REC-html40</link>>.</note>" >
<!ENTITY w3process "<span class='ref'><link url='http://www.w3.org/Consortium/Process-20010719/process.html'>W3C Process Document</link></span> <note>W3C Process Document <<link url='http://www.w3.org/Consortium/Process-20010719/process.html'>http://www.w3.org/Consortium/Process-20010719/process.html</link>>.</note>" >
<!ENTITY w3soap "<span class='ref'><link url='http://www.w3.org/TR/SOAP/'>SOAP</link></span> <note>SOAP <<link url='http://www.w3.org/TR/SOAP/'>http://www.w3.org/TR/SOAP/</link>>.</note>" >
<!ENTITY w3soap0 "<span class='ref'><link url='http://www.w3.org/TR/soap12-part0'>SOAP Version 1.2 Part 0</link></span> <note>SOAP Version 1.2 Part 0: Primer <<link url='http://www.w3.org/TR/soap12-part0'>http://www.w3.org/TR/soap12-part0</link>>.</note>" >
<!ENTITY w3soap1 "<span class='ref'><link url='http://www.w3.org/TR/soap12-part1'>SOAP Version 1.2 Part 1</link></span> <note>SOAP Version 1.2 Part 1: Messaging <<link url='http://www.w3.org/TR/soap12-part1'>http://www.w3.org/TR/soap12-part1</link>>.</note>" >
<!ENTITY w3soap2 "<span class='ref'><link url='http://www.w3.org/TR/soap12-part2'>SOAP Version 1.2 Part 2</link></span> <note>SOAP Version 1.2 Part 2: Adjuncts <<link url='http://www.w3.org/TR/soap12-part2'>http://www.w3.org/TR/soap12-part2</link>>.</note>" >
<!ENTITY w3soapaf "<span class='ref'><link url='http://www.w3.org/TR/soap12-af/'>SOAP 1.2 Attachment Feature</link></span> <note>SOAP 1.2 Attachment Feature <<link url='http://www.w3.org/TR/soap12-af/'>http://www.w3.org/TR/soap12-af/</link>>.</note>" >
<!ENTITY w3soapemail "<span class='ref'><link url='http://www.w3.org/TR/soap12-email'>SOAP Email Binding</link></span> <note>SOAP Version 1.2 Email Binding <<link url='http://www.w3.org/TR/soap12-email'>http://www.w3.org/TR/soap12-email</link>>.</note>" >
<!ENTITY w3soapmtom "<span class='ref'><link url='http://www.w3.org/TR/soap12-mtom'>SOAP Message Transmission Optimization Mechanism</link></span> <note>SOAP Message Transmission Optimization Mechanism <<link url='http://www.w3.org/TR/soap12-mtom'>http://www.w3.org/TR/soap12-mtom</link>>.</note>" >
<!ENTITY w3soaprep "<span class='ref'><link url='http://www.w3.org/TR/soap12-rep'>Resource Representation SOAP Header Block</link></span> <note>Resource Representation SOAP Header Block <<link url='http://www.w3.org/TR/soap12-rep'>http://www.w3.org/TR/soap12-rep</link>>.</note>" >
<!ENTITY w3svg "<span class='ref'><link url='http://www.w3.org/TR/SVG11/'>Scalable Vector Graphics (SVG)</link></span> <note>Scalable Vector Graphics (SVG) 1.1 Specification
<<link url='http://www.w3.org/TR/SVG11/'>http://www.w3.org/TR/SVG11/</link>>.</note>" >
<!ENTITY w3turingtest "<span class='ref'><link url='http://www.w3.org/TR/turingtest/'>Inaccessibility of Visually-Oriented Anti-Robot Tests</link></span> <note>Inaccessibility of Visually-Oriented Anti-Robot Tests <<link url='http://www.w3.org/TR/turingtest/'>http://www.w3.org/TR/turingtest/</link>>.</note>" >
<!ENTITY w3xforms "<span class='ref'><link url='http://www.w3.org/TR/xforms'>XForms 1.0</link></span> <note>XForms 1.0 <<link url='http://www.w3.org/TR/xforms'>http://www.w3.org/TR/xforms</link>>.</note>" >
<!ENTITY w3xhtml "<span class='ref'><link url='http://www.w3.org/TR/xhtml1'>XHTML 1.0</link></span> <note>XHTML 1.0 <<link url='http://www.w3.org/TR/xhtml1'>http://www.w3.org/TR/xhtml1</link>>.</note>" >
<!ENTITY w3xhtml2 "<span class='ref'><link url='http://www.w3.org/TR/xhtml2'>XHTML 2.0</link></span> <note>XHTML 2.0 <<link url='http://www.w3.org/TR/xhtml2'>http://www.w3.org/TR/xhtml2</link>>.</note>" >
<!ENTITY w3xhtmlbasic "<span class='ref'><link url='http://www.w3.org/TR/xhtml-basic'>XHTML Basic</link></span> <note>XHTML Basic <<link url='http://www.w3.org/TR/xhtml-basic'>http://www.w3.org/TR/xhtml-basic</link>>.</note>" >
<!ENTITY w3xhtmlmod "<span class='ref'><link url='http://www.w3.org/TR/2004/WD-xhtml-modularization-20040218/'>Modularization of XHTML</link></span> <note>Modularization of XHTML <<link url='http://www.w3.org/TR/2004/WD-xhtml-modularization-20040218/'>http://www.w3.org/TR/2004/WD-xhtml-modularization-20040218/</link>>.</note>" >
<!ENTITY w3xinclude "<span class='ref'><link url='http://www.w3.org/TR/xinclude/'>XInclude</link></span> <note>XML Inclusions (XInclude) 1.0 <<link url='http://www.w3.org/TR/xinclude/'>http://www.w3.org/TR/xinclude/</link>>.</note>" >
<!ENTITY w3rdf "<span class='ref'><link url='http://www.w3.org/RDF/'>Resource Description Framework</link></span> <note>Resource Description Framework (RDF) <<link url='http://www.w3.org/RDF/'>http://www.w3.org/RDF/</link>>.</note>" >
<!ENTITY w3xml "<span class='ref'><link url='http://www.w3.org/TR/REC-xml/'>XML 1.0</link></span> <note>Extensible Markup Language (XML) 1.0 (Fourth Edition) <<link url='http://www.w3.org/TR/REC-xml/'>http://www.w3.org/TR/REC-xml/</link>>.</note>" >
<!ENTITY w3xmlenc "<span class='ref'><link url='http://www.w3.org/TR/2002/REC-xmlenc-core-20021210/'>XML Encryption</link></span> <note>XML Encryption Syntax and Processing <<link url='http://www.w3.org/TR/2002/REC-xmlenc-core-20021210/'>http://www.w3.org/TR/2002/REC-xmlenc-core-20021210/</link>>.</note>" >
<!ENTITY w3xmlnamespaces "<span class='ref'><link url='http://www.w3.org/TR/REC-xml-names/'>Namespaces in XML</link></span> <note>Namespaces in XML <<link url='http://www.w3.org/TR/REC-xml-names/'>http://www.w3.org/TR/REC-xml-names/</link>>.</note>" >
<!ENTITY w3xmlschema1 "<span class='ref'><link url='http://www.w3.org/TR/xmlschema11-1/'>XML Schema Part 1</link></span> <note>XML Schema Part 1: Structures <<link url='http://www.w3.org/TR/xmlschema11-1/'>http://www.w3.org/TR/xmlschema11-1/</link>>.</note>" >
<!ENTITY w3xmlschema2 "<span class='ref'><link url='http://www.w3.org/TR/xmlschema11-2/'>XML Schema Part 2</link></span> <note>XML Schema Part 2: Datatypes <<link url='http://www.w3.org/TR/xmlschema11-2/'>http://www.w3.org/TR/xmlschema11-2/</link>>.</note>" >
<!ENTITY w3xmlsig "<span class='ref'><link url='http://www.w3.org/TR/2002/REC-xmldsig-core-20020212/'>XML Signature</link></span> <note>XML Signature Syntax and Processing <<link url='http://www.w3.org/TR/2002/REC-xmldsig-core-20020212/'>http://www.w3.org/TR/2002/REC-xmldsig-core-20020212/</link>>.</note>" >
<!ENTITY w3xop "<span class='ref'><link url='http://www.w3.org/TR/xop10/'>XML-binary Optimized Packaging</link></span> <note>XML-binary Optimized Packaging <<link url='http://www.w3.org/TR/xop10/'>http://www.w3.org/TR/xop10/</link>>.</note>" >
<!ENTITY w3xpath "<span class='ref'><link url='http://www.w3.org/TR/xpath'>XPath</link></span> <note>XML Path Language <<link url='http://www.w3.org/TR/xpath'>http://www.w3.org/TR/xpath</link>>.</note>" >
<!ENTITY w3xslt "<span class='ref'><link url='http://www.w3.org/TR/xslt/'>XSL Transformations</link></span> <note>XSL Transformations <<link url='http://www.w3.org/TR/xslt/'>http://www.w3.org/TR/xslt/</link>>.</note>" >
<!ENTITY w3wsdl "<span class='ref'><link url='http://www.w3.org/TR/wsdl'>WSDL</link></span> <note>WSDL 1.1 Specification <<link url='http://www.w3.org/TR/wsdl'>http://www.w3.org/TR/wsdl</link>>.</note>" >
<!-- OASIS specs -->
<!ENTITY oasiscap "<span class='ref'><link url='http://www.oasis-open.org/committees/documents.php?wg_abbrev=emergency'>Common Alerting Protocol</link></span> <note>Common Alerting Protocol, v. 1.0 <<link url='http://www.oasis-open.org/committees/documents.php?wg_abbrev=emergency'>http://www.oasis-open.org/committees/documents.php?wg_abbrev=emergency</link>>.</note>" >
<!ENTITY saml "<span class='ref'><link url='http://www.oasis-open.org/committees/tc_home.php?wg_abbrev=security'>Security Assertion Markup Language</link></span> <note>Security Assertion Markup Language <<link url='http://www.oasis-open.org/committees/tc_home.php?wg_abbrev=security'>http://www.oasis-open.org/committees/tc_home.php?wg_abbrev=security</link>>.</note>" >
<!-- archived I-Ds -->
<!ENTITY arcfour "<span class='ref'><link url='http://www.watersprings.org/pub/id/draft-kaukonen-cipher-arcfour-03.txt'>Arcfour</link></span> <note>A Stream Cipher Encryption Algorithm 'Arcfour' <<link url='http://www.watersprings.org/pub/id/draft-kaukonen-cipher-arcfour-03.txt'>http://www.watersprings.org/pub/id/draft-kaukonen-cipher-arcfour-03.txt</link>>.</note>" >
<!ENTITY dawson3 "<span class='ref'><link url='http://www.watersprings.org/pub/id/draft-dawson-vcard-xml-dtd-03.txt'>draft-dawson-vcard-xml-dtd-03</link></span> <note>draft-dawson-vcard-xml-dtd-03 <<link url='http://www.watersprings.org/pub/id/draft-dawson-vcard-xml-dtd-03.txt'>http://www.watersprings.org/pub/id/draft-dawson-vcard-xml-dtd-03.txt</link>>. Work in progress.</note>" >
<!-- various security specs -->
<!ENTITY ansix952 "<span class='ref'>ANSI X9.52</span> <note>ANSI X9.52: Triple Data Encryption Algorithm Modes of Operation (1998).</note>" >
<!ENTITY blowfish "<span class='ref'><link url='http://www.schneier.com/paper-blowfish-fse.html'>Blowfish</link></span> <note>Description of a New Variable-Length Key, 64-Bit Block Cipher (Blowfish) <<link url='http://www.schneier.com/paper-blowfish-fse.html'>http://www.schneier.com/paper-blowfish-fse.html</link>>.</note>" >
<!ENTITY idea "<span class='ref'><link url='http://perso.ens-lyon.fr/jean-luc.beuchat/IDEA/'>IDEA</link></span> <note>The IDEA Block Cipher <<link url='http://perso.ens-lyon.fr/jean-luc.beuchat/IDEA/'>http://perso.ens-lyon.fr/jean-luc.beuchat/IDEA/</link>>.</note>" >
<!ENTITY nistfips46-3 "<span class='ref'><link url='http://csrc.nist.gov/publications/fips/fips46-3/fips46-3.pdf'>Data Encryption Standard</link></span> <note>Data Encryption Standard: Federal Information Processing Standards Publication 46-3 <<link url='http://csrc.nist.gov/publications/fips/fips46-3/fips46-3.pdf'>http://csrc.nist.gov/publications/fips/fips46-3/fips46-3.pdf</link>>.</note>" >
<!ENTITY nistfips180-2 "<span class='ref'><link url='http://csrc.nist.gov/publications/fips/fips180-2/fips180-2withchangenotice.pdf'>SHA</link></span> <note>Secure Hash Standard: Federal Information Processing Standards Publication 180-2 <<link url='http://csrc.nist.gov/publications/fips/fips180-2/fips180-2withchangenotice.pdf'>http://csrc.nist.gov/publications/fips/fips180-2/fips186-2withchangenotice.pdf</link>>.</note>" >
<!ENTITY nistfips186-2 "<span class='ref'><link url='http://csrc.nist.gov/publications/fips/fips186-2/fips186-2-change1.pdf'>DSS</link></span> <note>Digital Signature Standard: Federal Information Processing Standards Publication 186 <<link url='http://csrc.nist.gov/publications/fips/fips186-2/fips186-2-change1.pdf'>http://csrc.nist.gov/publications/fips/fips186-2/fips186-2-change1.pdf</link>>.</note>" >
<!ENTITY nistfips197 "<span class='ref'><link url='http://csrc.nist.gov/publications/fips/fips197/fips-197.pdf'>AES</link></span> <note>Advanced Encryption Standard: Federal Information Processing Standards Publication 197 <<link url='http://csrc.nist.gov/publications/fips/fips197/fips-197.pdf'>http://csrc.nist.gov/publications/fips/fips197/fips-197.pdf</link>>.</note>" >
<!ENTITY nistfips198a "<span class='ref'><link url='http://csrc.nist.gov/publications/fips/fips198/fips-198a.pdf'>HMAC</link></span> <note>The Keyed-Hash Message Authentication Code (HMAC): Federal Information Processing Standards Publication 198 <<link url='http://csrc.nist.gov/publications/fips/fips198/fips-198a.pdf'>http://csrc.nist.gov/publications/fips/fips198/fips-198a.pdf</link>>.</note>" >
<!ENTITY nistfips198-1 "<span class='ref'><link url='http://csrc.nist.gov/publications/fips/fips198-1/FIPS-198-1_final.pdf'>HMAC</link></span> <note>The Keyed-Hash Message Authentication Code (HMAC): Federal Information Processing Standards Publication 198-1 <<link url='http://csrc.nist.gov/publications/fips/fips198-1/FIPS-198-1_final.pdf'>http://csrc.nist.gov/publications/fips/fips198-1/FIPS-198-1_final.pdf</link>>.</note>" >
<!ENTITY nistfips800-38a "<span class='ref'><link url='http://csrc.nist.gov/publications/nistpubs/800-38a/sp800-38a.pdf'>Recommendation for Block Cipher Modes of Operation</link></span> <note>Recommendation for Block Cipher Modes of Operation: Federal Information Processing Standards Publication 800-38a <<link url='http://csrc.nist.gov/publications/nistpubs/800-38a/sp800-38a.pdf'>http://csrc.nist.gov/publications/ nistpubs/800-38a/sp800-38a.pdf</link>>.</note>" >
<!ENTITY otr "<span class='ref'><link url='http://www.cypherpunks.ca/otr/otr-codecon.pdf'>Off-the-Record Communication</link></span> <note>Off-the-Record Communication, or, Why Not to Use PGP <<link url='http://www.cypherpunks.ca/otr/otr-codecon.pdf'>http://www.cypherpunks.ca/otr/otr-codecon.pdf</link>> <<link url='http://www.cypherpunks.ca/otr/otr-wpes.pdf'>http://www.cypherpunks.ca/otr/otr-wpes.pdf</link>>.</note>" >
<!ENTITY serpent "<span class='ref'><link url='http://www.cl.cam.ac.uk/~rja14/serpent.html'>Serpent</link></span> <note>The Serpent Block Cipher <<link url='http://www.cl.cam.ac.uk/~rja14/serpent.html'>http://www.cl.cam.ac.uk/~rja14/serpent.html</link>>.</note>" >
<!ENTITY sigma "<span class='ref'><link url='http://web.archive.org/web/20040409013835/http://www.ee.technion.ac.il/~hugo/sigma.ps'>SIGMA</link></span> <note>SIGMA: the 'SIGn-and-MAc' Approach to Authenticated Diffie-Hellman and its Use in the IKE Protocols (Hugo Krawczyk, June 12 2003) <<link url='http://web.archive.org/web/20040409013835/http://www.ee.technion.ac.il/~hugo/sigma.ps'>http://www.ee.technion.ac.il/~hugo/sigma.ps</link>>.</note>" >
<!ENTITY ssl "<span class='ref'><link url='http://wp.netscape.com/eng/ssl3/draft302.txt'>SSL</link></span> <note>SSL V3.0 <<link url='http://wp.netscape.com/eng/ssl3/draft302.txt'>http://wp.netscape.com/eng/ssl3/draft302.txt</link>>.</note>" >
<!ENTITY twofish "<span class='ref'><link url='http://www.schneier.com/twofish.html'>Twofish</link></span> <note>The Twofish Block Cipher <<link url='http://www.schneier.com/twofish.html'>http://www.schneier.com/twofish.html</link>>.</note>" >
<!ENTITY whirlpool "<span class='ref'><link url='http://paginas.terra.com.br/informatica/paulobarreto/WhirlpoolPage.html'>Whirlpool</link></span> <note>The Whirlpool Hash Function <<link url='http://paginas.terra.com.br/informatica/paulobarreto/WhirlpoolPage.html'>http://paginas.terra.com.br/informatica/paulobarreto/WhirlpoolPage.html</link>>.</note>" >
<!ENTITY olm "<span class='ref'><link url='https://matrix.org/docs/spec/olm.html'>Olm</link></span> <note>Olm: A Cryptographic Ratchet <<link url='https://matrix.org/docs/spec/olm.html'>https://matrix.org/docs/spec/olm.html</link>>.</note>" >
<!ENTITY curve25519 "<span class='ref'><link url='http://cr.yp.to/ecdh/curve25519-20060209.pdf'>Curve25519</link></span> <note>Curve25519: new Diffie-Hellman speed records <<link url='http://cr.yp.to/ecdh/curve25519-20060209.pdf'>http://cr.yp.to/ecdh/curve25519-20060209.pdf</link>>.</note>" >
<!ENTITY doubleratchet "<span class='ref'><link url='https://signal.org/docs/specifications/doubleratchet/'>DoubleRatchet</link></span> <note>The Double Ratchet Algorithm <<link url='https://signal.org/docs/specifications/doubleratchet/'>https://signal.org/docs/specifications/doubleratchet/</link>>.</note>" >
<!ENTITY x3dh "<span class='ref'><link url='https://www.signal.org/docs/specifications/x3dh/'>X3DH</link></span> <note>The X3DH Key Agreement Protocol <<link url='https://www.signal.org/docs/specifications/x3dh/'>https://www.signal.org/docs/specifications/x3dh/</link>>.</note>" >
<!ENTITY xeddsa "<span class='ref'><link url='https://www.signal.org/docs/specifications/xeddsa/'>XEdDSA</link></span> <note>The XEdDSA and VXEdDSA Signature Schemes <<link url='https://www.signal.org/docs/specifications/xeddsa/'>https://www.signal.org/docs/specifications/xeddsa/</link>>.</note>" >
<!-- ITU specs -->
<!ENTITY H.323 "<span class='ref'>H.323</span> <note>ITU Recommendation H.323: Packet-based Multimedia Communications Systems (September 1999).</note>" >
<!ENTITY ASN.1 "<span class='ref'><link url='http://www.itu.int/ITU-T/studygroups/com17/languages/X.680-0207.pdf'>ASN.1</link></span> <note>X.680: Abstract Syntax Notation One (ASN.1): Specification of basic notation <<link url='http:://www.itu.int/ITU-T/studygroups/com17/languages/X.680-0207.pdf'>http:://www.itu.int/ITU-T/studygroups/com17/languages/X.680-0207.pdf</link>>.</note>" >
<!ENTITY BER "<span class='ref'><link url='http://www.itu.int/ITU-T/studygroups/com17/languages/X.690-0207.pdf'>BER</link></span> <note>X.690: ASN.1 encoding rules: Specification of Basic Encoding Rules (BER), Canonical Encoding Rules (CER) and Distinguished Encoding Rules (DER) <<link url='http://www.itu.int/ITU-T/studygroups/com17/languages/X.690-0207.pdf'>http://www.itu.int/ITU-T/studygroups/com17/languages/X.690-0207.pdf</link>>.</note>" >
<!ENTITY E.164 "<span class='ref'><link url='http://en.wikipedia.org/wiki/E.164'>ITU E.164</link></span> <note>ITU Recommendation E.164/I.331: The International Public Telecommunication Numbering Plan (1997). This specification is not freely available; a short summary is located at <<link url='http://en.wikipedia.org/wiki/E.164'>http://en.wikipedia.org/wiki/E.164</link>>.</note>" >
<!ENTITY X.500 "<span class='ref'><link url='http://www.itu.int/rec/T-REC-X.500-200102-I/en'>X.500</link></span> <note>X.500: The Directory: Overview of concepts, models and service <<link url='http://www.itu.int/rec/T-REC-X.500-200102-I/en'>http://www.itu.int/rec/T-REC-X.500-200102-I/en</link>>.</note>" >
<!ENTITY X.841 "<span class='ref'><link url='http://www.itu.int/rec/T-REC-X.841-200010-I/en'>X.841</link></span> <note>X.841: Security techniques - Security information objects for access control <<link url='http://www.itu.int/rec/T-REC-X.841-200010-I/en'>http://www.itu.int/rec/T-REC-X.841-200010-I/en</link>>.</note>" >
<!ENTITY BT.601 "<span class='ref'><link url='https://www.itu.int/rec/R-REC-BT.601-7-201103-I/en'>BT.601</link></span> <note>BT.601: Studio encoding parameters of digital television for standard 4:3 and wide screen 16:9 aspect ratios <<link url='https://www.itu.int/rec/R-REC-BT.601-7-201103-I/en'>https://www.itu.int/rec/R-REC-BT.601-7-201103-I/en</link>></note>">
<!-- some other specs -->
<!ENTITY ascii "<span class='ref'>US-ASCII</span> <note>Coded Character Set - 7-bit American Standard Code for Information Interchange (American National Standards Institute X3.4, 1986).</note>" >
<!ENTITY bayeux "<span class='ref'><link url='http://svn.cometd.org/trunk/bayeux/bayeux.html'>Bayeux Protocol</link></span> <note>Bayeux Protocol <<link url='http://svn.cometd.org/trunk/bayeux/bayeux.html'>http://svn.cometd.org/trunk/bayeux/bayeux.html</link>>.</note>" >
<!ENTITY dcmiterms "<span class='ref'><link url='http://dublincore.org/documents/dcmi-terms/'>DCMI Metadata Terms</link></span> <note>Dublin Core Metadata Initiative: DCMI Metadata Terms <<link url='http://dublincore.org/documents/dcmi-terms/'>http://dublincore.org/documents/dcmi-terms/</link>>.</note>" >
<!ENTITY ecma151 "<span class='ref'><link url='http://www.ecma-international.org/publications/standards/Ecma-151.htm'>Standard ECMA-151</link></span> <note>Standard ECMA-151: Data Compression for Information Interchange - Adaptive Coding with Embedded Dictionary - DLCZ Algorithm <<link url='http://www.ecma-international.org/publications/standards/Ecma-151.htm'>http://www.ecma-international.org/publications/standards/Ecma-151.htm</link>>.</note>" >
<!ENTITY ecma262 "<span class='ref'><link url='http://www.ecma-international.org/publications/standards/Ecma-262.htm'>ECMAScript (JavaScript)</link></span> <note>Standard ECMA-262: ECMAScript Language Specification 3rd edition <<link url='http://www.ecma-international.org/publications/standards/Ecma-262.htm'>http://www.ecma-international.org/publications/standards/Ecma-262.htm</link>>.</note>" >
<!ENTITY fix "<span class='ref'><link url='http://www.fixprotocol.org/'>Financial Information eXchange Protocol (FIX)</link></span> <note>The Financial Information eXchange Protocol (FIX) is a messaging standard developed specifically for the real-time electronic exchange of securities transactions. For further information, see <<link url='http://www.fixprotocol.org/'>http://www.fixprotocol.org/</link>>.</note>" >
<!ENTITY fixml "<span class='ref'><link url='http://www.fixprotocol.org/cgi-bin/Spec.cgi?menu=4'>FIXML</link></span> <note>FIXML is an XML representation of the data format used in Financial Information eXchange Protocol (FIX), which abstracts the FIX data format from the underlying FIX transport mechanism. For further information, see <<link url='http://www.fixprotocol.org/cgi-bin/Spec.cgi?menu=4'>http://www.fixprotocol.org/cgi-bin/Spec.cgi?menu=4</link>>.</note>" >
<!ENTITY foaf "<span class='ref'><link url='http://xmlns.com/foaf/0.1/'>Friend of a Friend (FOAF)</link></span> <note>Friend of a Friend (FOAF) <<link url='http://xmlns.com/foaf/0.1/'>http://xmlns.com/foaf/0.1/</link>>.</note>" >
<!ENTITY icestandard "<span class='ref'><link url='http://www.icestandard.org/'>Information and Content Exchange</link></span> <note>Information and Content Exchange <<link url='http://www.icestandard.org/'>http://www.icestandard.org/</link>>.</note>" >
<!ENTITY IC-ISM "<span class='ref'>IC-ISM</span> <note>Common Information Sharing Standard for Information Security Marking: XML Implementation, Office of the Director of National Intelligence, Release 2.0.3, 15 February 2006.</note>" >
<!ENTITY iso8601 "<span class='ref'><link url='http://www.cl.cam.ac.uk/~mgk25/iso-time.html'>ISO 8601</link></span> <note>ISO 8601: Representation of Dates and Times (2000). This specification is not freely available; however, a good summary is located at <<link url='http://www.cl.cam.ac.uk/~mgk25/iso-time.html'>http://www.cl.cam.ac.uk/~mgk25/iso-time.html</link>>.</note>" >
<!ENTITY oauth "<span class='ref'><link url='http://oauth.net/core/1.0/'>OAuth</link></span> <note>OAuth Core 1.0 <<link url='http://oauth.net/core/1.0/'>http://oauth.net/core/1.0/</link>>.</note>" >
<!ENTITY openid "<span class='ref'><link url='http://openid.net/specs/openid-authentication-2_0.html'>OpenID</link></span> <note>OpenID Authentication 2.0 <<link url='http://openid.net/specs/openid-authentication-2_0.html'>http://openid.net/specs/openid-authentication-2_0.html</link>>.</note>" >
<!ENTITY petnames "<span class='ref'><link url='http://www.skyhunter.com/marcs/petnames/IntroPetNames.html'>Introduction to Petname Systems</link></span> <note>Introduction to Petname Systems <<link url='http://www.skyhunter.com/marcs/petnames/IntroPetNames.html'>http://www.skyhunter.com/marcs/petnames/IntroPetNames.html</link>>.</note>" >
<!ENTITY rhttp "<span class='ref'><link url='http://tools.ietf.org/html/draft-lentczner-rhttp'>Reverse HTTP</link></span> <note>Reverse HTTP <<link url='http://tools.ietf.org/html/draft-lentczner-rhttp'>http://tools.ietf.org/html/draft-lentczner-rhttp</link>>.</note>" >
<!ENTITY rtf "<span class='ref'><link url='http://msdn.microsoft.com/library/en-us/dnrtfspec/html/rtfspec.asp'>Rich Text Format (RTF)</link></span> <note>Rich Text Format (RTF) Version 1.5 Specification <<link url='http://msdn.microsoft.com/library/en-us/dnrtfspec/html/rtfspec.asp'>http://msdn.microsoft.com/library/en-us/dnrtfspec/html/rtfspec.asp</link>>.</note>" >
<!ENTITY SDN.801c "<span class='ref'>SDN.801c</span> <note>SDN.801c: Access Control Concept and Mechanism, US National Security Agency, Revision C, 12 May 1999.</note>" >
<!ENTITY uax9 "<span class='ref'>Unicode Standard Annex #9</span> <note>Unicode Standard Annex #9, "Unicode Bidirectional Algorithm", edited by Mark Davis, Aharon Lanin, and Andrew Glass. An integral part of The Unicode Standard, <<link url='http://unicode.org/reports/tr9/'>http://unicode.org/reports/tr9/</link>>.</note>" >
<!ENTITY unicode10 "<span class='ref'>Unicode 10.0.0</span> <note>The Unicode Consortium. The Unicode Standard, Version 10.0.0, (Mountain View, CA: The Unicode Consortium, 2017. ISBN 978-1-936213-16-0) <<link url='https://www.unicode.org/versions/Unicode10.0.0/'>https://www.unicode.org/versions/Unicode10.0.0/</link>>.</note>" >
<!ENTITY unicode "<span class='ref'>Unicode</span> <note>The Unicode Standard, The Unicode Consortium <<link url='http://www.unicode.org/versions/latest/'>http://www.unicode.org/versions/latest/</link>>.</note>" >
<!ENTITY wap "<span class='ref'><link url='http://www.wapforum.org/'>Wireless Access Protocol (WAP)</link></span> <note>Wireless Access Protocol (WAP) <<link url='http://www.wapforum.org/'>http://www.wapforum.org/</link>>.</note>" >
<!ENTITY wv-csp "<span class='ref'><link url='http://www.openmobilealliance.org/tech/affiliates/wv/wvindex.html'>WV Client-Server Protocol v1.1</link></span> <note>Wireless Village Client-Server Protocol v1.1 <<link url='http://www.openmobilealliance.org/tech/affiliates/wv/wvindex.html'>http://www.openmobilealliance.org/tech/affiliates/wv/wvindex.html</link>>.</note>" >
<!ENTITY xfn "<span class='ref'><link url='http://gmpg.org/xfn/index'>XHTML Friends Network (XFN)</link></span> <note>XHTML Friends Network (XFN) <<link url='http://gmpg.org/xfn/index'>http://gmpg.org/xfn/index</link>>.</note>" >
<!ENTITY xmlrpc "<span class='ref'><link url='http://www.xmlrpc.com/spec'>XML-RPC</link></span> <note>XML-RPC <<link url='http://www.xmlrpc.com/spec'>http://www.xmlrpc.com/spec</link>>.</note>" >
<!ENTITY hsluv "<span class='ref'><link url='http://www.hsluv.org/'>HSLuv</link></span> <note>HSLuv <<link url='http://www.hsluv.org/'>http://www.hsluv.org/</link>>.</note>" >
<!ENTITY cbtls13 "<span class='ref'><link url='http://tools.ietf.org/html/draft-ietf-kitten-tls-channel-bindings-for-tls13'>Channel Bindings for TLS 1.3</link></span> <note>Channel Bindings for TLS 1.3 <<link url='http://tools.ietf.org/html/draft-ietf-kitten-tls-channel-bindings-for-tls13'>http://tools.ietf.org/html/draft-ietf-kitten-tls-channel-bindings-for-tls13</link>>.</note>" >
<!-- IETF RFCs -->
<!ENTITY rfc0768 "<span class='ref'><link url='http://tools.ietf.org/html/rfc0768'>RFC 768</link></span> <note>RFC 768: User Datagram Protocol <<link url='http://tools.ietf.org/html/rfc0768'>http://tools.ietf.org/html/rfc0768</link>>.</note>" >
<!ENTITY rfc0793 "<span class='ref'><link url='http://tools.ietf.org/html/rfc0793'>RFC 793</link></span> <note>RFC 793: Transmission Control Protocol <<link url='http://tools.ietf.org/html/rfc0793'>http://tools.ietf.org/html/rfc0793</link>>.</note>" >
<!ENTITY rfc0822 "<span class='ref'><link url='http://tools.ietf.org/html/rfc0822'>RFC 822</link></span> <note>RFC 822: Standard for the Format of ARPA Internet Text Messages <<link url='http://tools.ietf.org/html/rfc0822'>http://tools.ietf.org/html/rfc0822</link>>.</note>" >
<!ENTITY rfc0862 "<span class='ref'><link url='http://tools.ietf.org/html/rfc0862'>RFC 862</link></span> <note>RFC 862: Echo Protocol <<link url='http://tools.ietf.org/html/rfc0862'>http://tools.ietf.org/html/rfc0862</link>>.</note>" >
<!ENTITY rfc0918 "<span class='ref'><link url='http://tools.ietf.org/html/rfc0918'>RFC 918</link></span> <note>RFC 918: Post Office Protocol <<link url='http://tools.ietf.org/html/rfc0918'>http://tools.ietf.org/html/rfc0918</link>>.</note>" >
<!ENTITY rfc0958 "<span class='ref'><link url='http://tools.ietf.org/html/rfc0958'>RFC 958</link></span> <note>RFC 958: Network Time Protocol (NTP) <<link url='http://tools.ietf.org/html/rfc0958'>http://tools.ietf.org/html/rfc0958</link>>.</note>" >
<!ENTITY rfc0959 "<span class='ref'><link url='http://tools.ietf.org/html/rfc0959'>RFC 959</link></span> <note>RFC 959: File Transfer Protocol <<link url='http://tools.ietf.org/html/rfc0959'>http://tools.ietf.org/html/rfc0959</link>>.</note>" >
<!ENTITY rfc1034 "<span class='ref'><link url='http://tools.ietf.org/html/rfc1034'>RFC 1034</link></span> <note>RFC 1034: Domain Names - Concepts and Facilities <<link url='http://tools.ietf.org/html/rfc1034'>http://tools.ietf.org/html/rfc1034</link>>.</note>" >
<!ENTITY rfc1035 "<span class='ref'><link url='http://tools.ietf.org/html/rfc1035'>RFC 1035</link></span> <note>RFC 1035: Domain Names - Implementation and Specification <<link url='http://tools.ietf.org/html/rfc1035'>http://tools.ietf.org/html/rfc1035</link>>.</note>" >
<!ENTITY rfc1123 "<span class='ref'><link url='http://tools.ietf.org/html/rfc1123'>RFC 1123</link></span> <note>RFC 1123: Requirements for Internet Hosts -- Application and Support <<link url='http://tools.ietf.org/html/rfc1123'>http://tools.ietf.org/html/rfc1123</link>>.</note>" >
<!ENTITY rfc1305 "<span class='ref'><link url='http://tools.ietf.org/html/rfc1305'>RFC 1305</link></span> <note>RFC 1305: Network Time Protocol (Version 3) <<link url='http://tools.ietf.org/html/rfc1305'>http://tools.ietf.org/html/rfc1305</link>>.</note>" >
<!ENTITY rfc1321 "<span class='ref'><link url='http://tools.ietf.org/html/rfc1321'>RFC 1321</link></span> <note>RFC 1321: The MD5 Message-Digest Algorithm <<link url='http://tools.ietf.org/html/rfc1321'>http://tools.ietf.org/html/rfc1321</link>>.</note>" >
<!ENTITY rfc1393 "<span class='ref'><link url='http://tools.ietf.org/html/rfc1393'>RFC 1393</link></span> <note>RFC 1393: Traceroute Using an IP Option <<link url='http://tools.ietf.org/html/rfc1393'>http://tools.ietf.org/html/rfc1393</link>>.</note>" >
<!ENTITY rfc1459 "<span class='ref'><link url='http://tools.ietf.org/html/rfc1459'>RFC 1459</link></span> <note>RFC 1459: Internet Relay Chat <<link url='http://tools.ietf.org/html/rfc1459'>http://tools.ietf.org/html/rfc1459</link>>.</note>" >
<!ENTITY rfc1464 "<span class='ref'><link url='http://tools.ietf.org/html/rfc1464'>RFC 1464</link></span> <note>RFC 1464: Using the Domain Name System To Store Arbitrary String Attributes <<link url='http://tools.ietf.org/html/rfc1464'>http://tools.ietf.org/html/rfc1464</link>>.</note>" >
<!ENTITY rfc1750 "<span class='ref'><link url='http://tools.ietf.org/html/rfc1750'>RFC 1750</link></span> <note>RFC 1750: Randomness Recommendations for Security <<link url='http://tools.ietf.org/html/rfc1750'>http://tools.ietf.org/html/rfc1750</link>>.</note>" >
<!ENTITY rfc1808 "<span class='ref'><link url='http://tools.ietf.org/html/rfc1808'>RFC 1808</link></span> <note>RFC 1808: Uniform Resource Locators <<link url='http://tools.ietf.org/html/rfc1808'>http://tools.ietf.org/html/rfc1808</link>>.</note>" >
<!ENTITY rfc1886 "<span class='ref'><link url='http://tools.ietf.org/html/rfc1886'>RFC 1886</link></span> <note>RFC 1886: DNS Extensions to support IP version 6 <<link url='http://tools.ietf.org/html/rfc1886'>http://tools.ietf.org/html/rfc1886</link>>.</note>" >
<!ENTITY rfc1889 "<span class='ref'><link url='http://tools.ietf.org/html/rfc1889'>RFC 1889</link></span> <note>RFC 1889: RTP: A Transport Protocol for Real-Time Applications <<link url='http://tools.ietf.org/html/rfc1889'>http://tools.ietf.org/html/rfc1889</link>>.</note>" >
<!ENTITY rfc1893 "<span class='ref'><link url='http://tools.ietf.org/html/rfc1893'>RFC 1893</link></span> <note>RFC 1893: Enhanced Mail System Status Codes <<link url='http://tools.ietf.org/html/rfc1893'>http://tools.ietf.org/html/rfc1893</link>>.</note>" >
<!ENTITY rfc1928 "<span class='ref'><link url='http://tools.ietf.org/html/rfc1928'>RFC 1928</link></span> <note>RFC 1928: SOCKS Protocol Version 5 <<link url='http://tools.ietf.org/html/rfc1928'>http://tools.ietf.org/html/rfc1928</link>>.</note>" >
<!ENTITY rfc1929 "<span class='ref'><link url='http://tools.ietf.org/html/rfc1929'>RFC 1929</link></span> <note>RFC 1929: Username/Password Authentication for SOCKS V5 <<link url='http://tools.ietf.org/html/rfc1929'>http://tools.ietf.org/html/rfc1929</link>>.</note>" >
<!ENTITY rfc1939 "<span class='ref'><link url='http://tools.ietf.org/html/rfc1939'>RFC 1939</link></span> <note>RFC 1939: Post Office Protocol - Version 3 <<link url='http://tools.ietf.org/html/rfc1939'>http://tools.ietf.org/html/rfc1939</link>>.</note>" >
<!ENTITY rfc1945 "<span class='ref'><link url='http://tools.ietf.org/html/rfc1945'>RFC 1945</link></span> <note>RFC 1945: Hypertext Transfer Protocol -- HTTP/1.0 <<link url='http://tools.ietf.org/html/rfc1945'>http://tools.ietf.org/html/rfc1945</link>>.</note>" >
<!ENTITY rfc1950 "<span class='ref'><link url='http://tools.ietf.org/html/rfc1950'>RFC 1950</link></span> <note>RFC 1950: ZLIB Compressed Data Format Specification version 3.3 <<link url='http://tools.ietf.org/html/rfc1950'>http://tools.ietf.org/html/rfc1950</link>>.</note>" >
<!ENTITY rfc1951 "<span class='ref'><link url='http://tools.ietf.org/html/rfc1951'>RFC 1951</link></span> <note>RFC 1951: DEFLATE Compressed Data Format Specification version 1.3 <<link url='http://tools.ietf.org/html/rfc1951'>http://tools.ietf.org/html/rfc1951</link>>.</note>" >
<!ENTITY rfc2026 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2026'>RFC 2026</link></span> <note>RFC 2026: The Internet Standards Process <<link url='http://tools.ietf.org/html/rfc2026'>http://tools.ietf.org/html/rfc2026</link>>.</note>" >
<!ENTITY rfc2045 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2045'>RFC 2045</link></span> <note>RFC 2045: Multipurpose Internet Mail Extensions (MIME) Part One: Format of Internet Message Bodies <<link url='http://tools.ietf.org/html/rfc2045'>http://tools.ietf.org/html/rfc2045</link>>.</note>" >
<!ENTITY rfc2068 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2068'>RFC 2068</link></span> <note>RFC 2068: Hypertext Transport Protocol -- HTTP/1.1 <<link url='http://tools.ietf.org/html/rfc2068'>http://tools.ietf.org/html/rfc2068</link>>.</note>" >
<!ENTITY rfc2104 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2104'>RFC 2104</link></span> <note>RFC 2104: HMAC: Keyed-Hashing for Message Authentication <<link url='http://tools.ietf.org/html/rfc2104'>http://tools.ietf.org/html/rfc2104</link>>.</note>" >
<!ENTITY rfc2109 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2109'>RFC 2109</link></span> <note>RFC 2109: HTTP State Mangement Mechanism <<link url='http://tools.ietf.org/html/rfc2109'>http://tools.ietf.org/html/rfc2109</link>>.</note>" >
<!ENTITY rfc2111 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2111'>RFC 2111</link></span> <note>RFC 2111: Content-ID and Message-ID Uniform Resource Locators <<link url='http://tools.ietf.org/html/rfc2111'>http://tools.ietf.org/html/rfc2111</link>>.</note>" >
<!ENTITY rfc2119 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2119'>RFC 2119</link></span> <note>RFC 2119: Key words for use in RFCs to Indicate Requirement Levels <<link url='http://tools.ietf.org/html/rfc2119'>http://tools.ietf.org/html/rfc2119</link>>.</note>" >
<!ENTITY rfc2141 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2141'>RFC 2141</link></span> <note>RFC 2141: URN Syntax <<link url='http://tools.ietf.org/html/rfc2141'>http://tools.ietf.org/html/rfc2141</link>>.</note>" >
<!ENTITY rfc2142 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2142'>RFC 2142</link></span> <note>RFC 2142: Mailbox Names for Common Services, Roles and Functions <<link url='http://tools.ietf.org/html/rfc2142'>http://tools.ietf.org/html/rfc2142</link>>.</note>" >
<!ENTITY rfc2144 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2144'>RFC 2144</link></span> <note>RFC 2144: The CAST-128 Encryption Algorithm <<link url='http://tools.ietf.org/html/rfc2144'>http://tools.ietf.org/html/rfc2144</link>>.</note>" >
<!ENTITY rfc2183 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2183'>RFC 2183</link></span> <note>RFC 2183: Communicating Presentation Information in Internet Messages: The Content-Disposition Header Field <<link url='http://tools.ietf.org/html/rfc2183'>http://tools.ietf.org/html/rfc2183</link>>.</note>" >
<!ENTITY rfc2222 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2222'>RFC 2222</link></span> <note>RFC 2222: Simple Authentication and Security Layer (SASL) <<link url='http://tools.ietf.org/html/rfc2222'>http://tools.ietf.org/html/rfc2222</link>>.</note>" >
<!ENTITY rfc2244 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2244'>RFC 2244</link></span> <note>RFC 2244: ACAP -- Application Configuration Access Protocol <<link url='http://tools.ietf.org/html/rfc2244'>http://tools.ietf.org/html/rfc2244</link>>.</note>" >
<!ENTITY rfc2246 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2246'>RFC 2246</link></span> <note>RFC 2246: The TLS Protocol Version 1.0 <<link url='http://tools.ietf.org/html/rfc2246'>http://tools.ietf.org/html/rfc2246</link>>.</note>" >
<!ENTITY rfc2251 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2251'>RFC 2251</link></span> <note>RFC 2251: Lightweight Directory Access Protocol (v3) <<link url='http://tools.ietf.org/html/rfc2251'>http://tools.ietf.org/html/rfc2251</link>>.</note>" >
<!ENTITY rfc2252 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2252'>RFC 2252</link></span> <note>RFC 2252: Lightweight Directory Access Protocol (v3): Attribute Syntax Definitions <<link url='http://tools.ietf.org/html/rfc2252'>http://tools.ietf.org/html/rfc2252</link>>.</note>" >
<!ENTITY rfc2253 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2253'>RFC 2253</link></span> <note>RFC 2253: Lightweight Directory Access Protocol (v3): UTF-8 String Representation of Distinguished Names <<link url='http://tools.ietf.org/html/rfc2253'>http://tools.ietf.org/html/rfc2253</link>>.</note>" >
<!ENTITY rfc2256 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2256'>RFC 2256</link></span> <note>RFC 2256: A Summary of the X.500(96) User Schema for use with LDAPv3 <<link url='http://tools.ietf.org/html/rfc2256'>http://tools.ietf.org/html/rfc2256</link>>.</note>" >
<!ENTITY rfc2277 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2277'>RFC 2277</link></span> <note>RFC 2277: IETF Policy on Character Sets and Languages <<link url='http://tools.ietf.org/html/rfc2277'>http://tools.ietf.org/html/rfc2277</link>>.</note>" >
<!ENTITY rfc2317 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2317'>RFC 2317</link></span> <note>RFC 2317: Classless IN-ADDR.ARPA delegation <<link url='http://tools.ietf.org/html/rfc2317'>http://tools.ietf.org/html/rfc2317</link>>.</note>" >
<!ENTITY rfc2326 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2326'>RFC 2326</link></span> <note>RFC 2326: Real Time Streaming Protocol (RTSP) <<link url='http://tools.ietf.org/html/rfc2326'>http://tools.ietf.org/html/rfc2326</link>>.</note>" >
<!ENTITY rfc2327 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2327'>RFC 2327</link></span> <note>RFC 2327: SDP: Session Description Protocol <<link url='http://tools.ietf.org/html/rfc2327'>http://tools.ietf.org/html/rfc2327</link>>.</note>" >
<!ENTITY rfc2350 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2350'>RFC 2350</link></span> <note>RFC 2350: Expectations for Computer Security Incident Response <<link url='http://tools.ietf.org/html/rfc2350'>http://tools.ietf.org/html/rfc2350</link>>.</note>" >
<!ENTITY rfc2368 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2368'>RFC 2368</link></span> <note>RFC 2368: The mailto URL scheme <<link url='http://tools.ietf.org/html/rfc2368'>http://tools.ietf.org/html/rfc2368</link>>.</note>" >
<!ENTITY rfc2397 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2397'>RFC 2397</link></span> <note>RFC 2397: The data: URL scheme <<link url='http://tools.ietf.org/html/rfc2397'>http://tools.ietf.org/html/rfc2397</link>>.</note>" >
<!ENTITY rfc2405 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2405'>RFC 2405</link></span> <note>RFC 2405: The ESP DES-CBC Cipher Algorithm With Explicit IV <<link url='http://tools.ietf.org/html/rfc2405'>http://tools.ietf.org/html/rfc2405</link>>.</note>" >
<!ENTITY rfc2406 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2406'>RFC 2406</link></span> <note>RFC 2406: IP Encapsulating Security Payload (ESP) <<link url='http://tools.ietf.org/html/rfc2406'>http://tools.ietf.org/html/rfc2406</link>>.</note>" >
<!ENTITY rfc2409 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2409'>RFC 2409</link></span> <note>RFC 2409: The Internet Key Exchange (IKE) <<link url='http://tools.ietf.org/html/rfc2409'>http://tools.ietf.org/html/rfc2409</link>>.</note>" >
<!ENTITY rfc2412 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2412'>RFC 2412</link></span> <note>RFC 2412: The OAKLEY Key Determination Protocol <<link url='http://tools.ietf.org/html/rfc2412'>http://tools.ietf.org/html/rfc2412</link>>.</note>" >
<!ENTITY rfc2413 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2413'>RFC 2413</link></span> <note>RFC 2413: Dublin Core Metadata for Resource Discovery <<link url='http://tools.ietf.org/html/rfc2413'>http://tools.ietf.org/html/rfc2413</link>>.</note>" >
<!ENTITY rfc2414 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2414'>RFC 2414</link></span> <note>RFC 2414: Increasing TCP's Initial Window <<link url='http://tools.ietf.org/html/rfc2414'>http://tools.ietf.org/html/rfc2414</link>>.</note>" >
<!ENTITY rfc2420 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2420'>RFC 2420</link></span> <note>RFC 2420: The PPP Triple-DES Encryption Protocol (3DESE) <<link url='http://tools.ietf.org/html/rfc2420'>http://tools.ietf.org/html/rfc2420</link>>.</note>" >
<!ENTITY rfc2426 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2426'>RFC 2426</link></span> <note>RFC 2426: vCard MIME Directory Profile <<link url='http://tools.ietf.org/html/rfc2426'>http://tools.ietf.org/html/rfc2426</link>>.</note>" >
<!ENTITY rfc2437 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2437'>RFC 2437</link></span> <note>RFC 2437: PKCS #1: RSA Cryptography Specifications Version 2.0 <<link url='http://tools.ietf.org/html/rfc2437'>http://tools.ietf.org/html/rfc2437</link>>.</note>" >
<!ENTITY rfc2451 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2451'>RFC 2451</link></span> <note>RFC 2451: The ESP CBC-Mode Cipher Algorithms <<link url='http://tools.ietf.org/html/rfc2451'>http://tools.ietf.org/html/rfc2451</link>>.</note>" >
<!ENTITY rfc2510 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2510'>RFC 2510</link></span> <note>RFC 2510: Internet X.509 Public Key Infrastructure Certificate Management Protocols <<link url='http://tools.ietf.org/html/rfc2510'>http://tools.ietf.org/html/rfc2510</link>>.</note>" >
<!ENTITY rfc2518 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2518'>RFC 2518</link></span> <note>RFC 2518: HTTP Extensions for Distributed Authoring -- WEBDAV <<link url='http://tools.ietf.org/html/rfc2518'>http://tools.ietf.org/html/rfc2518</link>>.</note>" >
<!ENTITY rfc2518bis "<span class='ref'><link url='http://tools.ietf.org/html/draft-ietf-webdav-rfc2518bis'>rfc2518bis</link></span> <note>RFC 2518: HTTP Extensions for Distributed Authoring -- WebDAV <<link url='http://tools.ietf.org/html/draft-ietf-webdav-rfc2518bis'>http://tools.ietf.org/html/draft-ietf-webdav-rfc2518bis</link>>.</note>" >
<!ENTITY rfc2595 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2595'>RFC 2595</link></span> <note>RFC 2595: Using TLS with IMAP, POP3 and ACAP <<link url='http://tools.ietf.org/html/rfc2595'>http://tools.ietf.org/html/rfc2595</link>>.</note>" >
<!ENTITY rfc2606 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2606'>RFC 2606</link></span> <note>RFC 2606: Reserved Top Level DNS Names <<link url='http://tools.ietf.org/html/rfc2606'>http://tools.ietf.org/html/rfc2606</link>>.</note>" >
<!ENTITY rfc2608 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2608'>RFC 2608</link></span> <note>RFC 2608: Service Location Protocol, Version 2 <<link url='http://tools.ietf.org/html/rfc2608'>http://tools.ietf.org/html/rfc2608</link>>.</note>" >
<!ENTITY rfc2616 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2616'>RFC 2616</link></span> <note>RFC 2616: Hypertext Transport Protocol -- HTTP/1.1 <<link url='http://tools.ietf.org/html/rfc2616'>http://tools.ietf.org/html/rfc2616</link>>.</note>" >
<!ENTITY rfc2617 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2617'>RFC 2617</link></span> <note>RFC 2617: HTTP Authentication: Basic and Digest Access Authentication <<link url='http://tools.ietf.org/html/rfc2617'>http://tools.ietf.org/html/rfc2617</link>>.</note>" >
<!ENTITY rfc2631 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2631'>RFC 2631</link></span> <note>RFC 2631: Diffie-Hellman Key Agreement Method <<link url='http://tools.ietf.org/html/rfc2631'>http://tools.ietf.org/html/rfc2631</link>>.</note>" >
<!ENTITY rfc2633 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2633'>RFC 2633</link></span> <note>RFC 2633: S/MIME Version 3 Message Specification <<link url='http://tools.ietf.org/html/rfc2633'>http://tools.ietf.org/html/rfc2633</link>>.</note>" >
<!ENTITY rfc2634 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2634'>RFC 2634</link></span> <note>RFC 2634: Enhanced Security Services for S/MIME <<link url='http://tools.ietf.org/html/rfc2634'>http://tools.ietf.org/html/rfc2634</link>>.</note>" >
<!ENTITY rfc2648 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2648'>RFC 2648</link></span> <note>RFC 2648: A URN Namespace for IETF Documents <<link url='http://tools.ietf.org/html/rfc2648'>http://tools.ietf.org/html/rfc2648</link>>.</note>" >
<!ENTITY rfc2778 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2778'>RFC 2778</link></span> <note>RFC 2778: A Model for Presence and Instant Messaging <<link url='http://tools.ietf.org/html/rfc2778'>http://tools.ietf.org/html/rfc2778</link>>.</note>" >
<!ENTITY rfc2779 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2779'>RFC 2779</link></span> <note>RFC 2779: A Model for Presence and Instant Messaging <<link url='http://tools.ietf.org/html/rfc2779'>http://tools.ietf.org/html/rfc2779</link>>.</note>" >
<!ENTITY rfc2782 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2782'>RFC 2782</link></span> <note>RFC 2782: A DNS RR for specifying the location of services (DNS SRV) <<link url='http://tools.ietf.org/html/rfc2782'>http://tools.ietf.org/html/rfc2782</link>>.</note>" >
<!ENTITY rfc2798 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2798'>RFC 2798</link></span> <note>RFC 2798: Definition of the inetOrgPerson LDAP Object Class <<link url='http://tools.ietf.org/html/rfc2798'>http://tools.ietf.org/html/rfc2798</link>>.</note>" >
<!ENTITY rfc2806 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2806'>RFC 2806</link></span> <note>RFC 2806: URLs for Telephone Calls <<link url='http://tools.ietf.org/html/rfc2806'>http://tools.ietf.org/html/rfc2806</link>>.</note>" >
<!ENTITY rfc2810 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2810'>RFC 2810</link></span> <note>RFC 2810: Internet Relay Chat: Architecture <<link url='http://tools.ietf.org/html/rfc2810'>http://tools.ietf.org/html/rfc2810</link>>.</note>" >
<!ENTITY rfc2811 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2811'>RFC 2811</link></span> <note>RFC 2811: Internet Relay Chat: Channel Management <<link url='http://tools.ietf.org/html/rfc2811'>http://tools.ietf.org/html/rfc2811</link>>.</note>" >
<!ENTITY rfc2812 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2812'>RFC 2812</link></span> <note>RFC 2812: Internet Relay Chat: Client Protocol <<link url='http://tools.ietf.org/html/rfc2812'>http://tools.ietf.org/html/rfc2812</link>>.</note>" >
<!ENTITY rfc2813 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2813'>RFC 2813</link></span> <note>RFC 2813: Internet Relay Chat: Server Protocol <<link url='http://tools.ietf.org/html/rfc2813'>http://tools.ietf.org/html/rfc2813</link>>.</note>" >
<!ENTITY rfc2817 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2817'>RFC 2817</link></span> <note>RFC 2817: Upgrading to TLS Within HTTP/1.1 <<link url='http://tools.ietf.org/html/rfc2817'>http://tools.ietf.org/html/rfc2817</link>>.</note>" >
<!ENTITY rfc2818 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2818'>RFC 2818</link></span> <note>RFC 2818: HTTP Over TLS <<link url='http://tools.ietf.org/html/rfc2818'>http://tools.ietf.org/html/rfc2818</link>>.</note>" >
<!ENTITY rfc2821 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2821'>RFC 2821</link></span> <note>RFC 2821: Simple Mail Transfer Protocol <<link url='http://tools.ietf.org/html/rfc2821'>http://tools.ietf.org/html/rfc2821</link>>.</note>" >
<!ENTITY rfc2822 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2822'>RFC 2822</link></span> <note>RFC 2822: Internet Message Format <<link url='http://tools.ietf.org/html/rfc2822'>http://tools.ietf.org/html/rfc2822</link>>.</note>" >
<!ENTITY rfc2831 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2831'>RFC 2831</link></span> <note>RFC 2831: Using Digest Authentication as a SASL Mechanism <<link url='http://tools.ietf.org/html/rfc2831'>http://tools.ietf.org/html/rfc2831</link>>.</note>" >
<!ENTITY rfc2833 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2833'>RFC 2833</link></span> <note>RFC 2833: RTP Payload for DTMF Digits, Telephony Tones and Telephony Signals <<link url='http://tools.ietf.org/html/rfc2833'>http://tools.ietf.org/html/rfc2833</link>>.</note>" >
<!ENTITY rfc2920 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2920'>RFC 2920</link></span> <note>RFC 2920: SMTP Service Extension for Command Pipelining <<link url='http://tools.ietf.org/html/rfc2920'>http://tools.ietf.org/html/rfc2920</link>>.</note>" >
<!ENTITY rfc2965 "<span class='ref'><link url='http://tools.ietf.org/html/rfc2965'>RFC 2965</link></span> <note>RFC 2965: HTTP State Management Mechanism <<link url='http://tools.ietf.org/html/rfc2965'>http://tools.ietf.org/html/rfc2965</link>>.</note>" >
<!ENTITY rfc3023 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3023'>RFC 3023</link></span> <note>RFC 3023: XML Media Types <<link url='http://tools.ietf.org/html/rfc3023'>http://tools.ietf.org/html/rfc3023</link>>.</note>" >
<!ENTITY rfc3066 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3066'>RFC 3066</link></span> <note>RFC 3066: Tags for the Identification of Languages <<link url='http://tools.ietf.org/html/rfc3066'>http://tools.ietf.org/html/rfc3066</link>>.</note>" >
<!ENTITY rfc3067 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3067'>RFC 3067</link></span> <note>RFC 3067: TERENA's Incident Object Description and Exchange Format Requirements <<link url='http://tools.ietf.org/html/rfc3067'>http://tools.ietf.org/html/rfc3067</link>>.</note>" >
<!ENTITY rfc3080 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3080'>RFC 3080</link></span> <note>RFC 3080: The Blocks Extensible Exchange Protocol Core (BEEP) <<link url='http://tools.ietf.org/html/rfc3080'>http://tools.ietf.org/html/rfc3080</link>>.</note>" >
<!ENTITY rfc3117 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3117'>RFC 3117</link></span> <note>RFC 3117: On the Design of Application Protocols <<link url='http://tools.ietf.org/html/rfc3117'>http://tools.ietf.org/html/rfc3117</link>>.</note>" >
<!ENTITY rfc3156 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3156'>RFC 3156</link></span> <note>RFC 3156: MIME Security with OpenPGP <<link url='http://tools.ietf.org/html/rfc3156'>http://tools.ietf.org/html/rfc3156</link>>.</note>" >
<!ENTITY rfc3174 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3174'>RFC 3174</link></span> <note>RFC 3174: US Secure Hash Algorithm 1 (SHA1) <<link url='http://tools.ietf.org/html/rfc3174'>http://tools.ietf.org/html/rfc3174</link>>.</note>" >
<!ENTITY rfc3217 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3217'>RFC 3217</link></span> <note>RFC 3217: Triple-DES and RC2 Key Wrapping <<link url='http://tools.ietf.org/html/rfc3217'>http://tools.ietf.org/html/rfc3217</link>>.</note>" >
<!ENTITY rfc3261 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3261'>RFC 3261</link></span> <note>RFC 3261: Session Initiation Protocol (SIP) <<link url='http://tools.ietf.org/html/rfc3261'>http://tools.ietf.org/html/rfc3261</link>>.</note>" >
<!ENTITY rfc3264 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3264'>RFC 3264</link></span> <note>RFC 3264: An Offer/Answer Model with the Session Description Protocol (SDP) <<link url='http://tools.ietf.org/html/rfc3264'>http://tools.ietf.org/html/rfc3264</link>>.</note>" >
<!ENTITY rfc3269 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3269'>RFC 3269</link></span> <note>RFC 3269: UTF-8, a transformation format of ISO 10646 <<link url='http://tools.ietf.org/html/rfc3269'>http://tools.ietf.org/html/rfc3269</link>>.</note>" >
<!ENTITY rfc3281 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3281'>RFC 3281</link></span> <note>RFC 3281: An Internet Attribute Certificate Profile for Authorization <<link url='http://tools.ietf.org/html/rfc3281'>http://tools.ietf.org/html/rfc3281</link>>.</note>" >
<!ENTITY rfc3288 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3288'>RFC 3288</link></span> <note>RFC 3288: Using the Simple Object Access Protocol (SOAP) in Blocks Extensible Exchange Protocol (BEEP) <<link url='http://tools.ietf.org/html/rfc3288'>http://tools.ietf.org/html/rfc3288</link>>.</note>" >
<!ENTITY rfc3312 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3312'>RFC 3312</link></span> <note>RFC 3312: Integration of Resource Management and Session Initiation Protocol (SIP) <<link url='http://tools.ietf.org/html/rfc3312'>http://tools.ietf.org/html/rfc3312</link>>.</note>" >
<!ENTITY rfc3330 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3330'>RFC 3330</link></span> <note>RFC 3330: Special-Use IPv4 Addresses <<link url='http://tools.ietf.org/html/rfc3330'>http://tools.ietf.org/html/rfc3330</link>>.</note>" >
<!ENTITY rfc3339 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3339'>DATETIME</link></span> <note>RFC 3339: Date and Time on the Internet: Timestamps <<link url='http://tools.ietf.org/html/rfc3339'>http://tools.ietf.org/html/rfc3339</link>>.</note>" >
<!ENTITY rfc3340 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3340'>RFC 3340</link></span> <note>RFC 3340: The Application Exchange Core (APEX) <<link url='http://tools.ietf.org/html/rfc3340'>http://tools.ietf.org/html/rfc3340</link>>.</note>" >
<!ENTITY rfc3341 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3341'>RFC 3341</link></span> <note>RFC 3341: The Application Exchange (APEX) Access Service <<link url='http://tools.ietf.org/html/rfc3341'>http://tools.ietf.org/html/rfc3341</link>>.</note>" >
<!ENTITY rfc3342 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3342'>RFC 3342</link></span> <note>RFC 3342: The Application Exchange (APEX) Option Party Pack, Part Deux! <<link url='http://tools.ietf.org/html/rfc3342'>http://tools.ietf.org/html/rfc3342</link>>.</note>" >
<!ENTITY rfc3343 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3343'>RFC 3343</link></span> <note>RFC 3343: The Application Exchange (APEX) Presence Service <<link url='http://tools.ietf.org/html/rfc3343'>http://tools.ietf.org/html/rfc3343</link>>.</note>" >
<!ENTITY rfc3370 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3370'>RFC 3370</link></span> <note>RFC 3370: Cryptographic Message Syntax (CMS) Algorithms <<link url='http://tools.ietf.org/html/rfc3370'>http://tools.ietf.org/html/rfc3370</link>>.</note>" >
<!ENTITY rfc3389 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3389'>RFC 3389</link></span> <note>RFC 3389: Real-time Transport Protocol (RTP) Payload for Comfort Noise (CN) <<link url='http://tools.ietf.org/html/rfc3389'>http://tools.ietf.org/html/rfc3389</link>>.</note>" >
<!ENTITY rfc3394 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3394'>RFC 3394</link></span> <note>RFC 3394: Advanced Encryption Standard (AES) Key Wrap Algorithm <<link url='http://tools.ietf.org/html/rfc3394'>http://tools.ietf.org/html/rfc3394</link>>.</note>" >
<!ENTITY rfc3401 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3401'>RFC 3401</link></span> <note>RFC 3401: Dynamic Delegation Discovery System (DDDS) Part One: The Comprehensive DDDS <<link url='http://tools.ietf.org/html/rfc3401'>http://tools.ietf.org/html/rfc3401</link>>.</note>" >
<!ENTITY rfc3403 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3403'>RFC 3403</link></span> <note>RFC 3403: Dynamic Delegation Discovery System (DDDS) Part Three: The Domain Name System (DNS) Database <<link url='http://tools.ietf.org/html/rfc3403'>http://tools.ietf.org/html/rfc3403</link>>.</note>" >
<!ENTITY rfc3404 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3404'>RFC 3404</link></span> <note>RFC 3404: Dynamic Delegation Discovery System (DDDS) Part Four: The Uniform Resource Identifiers (URI) Resolution Application <<link url='http://tools.ietf.org/html/rfc3404'>http://tools.ietf.org/html/rfc3404</link>>.</note>" >
<!ENTITY rfc3428 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3428'>RFC 3428</link></span> <note>RFC 3428: Session Initiation Protocol (SIP) Extension for Instant Messaging <<link url='http://tools.ietf.org/html/rfc3428'>http://tools.ietf.org/html/rfc3428</link>>.</note>" >
<!ENTITY rfc3447 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3447'>RFC 3447</link></span> <note>RFC 3447: Public-Key Cryptography Standards (PKCS) #1: RSA Cryptography Specifications Version 2.1 <<link url='http://tools.ietf.org/html/rfc3447'>http://tools.ietf.org/html/rfc3447</link>>.</note>" >
<!ENTITY rfc3454 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3454'>RFC 3454</link></span> <note>RFC 3454: Preparation of Internationalized Strings (stringprep) <<link url='http://tools.ietf.org/html/rfc3454'>http://tools.ietf.org/html/rfc3454</link>>.</note>" >
<!ENTITY rfc3489 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3489'>RFC 3489</link></span> <note>RFC 3489: STUN - Simple Traversal of User Datagram Protocol (UDP) Through Network Address Translators (NATs) <<link url='http://tools.ietf.org/html/rfc3489'>http://tools.ietf.org/html/rfc3489</link>>.</note>" >
<!ENTITY rfc3490 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3490'>RFC 3490</link></span> <note>RFC 3490: Internationalizing Domain Names in Applications (IDNA) <<link url='http://tools.ietf.org/html/rfc3490'>http://tools.ietf.org/html/rfc3490</link>>.</note>" >
<!ENTITY rfc3514 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3514'>RFC 3514</link></span> <note>RFC 3514: The Security Flag in the IPv4 Header <<link url='http://tools.ietf.org/html/rfc3514'>http://tools.ietf.org/html/rfc3514</link>>.</note>" >
<!ENTITY rfc3526 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3526'>RFC 3526</link></span> <note>RFC 3526: More Modular Exponential (MODP) Diffie-Hellman Groups <<link url='http://tools.ietf.org/html/rfc3526'>http://tools.ietf.org/html/rfc3526</link>>.</note>" >
<!ENTITY rfc3548 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3548'>RFC 3548</link></span> <note>RFC 3548: The Base16, Base32, and Base64 Data Encodings <<link url='http://tools.ietf.org/html/rfc3548'>http://tools.ietf.org/html/rfc3548</link>>.</note>" >
<!ENTITY rfc3550 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3550'>RFC 3550</link></span> <note>RFC 3550: RTP: A Transport Protocol for Real-Time Applications <<link url='http://tools.ietf.org/html/rfc3550'>http://tools.ietf.org/html/rfc3550</link>>.</note>" >
<!ENTITY rfc3551 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3551'>RFC 3551</link></span> <note>RFC 3551: RTP Profile for Audio and Video Conferences with Minimal Control <<link url='http://tools.ietf.org/html/rfc3551'>http://tools.ietf.org/html/rfc3551</link>>.</note>" >
<!ENTITY rfc3552 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3552'>RFC 3552</link></span> <note>RFC 3552: Guidelines for Writing RFC Text on Security Considerations <<link url='http://tools.ietf.org/html/rfc3552'>http://tools.ietf.org/html/rfc3552</link>>.</note>" >
<!ENTITY rfc3555 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3555'>RFC 3555</link></span> <note>RFC 3555: MIME Type Registration of RTP Payload Formats <<link url='http://tools.ietf.org/html/rfc3555'>http://tools.ietf.org/html/rfc3555</link>>.</note>" >
<!ENTITY rfc3605 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3605'>RFC 3605</link></span> <note>RFC 3605: Real Time Control Protocol (RTCP) attribute in Session Description Protocol (SDP) <<link url='http://tools.ietf.org/html/rfc3605'>http://tools.ietf.org/html/rfc3605</link>>.</note>" >
<!ENTITY rfc3629 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3629'>RFC 3629</link></span> <note>RFC 3629: UTF-8, a transformation format of ISO 10646 <<link url='http://tools.ietf.org/html/rfc3629'>http://tools.ietf.org/html/rfc3629</link>>.</note>" >
<!ENTITY rfc3711 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3711'>RFC 3711</link></span> <note>RFC 3711: The Secure Real-time Transport Protocol (SRTP) <<link url='http://tools.ietf.org/html/rfc3711'>http://tools.ietf.org/html/rfc3711</link>>.</note>" >
<!ENTITY rfc3744 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3744'>RFC 3744</link></span> <note>RFC 3744: Web Distributed Authoring and Versioning (WebDAV) Access Control Protocol <<link url='http://tools.ietf.org/html/rfc3744'>http://tools.ietf.org/html/rfc3744</link>>.</note>" >
<!ENTITY rfc3749 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3749'>RFC 3749</link></span> <note>RFC 3749: Transport Layer Security Protocol Compression Methods <<link url='http://tools.ietf.org/html/rfc3749'>http://tools.ietf.org/html/rfc3749</link>>.</note>" >
<!ENTITY rfc3766 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3766'>RFC 3766</link></span> <note>RFC 3766: Determining Strengths For Public Keys Used For Exchanging Symmetric Keys <<link url='http://tools.ietf.org/html/rfc3766'>http://tools.ietf.org/html/rfc3766</link>>.</note>" >
<!ENTITY rfc3859 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3859'>RFC 3859</link></span> <note>RFC 3859: Common Profile for Presence (CPP) <<link url='http://tools.ietf.org/html/rfc3859'>http://tools.ietf.org/html/rfc3859</link>>.</note>" >
<!ENTITY rfc3860 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3860'>RFC 3860</link></span> <note>RFC 3860: Common Profile for Instant Messaging (CPIM) <<link url='http://tools.ietf.org/html/rfc3860'>http://tools.ietf.org/html/rfc3860</link>>.</note>" >
<!ENTITY rfc3861 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3861'>RFC 3861</link></span> <note>RFC 3861: Address Resolution for Instant Messaging and Presence <<link url='http://tools.ietf.org/html/rfc3861'>http://tools.ietf.org/html/rfc3861</link>>.</note>" >
<!ENTITY rfc3862 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3862'>RFC 3862</link></span> <note>RFC 3862: Common Presence and Instant Messaging (CPIM): Message Format <<link url='http://tools.ietf.org/html/rfc3862'>http://tools.ietf.org/html/rfc3862</link>>.</note>" >
<!ENTITY rfc3863 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3863'>RFC 3863</link></span> <note>RFC 3863: Presence Information Data Format (PIDF) <<link url='http://tools.ietf.org/html/rfc3863'>http://tools.ietf.org/html/rfc3863</link>>.</note>" >
<!ENTITY rfc3920 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3920'>RFC 3920</link></span> <note>RFC 3920: Extensible Messaging and Presence Protocol (XMPP): Core <<link url='http://tools.ietf.org/html/rfc3920'>http://tools.ietf.org/html/rfc3920</link>>.</note>" >
<!ENTITY rfc3921 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3921'>RFC 3921</link></span> <note>RFC 3921: Extensible Messaging and Presence Protocol (XMPP): Instant Messaging and Presence <<link url='http://tools.ietf.org/html/rfc3921'>http://tools.ietf.org/html/rfc3921</link>>.</note>" >
<!ENTITY rfc3922 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3922'>RFC 3922</link></span> <note>RFC 3922: Mapping the Extensible Messaging and Presence Protocol (XMPP) to Common Presence and Instant Messaging (CPIM) <<link url='http://tools.ietf.org/html/rfc3922'>http://tools.ietf.org/html/rfc3922</link>>.</note>" >
<!ENTITY rfc3923 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3923'>RFC 3923</link></span> <note>RFC 3923: End-to-End Signing and Object Encryption for the Extensible Messaging and Presence Protocol (XMPP) <<link url='http://tools.ietf.org/html/rfc3923'>http://tools.ietf.org/html/rfc3923</link>>.</note>" >
<!ENTITY rfc3923bis "<span class='ref'><link url='http://tools.ietf.org/html/draft-miller-3923bis'>E2EEncrypt</link></span> <note>End-to-End Object Encryption for the Extensible Messaging and Presence Protocol (XMPP), Miller, M. and P. Saint-Andre, work in progress <<link url='http://tools.ietf.org/html/draft-miller-3923bis'>http://tools.ietf.org/html/draft-miller-3923bis</link>>.</note>" >
<!ENTITY rfc3927 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3927'>RFC 3927</link></span> <note>RFC 3927: Dynamic Configuration of IPv4 Link-Local Addresses <<link url='http://tools.ietf.org/html/rfc3927'>http://tools.ietf.org/html/rfc3927</link>>.</note>" >
<!ENTITY rfc3958 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3958'>RFC 3958</link></span> <note>RFC 3958: Domain-Based Application Service Location Using SRV RRs and the Dynamic Delegation Discovery Service (DDDS) <<link url='http://tools.ietf.org/html/rfc3958'>http://tools.ietf.org/html/rfc3958</link>>.</note>" >
<!ENTITY rfc3959 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3959'>RFC 3959</link></span> <note>RFC 3959: The Early Session Disposition Type for the Session Initiation Protocol (SIP) <<link url='http://tools.ietf.org/html/rfc3959'>http://tools.ietf.org/html/rfc3959</link>>.</note>" >
<!ENTITY rfc3960 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3960'>RFC 3960</link></span> <note>RFC 3960: Early Media and Ringing Tone Generation in the Session Initiation Protocol (SIP) <<link url='http://tools.ietf.org/html/rfc3960'>http://tools.ietf.org/html/rfc3960</link>>.</note>" >
<!ENTITY rfc3966 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3966'>RFC 3966</link></span> <note>RFC 3966: The tel URI for Telephone Numbers <<link url='http://tools.ietf.org/html/rfc3966'>http://tools.ietf.org/html/rfc3966</link>>.</note>" >
<!ENTITY rfc3984 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3984'>RFC 3984</link></span> <note>RFC 3984: RTP Payload Format for H.264 Video <<link url='http://tools.ietf.org/html/rfc3984'>http://tools.ietf.org/html/rfc3984</link>>.</note>" >
<!ENTITY rfc3986 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3986'>RFC 3986</link></span> <note>RFC 3986: Uniform Resource Identifiers (URI): Generic Syntax <<link url='http://tools.ietf.org/html/rfc3986'>http://tools.ietf.org/html/rfc3986</link>>.</note>" >
<!ENTITY rfc3987 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3987'>RFC 3987</link></span> <note>RFC 3987: Internationalized Resource Identifiers (IRIs) <<link url='http://tools.ietf.org/html/rfc3987'>http://tools.ietf.org/html/rfc3987</link>>.</note>" >
<!ENTITY rfc4032 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4032'>RFC 4032</link></span> <note>RFC 4032: Update to the Session Initiation Protocol (SIP) Preconditions Framework <<link url='http://tools.ietf.org/html/rfc4032'>http://tools.ietf.org/html/rfc4032</link>>.</note>" >
<!ENTITY rfc4033 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4033'>RFC 4033</link></span> <note>RFC 4033: DNS Security Introduction and Requirements <<link url='http://tools.ietf.org/html/rfc4033'>http://tools.ietf.org/html/rfc4033</link>>.</note>" >
<!ENTITY rfc4086 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4086'>RFC 4086</link></span> <note>RFC 4086: Randomness Requirements for Security <<link url='http://tools.ietf.org/html/rfc4086'>http://tools.ietf.org/html/rfc4086</link>>.</note>" >
<!ENTITY rfc4103 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4103'>RFC 4103</link></span> <note>RFC 4103: RTP Payload for Text Conversation <<link url='http://tools.ietf.org/html/rfc4103'>http://tools.ietf.org/html/rfc4103</link>>.</note>" >
<!ENTITY rfc4119 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4119'>RFC 4119</link></span> <note>RFC 4119: A Presence-based GEOPRIV Location Object Format <<link url='http://tools.ietf.org/html/rfc4119'>http://tools.ietf.org/html/rfc4119</link>>.</note>" >
<!ENTITY rfc4120 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4120'>RFC 4120</link></span> <note>RFC 4120: The Kerberos Network Authentication Service (V5) <<link url='http://tools.ietf.org/html/rfc4120'>http://tools.ietf.org/html/rfc4120</link>>.</note>" >
<!ENTITY rfc4121 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4121'>RFC 4121</link></span> <note>RFC 4121: The Kerberos Version 5 Generic Security Service Application Program Interface (GSS-API) Mechanism: Version 2 <<link url='http://tools.ietf.org/html/rfc4121'>http://tools.ietf.org/html/rfc4121</link>>.</note>" >
<!ENTITY rfc4122 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4122'>RFC 4122</link></span> <note>RFC 4122: A Universally Unique IDentifier (UUID) URN Namespace <<link url='http://tools.ietf.org/html/rfc4122'>http://tools.ietf.org/html/rfc4122</link>>.</note>" >
<!ENTITY rfc4145 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4145'>RFC 4145</link></span> <note>RFC 4145: TCP-Based Media Transport in the Session Description Protocol (SDP) <<link url='http://tools.ietf.org/html/rfc4145'>http://tools.ietf.org/html/rfc4145</link>>.</note>" >
<!ENTITY rfc4227 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4227'>RFC 4227</link></span> <note>RFC 4227: Using the Simple Object Access Protocol (SOAP) in Blocks Extensible Exchange Protocol (BEEP) <<link url='http://tools.ietf.org/html/rfc4227'>http://tools.ietf.org/html/rfc4227</link>>.</note>" >
<!ENTITY rfc4251 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4251'>RFC 4251</link></span> <note>RFC 4251: The Secure Shell (SSH) Protocol Architecture <<link url='http://tools.ietf.org/html/rfc4251'>http://tools.ietf.org/html/rfc4251</link>>.</note>" >
<!ENTITY rfc4252 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4252'>RFC 4252</link></span> <note>RFC 4252: The Secure Shell (SHS) Authentication Protocol <<link url='http://tools.ietf.org/html/rfc4252'>http://tools.ietf.org/html/rfc4252</link>>.</note>" >
<!ENTITY rfc4253 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4253'>RFC 4253</link></span> <note>RFC 4253: The Secure Shell (SSH) Transport Layer Protocol <<link url='http://tools.ietf.org/html/rfc4253'>http://tools.ietf.org/html/rfc4253</link>>.</note>" >
<!ENTITY rfc4270 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4270'>RFC 4270</link></span> <note>RFC 4270: Attacks on Cryptographic Hashes in Internet Protocols <<link url='http://tools.ietf.org/html/rfc4270'>http://tools.ietf.org/html/rfc4270</link>>.</note>" >
<!ENTITY rfc4281 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4281'>RFC 4281</link></span> <note>RFC 4281: The Codecs Parameter for "Bucket" Media Types <<link url='http://tools.ietf.org/html/rfc4281'>http://tools.ietf.org/html/rfc4281</link>>.</note>" >
<!ENTITY rfc4287 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4287'>RFC 4287</link></span> <note>RFC 4287: The Atom Syndication Format <<link url='http://tools.ietf.org/html/rfc4287'>http://tools.ietf.org/html/rfc4287</link>>.</note>" >
<!ENTITY rfc4301 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4301'>RFC 4301</link></span> <note>RFC 4301: Security Architecture for the Internet Protocol <<link url='http://tools.ietf.org/html/rfc4301'>http://tools.ietf.org/html/rfc4301</link>>.</note>" >
<!ENTITY rfc4306 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4306'>RFC 4306</link></span> <note>RFC 4306: Internet Key Exchange (IKEv2) Protocol <<link url='http://tools.ietf.org/html/rfc4306'>http://tools.ietf.org/html/rfc4306</link>>.</note>" >
<!ENTITY rfc4344 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4344'>RFC 4344</link></span> <note>RFC 4344: SSH Transport Layer Encryption Modes <<link url='http://tools.ietf.org/html/rfc4344'>http://tools.ietf.org/html/rfc4344</link>>.</note>" >
<!ENTITY rfc4346 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4346'>RFC 4346</link></span> <note>RFC 4346: The Transport Layer Security (TLS) Protocol Version 1.1 <<link url='http://tools.ietf.org/html/rfc4346'>http://tools.ietf.org/html/rfc4346</link>>.</note>" >
<!ENTITY rfc4347 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4347'>RFC 4347</link></span> <note>RFC 4347: Datagram Transport Layer Security <<link url='http://tools.ietf.org/html/rfc4347'>http://tools.ietf.org/html/rfc4347</link>>.</note>" >
<!ENTITY rfc4366 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4366'>RFC 4366</link></span> <note>RFC 4366: Transport Layer Security (TLS) Extensions <<link url='http://tools.ietf.org/html/rfc4366'>http://tools.ietf.org/html/rfc4366</link>>.</note>" >
<!ENTITY rfc4395 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4395'>RFC 4395</link></span> <note>RFC 4395: Guidelines and Registration Procedures for New URI Schemes <<link url='http://tools.ietf.org/html/rfc4395'>http://tools.ietf.org/html/rfc4395</link>>.</note>" >
<!ENTITY rfc4422 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4422'>RFC 4422</link></span> <note>RFC 4422: Simple Authentication and Security Layer (SASL) <<link url='http://tools.ietf.org/html/rfc4422'>http://tools.ietf.org/html/rfc4422</link>>.</note>" >
<!ENTITY rfc4425 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4425'>RFC 4425</link></span> <note>RFC 4425: RTP Payload Format for Video Codec 1 (VC-1) <<link url='http://tools.ietf.org/html/rfc4425'>http://tools.ietf.org/html/rfc4425</link>>.</note>" >
<!ENTITY rfc4467 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4467'>RFC 4467</link></span> <note>RFC 4467: Internet Message Access Protocol (IMAP) - URLAUTH Extension <<link url='http://tools.ietf.org/html/rfc4467'>http://tools.ietf.org/html/rfc4467</link>>.</note>" >
<!ENTITY rfc4480 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4480'>RFC 4480</link></span> <note>RFC 4480: RPID: Rich Presence Extensions to the Presence Information Data Format (PIDF) <<link url='http://tools.ietf.org/html/rfc4480'>http://tools.ietf.org/html/rfc4480</link>>.</note>" >
<!ENTITY rfc4481 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4481'>RFC 4481</link></span> <note>RFC 4481: Timed Presence Extensions to the Presence Information Data Format (PIDF) to Indicate Status Information for Past and Future Time Intervals <<link url='http://tools.ietf.org/html/rfc4481'>http://tools.ietf.org/html/rfc4481</link>>.</note>" >
<!ENTITY rfc4505 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4505'>RFC 4505</link></span> <note>RFC 4505: The SASL ANONYMOUS Mechanism <<link url='http://tools.ietf.org/html/rfc4505'>http://tools.ietf.org/html/rfc4505</link>>.</note>" >
<!ENTITY rfc4551 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4551'>RFC 4551</link></span> <note>RFC 4551: IMAP Extension for Conditional STORE Operation or Quick Flag Changes Resynchronization <<link url='http://tools.ietf.org/html/rfc4551'>http://tools.ietf.org/html/rfc4551</link>>.</note>" >
<!ENTITY rfc4566 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4566'>RFC 4566</link></span> <note>RFC 4566: SDP: Session Description Protocol <<link url='http://tools.ietf.org/html/rfc4566'>http://tools.ietf.org/html/rfc4566</link>>.</note>" >
<!ENTITY rfc4568 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4568'>RFC 4568</link></span> <note>RFC 4568: Session Description Protocol (SDP) Security Descriptions for Media Streams <<link url='http://tools.ietf.org/html/rfc4568'>http://tools.ietf.org/html/rfc4568</link>>.</note>" >
<!ENTITY rfc4571 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4571'>RFC 4571</link></span> <note>RFC 4571: Framing Real-time Transport Protocol (RTP) and RTP Control Protocol (RTCP) Packets over Connection-Oriented Transport <<link url='http://tools.ietf.org/html/rfc4571'>http://tools.ietf.org/html/rfc4571</link>>.</note>" >
<!ENTITY rfc4572 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4572'>RFC 4572</link></span> <note>RFC 4572: Connection-Oriented Media Transport over the Transport Layer Security (TLS) Protocol in the Session Description Protocol (SDP) <<link url='http://tools.ietf.org/html/rfc4572'>http://tools.ietf.org/html/rfc4572</link>>.</note>" >
<!ENTITY rfc4575 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4575'>RFC 4575</link></span> <note>RFC 4575: A Session Initiation Protocol (SIP) Event Package for Conference State <<link url='http://tools.ietf.org/html/rfc4575'>http://tools.ietf.org/html/rfc4575</link>>.</note>" >
<!ENTITY rfc4579 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4579'>RFC 4579</link></span> <note>RFC 4579: Session Initiation Protocol (SIP) Call Control - Conferencing for User Agents <<link url='http://tools.ietf.org/html/rfc4579'>http://tools.ietf.org/html/rfc4579</link>>.</note>" >
<!ENTITY rfc4585 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4585'>RFC 4585</link></span> <note>RFC 4585: Extended RTP Profile for Real-time Transport Control Protocol (RTCP)-Based Feedback (RTP/AVPF) <<link url='http://tools.ietf.org/html/rfc4585'>http://tools.ietf.org/html/rfc4585</link>>.</note>" >
<!ENTITY rfc4616 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4616'>RFC 4616</link></span> <note>RFC 4616: The PLAIN Simple Authentication and Security Layer (SASL) Mechanism <<link url='http://tools.ietf.org/html/rfc4616'>http://tools.ietf.org/html/rfc4616</link>>.</note>" >
<!ENTITY rfc4622 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4622'>RFC 4622</link></span> <note>RFC 4622: Internationalized Resource Identifiers (IRIs) and Uniform Resource Identifiers (URIs) for the Extensible Messaging and Presence Protocol (XMPP) <<link url='http://tools.ietf.org/html/rfc4622'>http://tools.ietf.org/html/rfc4622</link>>.</note>" >
<!ENTITY rfc4627 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4627'>RFC 4627</link></span> <note>RFC 4627: The application/json Media Type for JavaScript Object Notation (JSON) <<link url='http://tools.ietf.org/html/rfc4627'>http://tools.ietf.org/html/rfc4627</link>>.</note>" >
<!ENTITY rfc4646 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4646'>RFC 4646</link></span> <note>RFC 4646: Tags for Identifying Languages <<link url='http://tools.ietf.org/html/rfc4646'>http://tools.ietf.org/html/rfc4646</link>>.</note>" >
<!ENTITY rfc4648 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4648'>RFC 4648</link></span> <note>RFC 4648: The Base16, Base32, and Base64 Data Encodings <<link url='http://tools.ietf.org/html/rfc4648'>http://tools.ietf.org/html/rfc4648</link>>.</note>" >
<!ENTITY rfc4685 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4685'>RFC 4685</link></span> <note>RFC 4685: Atom Threading Extensions <<link url='http://tools.ietf.org/html/rfc4685'>http://tools.ietf.org/html/rfc4685</link>>.</note>" >
<!ENTITY rfc4732 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4732'>RFC 4732</link></span> <note>RFC 4732: Internet Denial-of-Service Considerations <<link url='http://tools.ietf.org/html/rfc4732'>http://tools.ietf.org/html/rfc4732</link>>.</note>" >
<!ENTITY rfc4733 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4733'>RFC 4733</link></span> <note>RFC 4733: RTP Payload for DTMF Digits, Telephony Tones, and Telephony Signals <<link url='http://tools.ietf.org/html/rfc4733'>http://tools.ietf.org/html/rfc4733</link>>.</note>" >
<!ENTITY rfc4752 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4752'>RFC 4752</link></span> <note>RFC 4752: The Kerberos V5 ("GSSAPI") Simple Authentication and Security Layer (SASL) Mechanism <<link url='http://tools.ietf.org/html/rfc4752'>http://tools.ietf.org/html/rfc4752</link>>.</note>" >
<!ENTITY rfc4770 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4770'>RFC 4770</link></span> <note>RFC 4770: vCard Extensions for Instant Messaging (IM) <<link url='http://tools.ietf.org/html/rfc4770'>http://tools.ietf.org/html/rfc4770</link>>.</note>" >
<!ENTITY rfc4790 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4790'>RFC 4790</link></span> <note>RFC 4790: Internet Application Protocol Collation Registry <<link url='http://tools.ietf.org/html/rfc4790'>http://tools.ietf.org/html/rfc4790</link>>.</note>" >
<!ENTITY rfc4848 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4848'>RFC 4848</link></span> <note>RFC 4848: Domain-Based Application Service Location Using URIs and the Dynamic Delegation Discovery Service (DDDS) <<link url='http://tools.ietf.org/html/rfc4848'>http://tools.ietf.org/html/rfc4848</link>>.</note>" >
<!ENTITY rfc4854 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4854'>RFC 4854</link></span> <note>RFC 4854: A Uniform Resource Name (URN) Namespace for Extensions to the Extensible Messaging and Presence Protocol (XMPP) <<link url='http://tools.ietf.org/html/rfc4854'>http://tools.ietf.org/html/rfc4854</link>>.</note>" >
<!ENTITY rfc4880 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4880'>RFC 4880</link></span> <note>RFC 4880: OpenPGP Message Format <<link url='http://tools.ietf.org/html/rfc4880'>http://tools.ietf.org/html/rfc4880</link>>.</note>" >
<!ENTITY rfc4949 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4949'>RFC 4949</link></span> <note>RFC 4949: Internet Security Glossary, Version 2 <<link url='http://tools.ietf.org/html/rfc4949'>http://tools.ietf.org/html/rfc4949</link>>.</note>" >
<!ENTITY rfc4975 "<span class='ref'><link url='http://tools.ietf.org/html/rfc4975'>RFC 4975</link></span> <note>RFC 4975: The Message Session Relay Protocol (MSRP) <<link url='http://tools.ietf.org/html/rfc4975'>http://tools.ietf.org/html/rfc4975</link>>.</note>" >
<!ENTITY rfc5023 "<span class='ref'><link url='http://tools.ietf.org/html/rfc5023'>RFC 5023</link></span> <note>RFC 5023: The Atom Publishing Protocol <<link url='http://tools.ietf.org/html/rfc5023'>http://tools.ietf.org/html/rfc5023</link>>.</note>" >
<!ENTITY rfc5054 "<span class='ref'><link url='http://tools.ietf.org/html/rfc5054'>RFC 5054</link></span> <note>RFC 5054: Using the Secure Remote Password (SRP) Protocol for TLS Authentication <<link url='http://tools.ietf.org/html/rfc5054'>http://tools.ietf.org/html/rfc5054</link>>.</note>" >
<!ENTITY rfc5056 "<span class='ref'><link url='http://tools.ietf.org/html/rfc5056'>RFC 5056</link></span> <note>RFC 5056: On the Use of Channel Bindings to Secure Channels <<link url='http://tools.ietf.org/html/rfc5056'>http://tools.ietf.org/html/rfc5056</link>>.</note>" >
<!ENTITY rfc5070 "<span class='ref'><link url='http://tools.ietf.org/html/rfc5070'>RFC 5070</link></span> <note>RFC 5070: The Incident Object Description Exchange Format <<link url='http://tools.ietf.org/html/rfc5070'>http://tools.ietf.org/html/rfc5070</link>>.</note>" >
<!ENTITY rfc5077 "<span class='ref'><link url='http://tools.ietf.org/html/rfc5077'>RFC 5077</link></span> <note>RFC 5077: Transport Layer Security (TLS) Session Resumption without Server-Side State <<link url='http://tools.ietf.org/html/rfc5077'>http://tools.ietf.org/html/rfc5077</link>>.</note>" >
<!ENTITY rfc5081 "<span class='ref'><link url='http://tools.ietf.org/html/rfc5081'>RFC 5081</link></span> <note>RFC 5081: Using OpenPGP Keys for Transport Layer Security (TLS) Authentication <<link url='http://tools.ietf.org/html/rfc5081'>http://tools.ietf.org/html/rfc5081</link>>.</note>" >
<!ENTITY rfc5122 "<span class='ref'><link url='http://tools.ietf.org/html/rfc5122'>RFC 5122</link></span> <note>RFC 5122: Internationalized Resource Identifiers (IRIs) and Uniform Resource Identifiers (URIs) for the Extensible Messaging and Presence Protocol (XMPP) <<link url='http://tools.ietf.org/html/rfc5122'>http://tools.ietf.org/html/rfc5122</link>>.</note>" >
<!ENTITY rfc5124 "<span class='ref'><link url='http://tools.ietf.org/html/rfc5124'>RFC 5124</link></span> <note>RFC 5124: Extended Secure RTP Profile for Real-time Transport Control Protocol (RTCP)-Based Feedback (RTP/SAVPF) <<link url='http://tools.ietf.org/html/rfc5124'>http://tools.ietf.org/html/rfc5124</link>>.</note>" >
<!ENTITY rfc5178 "<span class='ref'><link url='http://tools.ietf.org/html/rfc5178'>RFC 5178</link></span> <note>RFC 5178: Generic Security Service Application Program Interface (GSS-API) Internationalization and Domain-Based Service Names and Name Type <<link url='http://tools.ietf.org/html/rfc5178'>http://tools.ietf.org/html/rfc5178</link>>.</note>" >
<!ENTITY rfc5179 "<span class='ref'><link url='http://tools.ietf.org/html/rfc5179'>RFC 5179</link></span> <note>RFC 5179: Generic Security Service Application Program Interface (GSS-API) Domain-Based Service Names Mapping for the Kerberos V GSS Mechanism <<link url='http://tools.ietf.org/html/rfc5179'>http://tools.ietf.org/html/rfc5179</link>>.</note>" >
<!ENTITY rfc5245 "<span class='ref'><link url='http://tools.ietf.org/html/rfc5245'>RFC 5245</link></span> <note>RFC 5245: Interactive Connectivity Establishment (ICE) <<link url='http://tools.ietf.org/html/rfc5245'>http://tools.ietf.org/html/rfc5245</link>>.</note>" >
<!ENTITY rfc5246 "<span class='ref'><link url='http://tools.ietf.org/html/rfc5246'>RFC 5246</link></span> <note>RFC 5246: The Transport Layer Security (TLS) Protocol Version 1.2 <<link url='http://tools.ietf.org/html/rfc5246'>http://tools.ietf.org/html/rfc5246</link>>.</note>" >
<!ENTITY rfc5256 "<span class='ref'><link url='http://tools.ietf.org/html/rfc5256'>RFC 5256</link></span> <note>RFC 5256: Internet Message Access Protocol - SORT and THREAD Extensions <<link url='http://tools.ietf.org/html/rfc5256'>http://tools.ietf.org/html/rfc5256</link>>.</note>" >
<!ENTITY rfc5280 "<span class='ref'><link url='http://tools.ietf.org/html/rfc5280'>RFC 5280</link></span> <note>RFC 5280: Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile <<link url='http://tools.ietf.org/html/rfc5280'>http://tools.ietf.org/html/rfc5280</link>>.</note>" >
<!ENTITY rfc5322 "<span class='ref'><link url='http://tools.ietf.org/html/rfc5322'>RFC 5322</link></span> <note>RFC 5322: Internet Message Format <<link url='http://tools.ietf.org/html/rfc5322'>http://tools.ietf.org/html/rfc5322</link>>.</note>" >
<!ENTITY rfc5359 "<span class='ref'><link url='http://tools.ietf.org/html/rfc5359'>RFC 5359</link></span> <note>RFC 5359: Session Initiation Protocol Service Examples <<link url='http://tools.ietf.org/html/rfc5359'>http://tools.ietf.org/html/rfc5359</link>>.</note>" >
<!ENTITY rfc5389 "<span class='ref'><link url='http://tools.ietf.org/html/rfc5389'>RFC 5389</link></span> <note>RFC 5389: Session Traversal Utilities for NAT (STUN) <<link url='http://tools.ietf.org/html/rfc5389'>http://tools.ietf.org/html/rfc5389</link>>.</note>" >
<!ENTITY rfc5391 "<span class='ref'><link url='http://tools.ietf.org/html/rfc5391'>RFC 5391</link></span> <note>RFC 5391: RTP Payload Format for ITU-T Recommendation G.711.1 <<link url='http://tools.ietf.org/html/rfc5391'>http://tools.ietf.org/html/rfc5391</link>>.</note>" >
<!ENTITY rfc5450 "<span class='ref'><link url='http://tools.ietf.org/html/rfc5450'>RFC 5450</link></span> <note>RFC 5450: Transmission Time Offsets in RTP Streams <<link url='http://tools.ietf.org/html/rfc5450'>http://tools.ietf.org/html/rfc5450</link>>.</note>" >
<!ENTITY rfc5536 "<span class='ref'><link url='http://tools.ietf.org/html/rfc5536'>RFC 5536</link></span> <note>RFC 5536: Netnews Article Format <<link url='http://tools.ietf.org/html/rfc5536'>http://tools.ietf.org/html/rfc5536</link>>.</note>" >
<!ENTITY rfc5547 "<span class='ref'><link url='http://tools.ietf.org/html/rfc5547'>RFC 5547</link></span> <note>RFC 5547: A Session Description Protocol (SDP) Offer/Answer Mechanism to Enable File Transfer <<link url='http://tools.ietf.org/html/rfc5547'>http://tools.ietf.org/html/rfc5547</link>>.</note>" >
<!ENTITY rfc5574 "<span class='ref'><link url='http://tools.ietf.org/html/rfc5574'>RFC 5574</link></span> <note>RFC 5574: RTP Payload Format for the Speex Codec <<link url='http://tools.ietf.org/html/rfc5574'>http://tools.ietf.org/html/rfc5574</link>>.</note>" >
<!ENTITY rfc5576 "<span class='ref'><link url='http://tools.ietf.org/html/rfc5576'>RFC 5576</link></span> <note>RFC 5576: Source-Specific Media Attributes in the Session Description Protocol (SDP) <<link url='http://tools.ietf.org/html/rfc5576'>http://tools.ietf.org/html/rfc5576</link>>.</note>" >
<!ENTITY rfc5646 "<span class='ref'><link url='http://tools.ietf.org/html/rfc5646'>RFC 5646</link></span> <note>RFC 5646: Tags for Identifying Languages <<link url='http://tools.ietf.org/html/rfc5646'>http://tools.ietf.org/html/rfc5646</link>>.</note>" >
<!ENTITY rfc5761 "<span class='ref'><link url='http://tools.ietf.org/html/rfc5761'>RFC 5761</link></span> <note>RFC 5761: Multiplexing RTP Data and Control Packets on a Single Port <<link url='http://tools.ietf.org/html/rfc5761'>http://tools.ietf.org/html/rfc5761</link>>.</note>" >
<!ENTITY rfc5763 "<span class='ref'><link url='http://tools.ietf.org/html/rfc5763'>RFC 5763</link></span> <note>RFC 5763: Framework for Establishing a Secure Real-time Transport Protocol (SRTP) Security Context Using Datagram Transport Layer Security (DTLS) <<link url='http://tools.ietf.org/html/rfc5763'>http://tools.ietf.org/html/rfc5763</link>>.</note>" >
<!ENTITY rfc5766 "<span class='ref'><link url='http://tools.ietf.org/html/rfc5766'>RFC 5766</link></span> <note>RFC 5766: Traversal Using Relays around NAT (TURN): Relay Extensions to Session Traversal Utilities for NAT (STUN) <<link url='http://tools.ietf.org/html/rfc5766'>http://tools.ietf.org/html/rfc5766</link>>.</note>" >
<!ENTITY rfc5785 "<span class='ref'><link url='http://tools.ietf.org/html/rfc5785'>RFC 5785</link></span> <note>RFC 5785: Defining Well-Known Uniform Resource Identifiers (URIs) <<link url='http://tools.ietf.org/html/rfc5785'>http://tools.ietf.org/html/rfc5785</link>>.</note>" >
<!ENTITY rfc5802 "<span class='ref'><link url='http://tools.ietf.org/html/rfc5802'>RFC 5802</link></span> <note>RFC 5802: Salted Challenge Response Authentication Mechanism (SCRAM) SASL and GSS-API Mechanisms <<link url='http://tools.ietf.org/html/rfc5802'>http://tools.ietf.org/html/rfc5802</link>>.</note>" >
<!ENTITY rfc5888 "<span class='ref'><link url='http://tools.ietf.org/html/rfc5888'>RFC 5888</link></span> <note>RFC 5888: The Session Description Protocol (SDP) Grouping Framework <<link url='http://tools.ietf.org/html/rfc5888'>http://tools.ietf.org/html/rfc5888</link>>.</note>" >
<!ENTITY rfc5929 "<span class='ref'><link url='http://tools.ietf.org/html/rfc5929'>RFC 5929</link></span> <note>RFC 5929: Channel Bindings for TLS <<link url='http://tools.ietf.org/html/rfc5929'>http://tools.ietf.org/html/rfc5929</link>>.</note>" >
<!ENTITY rfc5952 "<span class='ref'><link url='http://tools.ietf.org/html/rfc5952'>RFC 5952</link></span> <note>RFC 5952: A Recommendation for IPv6 Address Text Representation <<link url='http://tools.ietf.org/html/rfc5952'>http://tools.ietf.org/html/rfc5952</link>>.</note>" >
<!ENTITY rfc5988 "<span class='ref'><link url='http://tools.ietf.org/html/rfc5988'>RFC 5988</link></span> <note>RFC 5988: Web Linking <<link url='http://tools.ietf.org/html/rfc5988'>http://tools.ietf.org/html/rfc5988</link>>.</note>" >
<!ENTITY rfc6045 "<span class='ref'><link url='http://tools.ietf.org/html/rfc6045'>RFC 6045</link></span> <note>RFC 6045: Real-time Inter-network Defense (RID) <<link url='http://tools.ietf.org/html/rfc6045'>http://tools.ietf.org/html/rfc6045</link>>.</note>" >
<!ENTITY rfc6051 "<span class='ref'><link url='http://tools.ietf.org/html/rfc6051'>RFC 6051</link></span> <note>RFC 6051: Rapid Synchronisation of RTP Flows <<link url='http://tools.ietf.org/html/rfc6051'>http://tools.ietf.org/html/rfc6051</link>>.</note>" >
<!ENTITY rfc6120 "<span class='ref'><link url='http://tools.ietf.org/html/rfc6120'>RFC 6120</link></span> <note>RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core <<link url='http://tools.ietf.org/html/rfc6120'>http://tools.ietf.org/html/rfc6120</link>>.</note>" >
<!ENTITY rfc6121 "<span class='ref'><link url='http://tools.ietf.org/html/rfc6121'>RFC 6121</link></span> <note>RFC 6121: Extensible Messaging and Presence Protocol (XMPP): Instant Messaging and Presence <<link url='http://tools.ietf.org/html/rfc6121'>http://tools.ietf.org/html/rfc6121</link>>.</note>" >
<!ENTITY rfc6122 "<span class='ref'><link url='http://tools.ietf.org/html/rfc6122'>RFC 6122</link></span> <note>RFC 6122: Extensible Messaging and Presence Protocol (XMPP): Address Format <<link url='http://tools.ietf.org/html/rfc6122'>http://tools.ietf.org/html/rfc6122</link>>.</note>" >
<!ENTITY rfc6125 "<span class='ref'><link url='http://tools.ietf.org/html/rfc6125'>RFC 6125</link></span> <note>RFC 6125: Representation and Verification of Domain-Based Application Service Identity within Internet Public Key Infrastructure Using X.509 (PKIX) Certificates in the Context of Transport Layer Security (TLS) <<link url='http://tools.ietf.org/html/rfc6125'>http://tools.ietf.org/html/rfc6125</link>>.</note>" >
<!ENTITY rfc6149 "<span class='ref'><link url='http://tools.ietf.org/html/rfc6149'>RFC 6149</link></span> <note>RFC 6149: MD2 to Historic Status <<link url='http://tools.ietf.org/html/rfc6149'>http://tools.ietf.org/html/rfc6149</link>>.</note>" >
<!ENTITY rfc6150 "<span class='ref'><link url='http://tools.ietf.org/html/rfc6150'>RFC 6150</link></span> <note>RFC 6150: MD4 to Historic Status <<link url='http://tools.ietf.org/html/rfc6150'>http://tools.ietf.org/html/rfc6150</link>>.</note>" >
<!ENTITY rfc6151 "<span class='ref'><link url='http://tools.ietf.org/html/rfc6151'>RFC 6151</link></span> <note>RFC 6151: Updated Security Considerations for the MD5 Message-Digest and the HMAC-MD5 Algorithms <<link url='http://tools.ietf.org/html/rfc6151'>http://tools.ietf.org/html/rfc6151</link>>.</note>" >
<!ENTITY rfc6186 "<span class='ref'><link url='http://tools.ietf.org/html/rfc6186'>RFC 6186</link></span> <note>RFC 6186: Use of SRV Records for Locating Email Submission/Access Services <<link url='http://tools.ietf.org/html/rfc6186'>http://tools.ietf.org/html/rfc6186</link>>.</note>" >
<!ENTITY rfc6189 "<span class='ref'><link url='http://tools.ietf.org/html/rfc6189'>RFC 6189</link></span> <note>RFC 6189: ZRTP: Media Path Key Agreement for Unicast Secure RTP <<link url='http://tools.ietf.org/html/rfc6189'>http://tools.ietf.org/html/rfc6189</link>>.</note>" >
<!ENTITY rfc6194 "<span class='ref'><link url='http://tools.ietf.org/html/rfc6194'>RFC 6194</link></span> <note>RFC 6194: Updated Security Considerations for the SHA-0 and SHA-1 Message-Digest Algorithms <<link url='http://tools.ietf.org/html/rfc6194'>http://tools.ietf.org/html/rfc6194</link>>.</note>" >
<!ENTITY rfc6234 "<span class='ref'><link url='http://tools.ietf.org/html/rfc6234'>RFC 6234</link></span> <note>RFC 6234: US Secure Hash Algorithms (SHA and SHA-based HMAC and HKDF) <<link url='http://tools.ietf.org/html/rfc6234'>http://tools.ietf.org/html/rfc6234</link>>.</note>" >
<!ENTITY rfc6265 "<span class='ref'><link url='http://tools.ietf.org/html/rfc3514'>RFC 6265</link></span> <note>RFC 6265: HTTP State Management Mechanism <<link url='http://tools.ietf.org/html/rfc6265'>http://tools.ietf.org/html/rfc6265</link>>.</note>" >
<!ENTITY rfc6331 "<span class='ref'><link url='http://tools.ietf.org/html/rfc6331'>RFC 6331</link></span> <note>RFC 6331: Moving DIGEST-MD5 to Historic <<link url='http://tools.ietf.org/html/rfc6331'>http://tools.ietf.org/html/rfc6331</link>>.</note>" >
<!ENTITY rfc6350 "<span class='ref'><link url='http://tools.ietf.org/html/rfc6350'>RFC 6350</link></span> <note>RFC 6350: vCard Format Specification <<link url='http://tools.ietf.org/html/rfc6350'>http://tools.ietf.org/html/rfc6350</link>>.</note>" >
<!ENTITY rfc6351 "<span class='ref'><link url='http://tools.ietf.org/html/rfc6351'>RFC 6351</link></span> <note>RFC 6351: vCard XML Representation <<link url='http://tools.ietf.org/html/rfc6351'>http://tools.ietf.org/html/rfc6351</link>>.</note>" >
<!ENTITY rfc6415 "<span class='ref'><link url='http://tools.ietf.org/html/rfc6415'>RFC 6415</link></span> <note>RFC 6415: Web Host Metadata <<link url='http://tools.ietf.org/html/rfc6415'>http://tools.ietf.org/html/rfc6415</link>>.</note>" >
<!ENTITY rfc6443 "<span class='ref'><link url='http://tools.ietf.org/html/rfc6443'>RFC 6443</link></span> <note>RFC 6443: Framework for Emergency Calling Using Internet Multimedia <<link url='http://tools.ietf.org/html/rfc6443'>http://tools.ietf.org/html/rfc6443</link>>.</note>" >
<!ENTITY rfc6455 "<span class='ref'><link url='http://tools.ietf.org/html/rfc6455'>RFC 6455</link></span> <note>RFC 6455: The WebSocket Protocol <<link url='http://tools.ietf.org/html/rfc6455'>http://tools.ietf.org/html/rfc6455</link>>.</note>" >
<!ENTITY rfc6473 "<span class='ref'><link url='http://tools.ietf.org/html/rfc6473'>RFC 6473</link></span> <note>RFC 6473: vCard KIND:application <<link url='http://tools.ietf.org/html/rfc6473'>http://tools.ietf.org/html/rfc6351</link>>.</note>" >
<!ENTITY rfc6544 "<span class='ref'><link url='http://tools.ietf.org/html/rfc6544'>RFC 6544</link></span> <note>RFC 6544: TCP Candidates with Interactive Connectivity Establishment (ICE) <<link url='http://tools.ietf.org/html/rfc6544'>http://tools.ietf.org/html/rfc6544</link>>.</note>" >
<!ENTITY rfc6648 "<span class='ref'><link url='http://tools.ietf.org/html/rfc6648'>RFC 6648</link></span> <note>RFC 6648: Deprecating the X- Prefix and Similar Constructs in Application Protocols <<link url='http://tools.ietf.org/html/rfc6648'>http://tools.ietf.org/html/rfc6648</link>>.</note>" >
<!ENTITY rfc6698 "<span class='ref'><link url='http://tools.ietf.org/html/rfc6698'>RFC 6698</link></span> <note>RFC 6698: The DNS-Based Authentication of Named Entities (DANE) Transport Layer Security (TLS) Protocol: TLSA <<link url='http://tools.ietf.org/html/rfc6698'>http://tools.ietf.org/html/rfc6698</link>>.</note>" >
<!ENTITY rfc6716 "<span class='ref'><link url='http://tools.ietf.org/html/rfc6716'>RFC 6716</link></span> <note>RFC 6716: Definition of the Opus Audio Codec <<link url='http://tools.ietf.org/html/rfc6716'>http://tools.ietf.org/html/rfc6716</link>>.</note>" >
<!ENTITY rfc6762 "<span class='ref'><link url='http://tools.ietf.org/html/rfc6762'>RFC 6762</link></span> <note>RFC 6762: Multicast DNS <<link url='http://tools.ietf.org/html/rfc6762'>http://tools.ietf.org/html/rfc6762</link>>.</note>" >
<!ENTITY rfc6763 "<span class='ref'><link url='http://tools.ietf.org/html/rfc6763'>RFC 6763</link></span> <note>RFC 6763: DNS-Based Service Discovery <<link url='http://tools.ietf.org/html/rfc6763'>http://tools.ietf.org/html/rfc6763</link>>.</note>" >
<!ENTITY rfc6797 "<span class='ref'><link url='http://tools.ietf.org/html/rfc6797'>RFC 6797</link></span> <note>RFC 6797: HTTP Strict Transport Security (HSTS) <<link url='http://tools.ietf.org/html/rfc6797'>http://tools.ietf.org/html/rfc6797</link>>.</note>" >
<!ENTITY rfc6920 "<span class='ref'><link url='http://tools.ietf.org/html/rfc6920'>RFC 6920</link></span> <note>RFC 6920: Naming Things with Hashes <<link url='http://tools.ietf.org/html/rfc6920'>http://tools.ietf.org/html/rfc6920</link>>.</note>" >
<!ENTITY rfc6940 "<span class='ref'><link url='http://tools.ietf.org/html/rfc6940'>RFC 6940</link></span> <note>RFC 6940: REsource LOcation And Discovery (RELOAD) Base Protocol <<link url='http://tools.ietf.org/html/rfc6940'>http://tools.ietf.org/html/rfc6940</link>>.</note>" >
<!ENTITY rfc7081 "<span class='ref'><link url='http://tools.ietf.org/html/rfc7081'>RFC 7081</link></span> <note>RFC 7081: CUSAX: Combined Use of the Session Initiation Protocol (SIP) and the Extensible Messaging and Presence Protocol (XMPP) <<link url='http://tools.ietf.org/html/rfc7081'>http://tools.ietf.org/html/rfc7081</link>>.</note>" >
<!ENTITY rfc7232 "<span class='ref'><link url='http://tools.ietf.org/html/rfc7232'>RFC 7232</link></span> <note>RFC 7232: Hypertext Transfer Protocol (HTTP/1.1): Conditional Requests <<link url='http://tools.ietf.org/html/rfc7232'>http://tools.ietf.org/html/rfc7232</link>>.</note>" >
<!ENTITY rfc7301 "<span class='ref'><link url='http://tools.ietf.org/html/rfc7301'>RFC 7301</link></span> <note>RFC 7301: Transport Layer Security (TLS) Application-Layer Protocol Negotiation Extension <<link url='https://tools.ietf.org/html/rfc7301'>https://tools.ietf.org/html/rfc7301</link>>.</note>" >
<!ENTITY rfc7395 "<span class='ref'><link url='http://tools.ietf.org/html/rfc7395'>RFC 7395</link></span> <note>RFC 7395: An Extensible Messaging and Presence Protocol (XMPP) Subprotocol for WebSocket <<link url='http://tools.ietf.org/html/rfc7395'>http://tools.ietf.org/html/rfc7395</link>>.</note>" >
<!ENTITY rfc7468 "<span class='ref'><link url='http://tools.ietf.org/html/rfc7468'>RFC 7468</link></span> <note>RFC 7468: Textual Encodings of PKIX, PKCS, and CMS Structures <<link url='http://tools.ietf.org/html/rfc7468'>http://tools.ietf.org/html/rfc7468</link>>.</note>" >
<!ENTITY rfc7469 "<span class='ref'><link url='http://tools.ietf.org/html/rfc7469'>RFC 7469</link></span> <note>RFC 7469: Public Key Pinning Extension for HTTP <<link url='http://tools.ietf.org/html/rfc7469'>http://tools.ietf.org/html/rfc7469</link>>.</note>" >
<!ENTITY rfc7519 "<span class='ref'><link url='http://tools.ietf.org/html/rfc7519'>RFC 7519</link></span> <note>RFC 7519: JSON Web Token (JWT) <<link url='http://tools.ietf.org/html/rfc7519'>http://tools.ietf.org/html/rfc7519</link>>.</note>" >
<!ENTITY rfc7564 "<span class='ref'><link url='http://tools.ietf.org/html/rfc7564'>RFC 7564</link></span> <note>RFC 7564: PRECIS Framework: Preparation, Enforcement, and Comparison of Internationalized Strings in Application Protocols <<link url='http://tools.ietf.org/html/rfc7564'>http://tools.ietf.org/html/rfc7564</link>>.</note>" >
<!ENTITY rfc7572 "<span class='ref'><link url='http://tools.ietf.org/html/rfc7572'>RFC 7572</link></span> <note>RFC 7572: Interworking between the Session Initiation Protocol (SIP) and the Extensible Messaging and Presence Protocol (XMPP): Instant Messaging <<link url='http://tools.ietf.org/html/rfc7572'>http://tools.ietf.org/html/rfc7572</link>>.</note>" >
<!ENTITY rfc7590 "<span class='ref'><link url='http://tools.ietf.org/html/rfc7590'>RFC 7590</link></span> <note>RFC 7590: Use of Transport Layer Security (TLS) in the Extensible Messaging and Presence Protocol (XMPP) <<link url='http://tools.ietf.org/html/rfc7590'>http://tools.ietf.org/html/rfc7590</link>>.</note>" >
<!ENTITY rfc7595 "<span class='ref'><link url='http://tools.ietf.org/html/rfc7595'>RFC 7595</link></span> <note>RFC 7595: Guidelines and Registration Procedures for URI Schemes <<link url='http://tools.ietf.org/html/rfc7595'>http://tools.ietf.org/html/rfc7595</link>>.</note>" >
<!ENTITY rfc7613 "<span class='ref'><link url='http://tools.ietf.org/html/rfc7613'>RFC 7613</link></span> <note>RFC 7613: Preparation, Enforcement, and Comparison of Internationalized Strings Representing Usernames and Passwords<<link url='http://tools.ietf.org/html/rfc7613'>http://tools.ietf.org/html/rfc7613</link>>.</note>" >
<!ENTITY rfc7622 "<span class='ref'><link url='http://tools.ietf.org/html/rfc7622'>RFC 7622</link></span> <note>RFC 7622: Extensible Messaging and Presence Protocol (XMPP): Address Format <<link url='http://tools.ietf.org/html/rfc7622'>http://tools.ietf.org/html/rfc7622</link>>.</note>" >
<!ENTITY rfc7627 "<span class='ref'><link url='http://tools.ietf.org/html/rfc7627'>RFC 7627</link></span> <note>RFC 7627: Transport Layer Security (TLS) Session Hash and Extended Master Secret Extension <<link url='http://tools.ietf.org/html/rfc7627'>http://tools.ietf.org/html/rfc7627</link>>.</note>" >
<!ENTITY rfc7693 "<span class='ref'><link url='http://tools.ietf.org/html/rfc7693'>RFC 7693</link></span> <note>RFC 7693: The BLAKE2 Cryptographic Hash and Message Authentication Code (MAC) <<link url='http://tools.ietf.org/html/rfc7693'>http://tools.ietf.org/html/rfc7693</link>>.</note>" >
<!ENTITY rfc7700 "<span class='ref'><link url='http://tools.ietf.org/html/rfc7700'>RFC 7700</link></span> <note>RFC 7700: Preparation, Enforcement, and Comparison of Internationalized Strings Representing Nicknames<<link url='http://tools.ietf.org/html/rfc7700'>http://tools.ietf.org/html/rfc7700</link>>.</note>" >
<!ENTITY rfc7712 "<span class='ref'><link url='http://tools.ietf.org/html/rfc7712'>RFC 7712</link></span> <note>RFC 7712: Domain Name Associations (DNA) in the Extensible Messaging and Presence Protocol (XMPP)<<link url='http://tools.ietf.org/html/rfc7712'>http://tools.ietf.org/html/rfc7712</link>>.</note>" >
<!ENTITY rfc7748 "<span class='ref'><link url='http://tools.ietf.org/html/rfc7748'>RFC 7748</link></span> <note>RFC 7748: Elliptic Curves for Security <<link url='http://tools.ietf.org/html/rfc7748'>http://tools.ietf.org/html/rfc7748</link>>.</note>" >
<!ENTITY rfc7764 "<span class='ref'><link url='http://tools.ietf.org/html/rfc7764'>RFC 7764</link></span> <note>RFC 7764: Guidance on Markdown: Design Philosophies, Stability Strategies, and Select Registrations <<link url='http://tools.ietf.org/html/rfc7764'>http://tools.ietf.org/html/rfc7764</link>>.</note>" >
<!ENTITY rfc7830 "<span class='ref'><link url='http://tools.ietf.org/html/rfc7830'>RFC 7830</link></span> <note>RFC 7830: The EDNS(0) Padding Option <<link url='http://tools.ietf.org/html/rfc7830'>http://tools.ietf.org/html/rfc7830</link>>.</note>" >
<!ENTITY rfc8032 "<span class='ref'><link url='http://tools.ietf.org/html/rfc8032'>RFC 8032</link></span> <note>RFC 8032: Edwards-Curve Digital Signature Algorithm (EdDSA) <<link url='http://tools.ietf.org/html/rfc8032'>http://tools.ietf.org/html/rfc8032</link>>.</note>" >
<!ENTITY rfc8174 "<span class='ref'><link url='http://tools.ietf.org/html/rfc8174'>RFC 8174</link></span> <note>RFC 8174: Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words <<link url='http://tools.ietf.org/html/rfc8174'>http://tools.ietf.org/html/rfc8174</link>>.</note>" >
<!ENTITY rfc8264 "<span class='ref'><link url='http://tools.ietf.org/html/rfc8264'>RFC 8264</link></span> <note>RFC 8264: PRECIS Framework: Preparation, Enforcement, and Comparison of Internationalized Strings in Application Protocols <<link url='http://tools.ietf.org/html/rfc8264'>http://tools.ietf.org/html/rfc8264</link>>.</note>" >
<!ENTITY rfc8445 "<span class='ref'><link url='http://tools.ietf.org/html/rfc8445'>RFC 8445</link></span> <note>RFC 8445: Interactive Connectivity Establishment (ICE) <<link url='http://tools.ietf.org/html/rfc8445'>http://tools.ietf.org/html/rfc8445</link>>.</note>" >
<!ENTITY rfc8446 "<span class='ref'><link url='http://tools.ietf.org/html/rfc8446'>RFC 8446</link></span> <note>RFC 8446: The Transport Layer Security (TLS) Protocol Version 1.3 <<link url='http://tools.ietf.org/html/rfc8446'>http://tools.ietf.org/html/rfc8446</link>>.</note>" >
<!ENTITY rfc8467 "<span class='ref'><link url='http://tools.ietf.org/html/rfc8467'>RFC 8467</link></span> <note>RFC 8467: Padding Policies for Extension Mechanisms for DNS (EDNS(0)) <<link url='http://tools.ietf.org/html/rfc8467'>http://tools.ietf.org/html/rfc8467</link>>.</note>" >
<!ENTITY rfc8484 "<span class='ref'><link url='http://tools.ietf.org/html/rfc8484'>RFC 8484</link></span> <note>RFC 8484: DNS Queries over HTTPS (DoH) <<link url='http://tools.ietf.org/html/rfc8484'>http://tools.ietf.org/html/rfc8484</link>>.</note>" >
<!ENTITY rfc8285 "<span class='ref'><link url='http://tools.ietf.org/html/rfc8285'>RFC 8285</link></span> <note>RFC 8285: A General Mechanism for RTP Header Extensions <<link url='http://tools.ietf.org/html/rfc8285'>http://tools.ietf.org/html/rfc8285</link>>.</note>" >
<!ENTITY rfc9000 "<span class='ref'><link url='http://tools.ietf.org/html/rfc9000'>RFC 9000</link></span> <note>RFC 9000: QUIC: A UDP-Based Multiplexed and Secure Transport <<link url='http://tools.ietf.org/html/rfc9000'>http://tools.ietf.org/html/rfc9000</link>>.</note>" >
<!ENTITY rfc7677 "<span class='ref'><link url='http://tools.ietf.org/html/rfc7677'>RFC 7677</link></span> <note>RFC 7677: SCRAM-SHA-256 and SCRAM-SHA-256-PLUS Simple Authentication and Security Layer (SASL) Mechanisms <<link url='http://tools.ietf.org/html/rfc7677'>http://tools.ietf.org/html/rfc7677</link>>.</note>" >
<!ENTITY rfc5705 "<span class='ref'><link url='http://tools.ietf.org/html/rfc5705'>RFC 5705</link></span> <note>RFC 5705: Keying Material Exporters for Transport Layer Security (TLS) <<link url='http://tools.ietf.org/html/rfc5705'>http://tools.ietf.org/html/rfc5705</link>>.</note>" >
<!ENTITY rfc9266 "<span class='ref'><link url='http://tools.ietf.org/html/rfc9266'>RFC 9266</link></span> <note>RFC 9266: Channel Bindings for TLS 1.3 <<link url='http://tools.ietf.org/html/rfc9266'>http://tools.ietf.org/html/rfc9266</link>>.</note>" >
<!-- Internet-Drafts -->
<!ENTITY rfc6122bis "<span class='ref'><link url='https://datatracker.ietf.org/doc/draft-ietf-xmpp-6122bis/'>rfc6122bis</link></span> <note>Extensible Messaging and Presence Protocol (XMPP): Address Format <<link url='https://datatracker.ietf.org/doc/draft-ietf-xmpp-6122bis/'>https://datatracker.ietf.org/doc/draft-ietf-xmpp-6122bis/</link>>. Work in progress.</note>" >
<!ENTITY atomsub "<span class='ref'><link url='https://tools.ietf.org/html/draft-saintandre-atompub-notify-07'>AtomSub</link></span> <note>Atomsub: Transporting Atom Notifications over the Publish-Subscribe Extension to the Extensible Messaging and Presence Protocol (XMPP) <<link url='https://tools.ietf.org/html/draft-saintandre-atompub-notify-07'>https://tools.ietf.org/html/draft-saintandre-atompub-notify-07</link>>. Work in progress.</note>" >
<!ENTITY bundle "<span class='ref'><link url='https://datatracker.ietf.org/doc/draft-ietf-mmusic-sdp-bundle-negotiation/'>draft-ietf-mmusic-sdp-bundle-negotiation</link></span> <note>Negotiating Media Multiplexing Using the Session Description Protocol (SDP) <<link url='https://datatracker.ietf.org/doc/draft-ietf-mmusic-sdp-bundle-negotiation/'>https://datatracker.ietf.org/doc/draft-ietf-mmusic-sdp-bundle-negotiation/</link>>. Work in progress.</note>" >
<!ENTITY cusax "<span class='ref'><link url='https://datatracker.ietf.org/doc/draft-ivov-xmpp-cusax/'>CUSAX</link></span> <note>CUSAX: Combined Use of the Session Initiation Protocol (SIP) and the Extensible Messaging and Presence Protocol (XMPP) <<link url='https://datatracker.ietf.org/doc/draft-ivov-xmpp-cusax/'>https://datatracker.ietf.org/doc/draft-ivov-xmpp-cusax/</link>>. Work in progress.</note>" >
<!ENTITY dtlssrtp "<span class='ref'><link url='http://tools.ietf.org/html/draft-ietf-avt-dtls-srtp'>DTLS-SRTP</link></span> <note>Datagram Transport Layer Security (DTLS) Extension to Establish Keys for Secure Real-time Transport Protocol (SRTP) <<link url='http://tools.ietf.org/html/draft-ietf-avt-dtls-srtp'>http://tools.ietf.org/html/draft-ietf-avt-dtls-srtp</link>>. Work in progress.</note>" >
<!ENTITY geoprivpol "<span class='ref'><link url='http://tools.ietf.org/html/draft-ietf-geopriv-policy'>Geopriv Policy</link></span> <note>Geopriv Policy <<link url='http://tools.ietf.org/html/draft-ietf-geopriv-policy'>http://tools.ietf.org/html/draft-ietf-geopriv-policy</link>>. Work in progress.</note>" >
<!ENTITY iax "<span class='ref'><link url='http://tools.ietf.org/html/draft-guy-iax'>IAX</link></span> <note>IAX: Inter-Asterisk eXchange Version 2 <<link url='http://tools.ietf.org/html/draft-guy-iax'>http://tools.ietf.org/html/draft-ietf-guy-iax</link>>. Work in progress.</note>" >
<!ENTITY ice "<span class='ref'><link url='http://tools.ietf.org/html/rfc5245'>RFC 5245</link></span> <note>RFC 5245: Interactive Connectivity Establishment (ICE) <<link url='http://tools.ietf.org/html/rfc5245'>http://tools.ietf.org/html/rfc5245</link>>.</note>" >
<!ENTITY miletemplate "<span class='ref'><link url='http://tools.ietf.org/html/draft-ietf-mile-template'>Guidelines for Defining Extensions to IODEF</link></span> <note>Guidelines for Defining Extensions to IODEF <<link url='http://tools.ietf.org/html/draft-ietf-mile-template'>http://tools.ietf.org/html/draft-ietf-mile-template</link>>. Work in progress.</note>" >
<!ENTITY opusrtp "<span class='ref'><link url='http://tools.ietf.org/html/draft-ietf-payload-rtp-opus'>RTP Payload Format and File Storage Format for Opus Speech and Audio Codec</link></span> <note>RTP Payload Format and File Storage Format for Opus Speech and Audio Codec <<link url='http://tools.ietf.org/html/draft-ietf-payload-rtp-opus'>http://tools.ietf.org/html/draft-ietf-payload-rtp-opus</link>>. Work in progress.</note>" >
<!ENTITY pidf "<span class='ref'><link url='http://tools.ietf.org/html/rfc3863'>Presence Information Data Format (PIDF) </link></span> <note>RFC 3863: Presence Information Data Format (PIDF) <<link url='http://tools.ietf.org/html/rfc3863'>http://tools.ietf.org/html/rfc3863</link>>.</note>" >
<!ENTITY posh "<span class='ref'><link url='http://datatracker.ietf.org/doc/draft-miller-posh/'>POSH</link></span> <note>PKIX Over Secure HTTP (POSH) <<link url='http://datatracker.ietf.org/doc/draft-miller-posh/'>http://datatracker.ietf.org/doc/draft-miller-posh/</link>>.</note>" >
<!ENTITY reputemodel "<span class='ref'><link url='http://tools.ietf.org/html/draft-ietf-repute-model'>A Model for Reputation Reporting</link></span> <note>A Model for Reputation Reporting <<link url='http://tools.ietf.org/html/draft-ietf-repute-model'>http://tools.ietf.org/html/draft-ietf-repute-model</link>>. Work in progress.</note>" >
<!ENTITY reputemedia "<span class='ref'><link url='http://tools.ietf.org/html/draft-ietf-repute-media-type'>A Media Type for Reputation Interchange</link></span> <note>A Media Type for Reputation Interchange <<link url='http://tools.ietf.org/html/draft-ietf-repute-media-type'>http://tools.ietf.org/html/draft-ietf-repute-media-type</link>>. Work in progress.</note>" >
<!ENTITY rtpkeepalive "<span class='ref'><link url='http://tools.ietf.org/html/draft-ietf-avt-app-rtp-keepalive'>Application Mechanism for maintaining alive the Network Address Translator (NAT) mappings associated to RTP flows</link></span> <note>Application Mechanism for maintaining alive the Network Address Translator (NAT) mappings associated to RTP flows <<link url='http://tools.ietf.org/html/draft-ietf-avt-app-rtp-keepalive'>http://tools.ietf.org/html/draft-ietf-avt-app-rtp-keepalive</link>>. Work in progress.</note>" >
<!ENTITY rtptheora "<span class='ref'><link url='http://tools.ietf.org/html/draft-barbato-avt-rtp-theora'>RTP Payload Format for Theora Encoded Video</link></span> <note>RTP Payload Format for Theora Encoded Video <<link url='http://tools.ietf.org/html/draft-barbato-avt-rtp-theora'>http://tools.ietf.org/html/draft-barbato-avt-rtp-theora</link>>. Work in progress.</note>" >
<!ENTITY rtpvp8 "<span class='ref'><link url='http://tools.ietf.org/html/draft-ietf-payload-vp8'>RTP Payload Format for VP8 Video</link></span> <note>RTP Payload Format for VP8 Video <<link url='http://tools.ietf.org/html/draft-ietf-payload-vp8'>http://tools.ietf.org/html/draft-ietf-payload-vp8</link>>. Work in progress.</note>" >
<!ENTITY saslkrb5 "<span class='ref'><link url='http://tools.ietf.org/html/draft-ietf-sasl-gssapi'>draft-ietf-sasl-gssapi</link></span> <note>The Kerberos V5 (GSSAPI) SASL mechanism <<link url='http://tools.ietf.org/html/draft-ietf-sasl-gssapi'>http://tools.ietf.org/html/draft-ietf-sasl-gssapi</link>>. Work in progress.</note>" >
<!ENTITY sasltls "<span class='ref'><link url='http://tools.ietf.org/html/draft-cridland-sasl-tls-sessions'>draft-cridland-sasl-tls-sessions</link></span> <note>On the use of TLS Session resumption and SASL EXTERNAL <<link url='http://tools.ietf.org/html/draft-cridland-sasl-tls-sessions'>http://tools.ietf.org/html/draft-cridland-sasl-tls-sessions</link>>. Work in progress.</note>" >
<!ENTITY scram "<span class='ref'><link url='http://tools.ietf.org/html/draft-newman-auth-scram'>SCRAM</link></span> <note>Salted Challenge Response (SCRAM) SASL Mechanism <<link url='http://tools.ietf.org/html/draft-newman-auth-scram'>http://tools.ietf.org/html/draft-newman-auth-scram</link>>. Work in progress.</note>" >
<!ENTITY sdpdtls "<span class='ref'><link url='http://tools.ietf.org/html/draft-fischl-mmusic-sdp-dtls'>RTP Over DTLS</link></span> <note>Real-Time Transport Protocol (RTP) over Datagram Transport Layer Security (DTLS) <<link url='http://tools.ietf.org/html/draft-fischl-mmusic-sdp-dtls'>http://tools.ietf.org/html/draft-fischl-mmusic-sdp-dtls</link>>. Work in progress.</note>" >
<!ENTITY sievenotify "<span class='ref'><link url='http://tools.ietf.org/html/draft-ietf-sieve-notify'>Sieve Extension: Notifications</link></span> <note>Sieve Extension: Notifications <<link url='http://tools.ietf.org/html/draft-ietf-sieve-notify'>http://tools.ietf.org/html/draft-ietf-sieve-notify</link>>. Work in progress.</note>" >
<!ENTITY sievenotifyxmpp "<span class='ref'><link url='http://tools.ietf.org/html/draft-ietf-sieve-notify-xmpp'>Sieve Notification Mechanism: xmpp</link></span> <note>Sieve Notification Mechanism: xmpp <<link url='http://tools.ietf.org/html/draft-ietf-sieve-notify-xmpp'>http://tools.ietf.org/html/draft-ietf-sieve-notify-xmpp</link>>. Work in progress.</note>" >
<!ENTITY sipbonjour "<span class='ref'><link url='http://tools.ietf.org/html/draft-lee-sip-dns-sd-uri'>SIP URI Service Discovery using DNS-SD</link></span> <note>SIP URI Service Discovery using DNS-SD <<link url='http://tools.ietf.org/html/draft-lee-sip-dns-sd-uri'>http://tools.ietf.org/html/draft-lee-sip-dns-sd-uri</link>>. Work in progress.</note>" >
<!ENTITY sdpng "<span class='ref'><link url='http://tools.ietf.org/html/draft-ietf-mmusic-sdpng'>Session Description and Capability Negotiation (SDPng)</link></span> <note>Session Description and Capability Negotiation (SDPng) <<link url='http://tools.ietf.org/html/draft-ietf-mmusic-sdpng'>http://tools.ietf.org/html/draft-ietf-mmusic-sdpng</link>>. Work in progress.</note>" >
<!ENTITY smtpquickstart "<span class='ref'><link url='http://tools.ietf.org/id/draft-fanf-smtp-quickstart-01.txt'>The QUICKSTART SMTP service extension</link></span> <note>The QUICKSTART SMTP service extension <<link url='http://tools.ietf.org/id/draft-fanf-smtp-quickstart-01.txt'>http://tools.ietf.org/id/draft-fanf-smtp-quickstart-01.txt</link>>. Work in progress.</note>" >
<!ENTITY sshx509 "<span class='ref'><link url='http://tools.ietf.org/html/draft-ietf-secsh-x509'>X.509 Authentication in SSH2</link></span> <note>X.509 Authentication in SSH2 <<link url='http://tools.ietf.org/html/draft-ietf-secsh-x509'>http://tools.ietf.org/html/draft-ietf-secsh-x509</link>>. Work in progress.</note>" >
<!ENTITY stoxcore "<span class='ref'><strong><link url='http://tools.ietf.org/html/draft-ietf-stox-core'>draft-ietf-stox-core</link></strong></span> <note>Interworking between the Session Initiation Protocol (SIP) and the Extensible Messaging and Presence Protocol (XMPP): Addresses and Error Conditions <<link url='http://tools.ietf.org/html/draft-ietf-stox-core'>http://tools.ietf.org/html/draft-ietf-stox-core</link>>.</note>" >
<!ENTITY tcprobust "<span class='ref'><link url='http://tools.ietf.org/html/draft-ietf-tcpm-tcpsecure'>Improving TCP's Robustness to Blind In-Window Attacks</link></span> <note>Improving TCP's Robustness to Blind In-Window Attacks <<link url='http://tools.ietf.org/html/draft-ietf-tcpm-tcpsecure'>http://tools.ietf.org/html/draft-ietf-tcpm-tcpsecure</link>>. Work in progress.</note>" >
<!ENTITY tls-attacks "<span class='ref'><link url='https://datatracker.ietf.org/doc/draft-sheffer-uta-tls-attacks/'>draft-sheffer-uta-tls-attacks</link></span> <note>Summarizing Current Attacks on TLS and DTLS <<link url='https://datatracker.ietf.org/doc/draft-sheffer-uta-tls-attacks/'>https://datatracker.ietf.org/doc/draft-sheffer-uta-tls-attacks/</link>>. Work in progress.</note>" >
<!ENTITY tls-bcp "<span class='ref'><link url='https://datatracker.ietf.org/doc/draft-sheffer-tls-bcp/'>draft-sheffer-tls-bcp</link></span> <note>Summarizing Current Attacks on TLS and DTLS <<link url='https://datatracker.ietf.org/doc/draft-sheffer-tls-bcp/'>https://datatracker.ietf.org/doc/draft-sheffer-tls-bcp/</link>>. Work in progress.</note>" >
<!ENTITY tls-xmpp "<span class='ref'><link url='https://datatracker.ietf.org/doc/draft-saintandre-xmpp-tls/'>draft-saintandre-xmpp-tls</link></span> <note>Summarizing Current Attacks on TLS and DTLS <<link url='https://datatracker.ietf.org/doc/draft-saintandre-xmpp-tls/'>https://datatracker.ietf.org/doc/draft-saintandre-xmpp-tls/</link>>. Work in progress.</note>" >
<!ENTITY turn "<span class='ref'><link url='http://tools.ietf.org/html/draft-ietf-behave-turn'>TURN</link></span> <note>Traversal Using Relays around NAT (TURN): Relay Extensions to Session Traversal Utilities for NAT (STUN) <<link url='http://tools.ietf.org/html/draft-ietf-behave-turn'>http://tools.ietf.org/html/draft-ietf-behave-turn</link>>. Work in progress.</note>" >
<!ENTITY turn-rest "<span class='ref'><link url='http://tools.ietf.org/html/draft-uberti-behave-turn-rest'>A REST API for Access to TURN Services</link></span> <note>A REST API For Access To TURN Services <<link url='http://tools.ietf.org/html/draft-uberti-behave-turn-rest'>http://tools.ietf.org/html/draft-uberti-behave-turn-rest</link>>. Work in progress.</note>" >
<!ENTITY xmppoverwebsocket "<span class='ref'><link url='https://datatracker.ietf.org/doc/draft-ietf-xmpp-websocket/'>XMPP Over WebSocket</link></span> <note>An XMPP Sub-protocol for WebSocket <<link url='https://datatracker.ietf.org/doc/draft-ietf-xmpp-websocket/'>https://datatracker.ietf.org/doc/draft-ietf-xmpp-websocket/</link>>. Work in progress.</note>" >
<!ENTITY bundle "<span class='ref'><link url='http://tools.ietf.org/html/draft-ietf-mmusic-sdp-bundle-negotiation/'>Multiplexing Negotiation Using Session Description Protocol (SDP) Port Numbers</link></span> <note>Multiplexing Negotiation Using Session Description Protocol (SDP) Port Numbers <<link url='http://tools.ietf.org/html/draft-ietf-mmusic-sdp-bundle-negotiation/'>http://tools.ietf.org/html/draft-ietf-mmusic-sdp-bundle-negotiation/</link>>. Work in progress.</note>" >
<!ENTITY trickle "<span class='ref'><link url='http://tools.ietf.org/html/draft-ietf-ice-trickle/'>Incremental Provisioning of Candidates for the Interactive Connectivity Establishment (ICE) Protocol</link></span> <note>Incremental Provisioning of Candidates for the Interactive Connectivity Establishment (ICE) Protocol <<link url='http://tools.ietf.org/html/draft-ietf-ice-trickle/'>http://tools.ietf.org/html/draft-ietf-ice-trickle/</link>>.</note>" >
<!ENTITY tls-ech "<span class='ref'><link url='http://tools.ietf.org/html/draft-ietf-tls-esni/'>TLS Encrypted Client Hello</link></span> <note>TLS Encrypted Client Hello <<link url='http://tools.ietf.org/html/draft-ietf-tls-esni/'>http://tools.ietf.org/html/draft-ietf-tls-esni/</link>>.</note>" >
<!-- IANA registries -->
<!ENTITY ianadispositions "<span class='ref'><link url='http://www.iana.org/assignments/mail-cont-disp'>IANA Mail Content Disposition Values and Parameters Registry</link></span> <note>IANA registry of Mail Content Disposition Values and Parameters <<link url='http://www.iana.org/assignments/mail-cont-disp'>http://www.iana.org/assignments/mail-cont-disp</link>>.</note>" >
<!ENTITY ianahashes "<span class='ref'><link url='http://www.iana.org/assignments/hash-function-text-names'>IANA Hash Function Textual Names Registry </link></span> <note>IANA registry of Hash Function Textual Names <<link url='http://www.iana.org/assignments/hash-function-text-names'>http://www.iana.org/assignments/hash-function-text-names</link>>.</note>" >
<!ENTITY ianalinks "<span class='ref'><link url='http://www.iana.org/assignments/link-relations.html'>IANA MIME Atom Link Relations Registry</link></span> <note>IANA registry of Atom link relations <<link url='http://www.iana.org/assignments/link-relations.html'>http://www.iana.org/assignments/link-relations.html</link>>.</note>" >
<!ENTITY ianamedia "<span class='ref'><link url='http://www.iana.org/assignments/media-types'>IANA MIME Media Types Registry</link></span> <note>IANA registry of MIME media types <<link url='http://www.iana.org/assignments/media-types'>http://www.iana.org/assignments/media-types</link>>.</note>" >
<!ENTITY ianaports "<span class='ref'><link url='http://www.iana.org/assignments/port-numbers'>IANA Port Numbers Registry</link></span> <note>IANA registry of port numbers <<link url='http://www.iana.org/assignments/port-numbers'>http://www.iana.org/assignments/port-numbers</link>>.</note>" >
<!ENTITY ianasasl "<span class='ref'><link url='http://www.iana.org/assignments/sasl-mechanisms'>IANA SASL Mechanisms Registry</link></span> <note>IANA registry of mechanisms used in the Simple Authentication and Security Layer protocol <<link url='http://www.iana.org/assignments/sasl-mechanisms'>http://www.iana.org/assignments/sasl-mechanisms</link>>.</note>" >
<!ENTITY ianasdp "<span class='ref'><link url='http://www.iana.org/assignments/sdp-parameters'>IANA Session Description Protocol Parameters Registry</link></span> <note>IANA registry of parameters related to the Session Description Protocol <<link url='http://www.iana.org/assignments/sdp-parameters'>http://www.iana.org/assignments/sdp-parameters</link>>.</note>" >
<!ENTITY ianasip "<span class='ref'><link url='http://www.iana.org/assignments/sip-parameters'>IANA Session Initiation Protocol Parameters Registry</link></span> <note>IANA registry of parameters related to the Session Initiation Protocol <<link url='http://www.iana.org/assignments/sip-parameters'>http://www.iana.org/assignments/sip-parameters</link>>.</note>" >
<!ENTITY ianaslp "<span class='ref'><link url='http://www.iana.org/assignments/svrloc-templates.htm'>
IANA Service Location Protocol, Version 2 (SLPv2) Templates</link></span> <note>IANA registry of parameters related to the Service Location Protocol templates <<link url='http://www.iana.org/assignments/svrloc-templates.htm'>http://www.iana.org/assignments/svrloc-templates.htm</link>>.</note>" >
<!ENTITY ianassh "<span class='ref'><link url='http://www.iana.org/assignments/ssh-parameters'>IANA Secure Shell Protocol Parameters Registry</link></span> <note>IANA registry of parameters related to secure shell <<link url='http://www.iana.org/assignments/ssh-parameters'>http://www.iana.org/assignments/ssh-parameters</link>>.</note>" >
<!ENTITY stox-media "<span class='ref'><link url='https://tools.ietf.org/html/draft-ietf-stox-media'>Interworking between the Session Initiation Protocol (SIP) and the Extensible Messaging and Presence Protocol (XMPP): Media Sessions</link></span> <note>Interworking between the Session Initiation Protocol (SIP) and the Extensible Messaging and Presence Protocol (XMPP): Media Sessions <<link url='https://tools.ietf.org/html/draft-ietf-stox-media'>https://tools.ietf.org/html/draft-ietf-stox-media</link>>.</note>" >
<!-- IETF XMPP Specs -->
<!ENTITY xmpp "<span class='ref'><link url='https://xmpp.org/'>XMPP</link></span> <note>Extensible Messaging and Presence Protocol (XMPP) <<link url='https://xmpp.org/'>https://xmpp.org/</link>>.</note>" >
<!ENTITY xmppcore "<span class='ref'><link url='http://tools.ietf.org/html/rfc6120'>XMPP Core</link></span> <note>RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core <<link url='http://tools.ietf.org/html/rfc6120'>http://tools.ietf.org/html/rfc6120</link>>.</note>" >
<!ENTITY xmppcpim "<span class='ref'><link url='http://tools.ietf.org/html/rfc3922'>XMPP CPIM</link></span> <note>RFC 3922: Mapping the Extensible Messaging and Presence Protocol (XMPP) to Common Presence and Instant Messaging (CPIM) <<link url='http://tools.ietf.org/html/rfc3922'>http://tools.ietf.org/html/rfc3922</link>>.</note>" >
<!ENTITY xmppe2e "<span class='ref'><link url='http://tools.ietf.org/html/rfc3923'>XMPP E2E</link></span> <note>RFC 3923: End-to-End Signing and Object Encryption for the Extensible Messaging and Presence Protocol (XMPP) <<link url='http://tools.ietf.org/html/rfc3923'>http://tools.ietf.org/html/rfc3923</link>>.</note>" >
<!ENTITY xmppim "<span class='ref'><link url='http://tools.ietf.org/html/rfc6121'>XMPP IM</link></span> <note>RFC 6121: Extensible Messaging and Presence Protocol (XMPP): Instant Messaging and Presence <<link url='http://tools.ietf.org/html/rfc6121'>http://tools.ietf.org/html/rfc6121</link>>.</note>" >
<!ENTITY xmppiri "<span class='ref'><link url='http://tools.ietf.org/html/rfc5122'>XMPP URI Scheme</link></span> <note>Internationalized Resource Identifiers (IRIs) and Uniform Resource Identifiers (URIs) for the Extensible Messaging and Presence Protocol (XMPP) <<link url='http://tools.ietf.org/html/rfc5122'>http://tools.ietf.org/html/rfc5122</link>>.</note>" >
<!ENTITY stoxchat "<span class='ref'><link url='http://tools.ietf.org/html/draft-ietf-stox-chat'>draft-ietf-stox-chat</link></span> <note>Interworking between the Session Initiation Protocol (SIP) and the Extensible Messaging and Presence Protocol (XMPP): One-to-One Text Chat <<link url='http://tools.ietf.org/html/draft-ietf-stox-chat'>http://tools.ietf.org/html/draft-ietf-stox-chat</link>> (work in progress).</note>" >
<!ENTITY stoxcore "<span class='ref'><link url='http://tools.ietf.org/html/draft-ietf-stox-core'>draft-ietf-stox-core</link></span> <note>Interworking between the Session Initiation Protocol (SIP) and the Extensible Messaging and Presence Protocol (XMPP): Core <<link url='http://tools.ietf.org/html/draft-ietf-stox-core'>http://tools.ietf.org/html/draft-ietf-stox-core</link>> (work in progress).</note>" >
<!ENTITY stoxim "<span class='ref'><link url='http://tools.ietf.org/html/draft-ietf-stox-im'>draft-ietf-stox-im</link></span> <note>Interworking between the Session Initiation Protocol (SIP) and the Extensible Messaging and Presence Protocol (XMPP): Instant Messaging <<link url='http://tools.ietf.org/html/draft-ietf-stox-im'>http://tools.ietf.org/html/draft-ietf-stox-im</link>> (work in progress).</note>" >
<!ENTITY stoxmedia "<span class='ref'><link url='http://tools.ietf.org/html/draft-ietf-stox-media'>draft-ietf-stox-media</link></span> <note>Interworking between the Session Initiation Protocol (SIP) and the Extensible Messaging and Presence Protocol (XMPP): Media Sessions <<link url='http://tools.ietf.org/html/draft-ietf-stox-media'>http://tools.ietf.org/html/draft-ietf-stox-media</link>> (work in progress).</note>" >
<!ENTITY stoxpresence "<span class='ref'><link url='http://tools.ietf.org/html/draft-ietf-stox-presence'>draft-ietf-stox-presence</link></span> <note>Interworking between the Session Initiation Protocol (SIP) and the Extensible Messaging and Presence Protocol (XMPP): Presence <<link url='http://tools.ietf.org/html/draft-ietf-stox-presence'>http://tools.ietf.org/html/draft-ietf-stox-presence</link>> (work in progress).</note>" >
<!ENTITY xmppurn "<span class='ref'><link url='http://tools.ietf.org/html/rfc4854'>XMPP URNs</link></span> <note>A Uniform Resource Name (URN) Namespace for Extensions to the Extensible Messaging and Presence Protocol (XMPP) <<link url='http://tools.ietf.org/html/rfc4854'>http://tools.ietf.org/html/rfc4854</link>>.</note>" >
<!ENTITY xtls "<span class='ref'><link url='http://tools.ietf.org/html/draft-meyer-xmpp-e2e-encryption'>Jingle XTLS</link></span> <note>Extensible Messaging and Presence Protocol (XMPP) End-to-End Encryption Using Transport Layer Security ("XTLS") <<link url='http://tools.ietf.org/html/draft-meyer-xmpp-e2e-encryption'>http://tools.ietf.org/html/draft-meyer-xmpp-e2e-encryption</link>>.</note>" >
<!ENTITY saslext "<span class='ref'><link url='http://tools.ietf.org/html/draft-meyer-xmpp-sasl-cert-management'>Client Certificate Management for SASL EXTERNAL</link></span> <note>Management and Use of Client Certificates for the Extensible Messaging and Presence Protocol (XMPP) <<link url='http://tools.ietf.org/html/draft-meyer-xmpp-sasl-cert-management'>http://tools.ietf.org/html/draft-meyer-xmpp-sasl-cert-management</link>>.</note>" >
<!-- Frequent Extension Authors -->
<!ENTITY stpeter "
<author>
<firstname>Peter</firstname>
<surname>Saint-Andre</surname>
<email>stpeter@stpeter.im</email>
<jid>stpeter@jabber.org</jid>
<uri>https://stpeter.im/</uri>
</author>
" >
<!ENTITY dizzyd "
<author>
<firstname>Dave</firstname>
<surname>Smith</surname>
<email>dizzyd@jabber.org</email>
<jid>dizzyd@jabber.org</jid>
</author>
" >
<!ENTITY temas "
<author>
<firstname>Thomas</firstname>
<surname>Muldowney</surname>
<email>temas@jabber.org</email>
<jid>temas@jabber.org</jid>
</author>
" >
<!ENTITY linuxwolf "
<author>
<firstname>Matthew</firstname>
<surname>Miller</surname>
<email>linuxwolf@outer-planes.net</email>
<jid>linuxwolf@outer-planes.net</jid>
</author>
" >
<!ENTITY pgmillard "
<author>
<firstname>Peter</firstname>
<surname>Millard</surname>
<authornote/>
</author>
" >
<!ENTITY hildjj "
<author>
<firstname>Joe</firstname>
<surname>Hildebrand</surname>
<email>jhildebr@cisco.com</email>
<jid>hildjj@jabber.org</jid>
</author>
" >
<!ENTITY reatmon "
<author>
<firstname>Ryan</firstname>
<surname>Eatmon</surname>
<email>reatmon@jabber.org</email>
<jid>reatmon@jabber.org</jid>
</author>
" >
<!ENTITY jer "
<author>
<firstname>Jeremie</firstname>
<surname>Miller</surname>
<email>jer@jabber.org</email>
<jid>jer@jabber.org</jid>
</author>
" >
<!ENTITY infiniti "
<author>
<firstname>Justin</firstname>
<surname>Karneges</surname>
<email>justin@karneges.com</email>
<jid>justin@andbit.net</jid>
</author>
" >
<!ENTITY ralphm "
<author>
<firstname>Ralph</firstname>
<surname>Meijer</surname>
<email>ralphm@ik.nu</email>
<jid>ralphm@ik.nu</jid>
</author>
" >
<!ENTITY xvirge "
<author>
<firstname>Julian</firstname>
<surname>Missig</surname>
<email>julian@jabber.org</email>
<jid>julian@jabber.org</jid>
</author>
" >
<!ENTITY ianpaterson "
<author>
<firstname>Ian</firstname>
<surname>Paterson</surname>
<email>ian.paterson@clientside.co.uk</email>
<jid>ian@zoofy.com</jid>
</author>
" >
<!ENTITY scottlu "
<author>
<firstname>Scott</firstname>
<surname>Ludwig</surname>
<email>scottlu@google.com</email>
<jid>scottlu@google.com</jid>
</author>
" >
<!ENTITY joebeda "
<author>
<firstname>Joe</firstname>
<surname>Beda</surname>
<email>jbeda@google.com</email>
<jid>jbeda@google.com</jid>
</author>
" >
<!ENTITY val "
<author>
<firstname>Valerie</firstname>
<surname>Mercier</surname>
<email>valerie.mercier@orange-ftgroup.com</email>
<jid>vmercier@jabber.com</jid>
</author>
" >
<!ENTITY seanegan "
<author>
<firstname>Sean</firstname>
<surname>Egan</surname>
<email>seanegan@google.com</email>
<jid>seanegan@google.com</jid>
</author>
" >
<!ENTITY robmcqueen "
<author>
<firstname>Robert</firstname>
<surname>McQueen</surname>
<email>robert.mcqueen@collabora.co.uk</email>
<jid>robert.mcqueen@collabora.co.uk</jid>
</author>
" >
<!ENTITY ksmith "
<author>
<firstname>Kevin</firstname>
<surname>Smith</surname>
<email>kevin@kismith.co.uk</email>
<jid>kevin@doomsong.co.uk</jid>
</author>
" >
<!ENTITY ksmithisode "
<author>
<firstname>Kevin</firstname>
<surname>Smith</surname>
<email>kevin.smith@isode.com</email>
<jid>kevin.smith@isode.com</jid>
</author>
" >
<!ENTITY skille "
<author>
<firstname>Steve</firstname>
<surname>Kille</surname>
<email>steve.kille@isode.com</email>
<jid>steve.kille@isode.com</jid>
</author>
" >
<!ENTITY remko "
<author>
<firstname>Remko</firstname>
<surname>Tronçon</surname>
<uri>http://el-tramo.be/</uri>
</author>
" >
<!ENTITY dcridland "
<author>
<firstname>Dave</firstname>
<surname>Cridland</surname>
<email>dave@hellopando.com</email>
<jid>dwd@dave.cridland.net</jid>
</author>
" >
<!ENTITY fabio "
<author>
<firstname>Fabio</firstname>
<surname>Forno</surname>
<email>fabio.forno@gmail.com</email>
<jid>ff@jabber.bluendo.com</jid>
</author>
" >
<!ENTITY pavlix "
<author>
<firstname>Pavel</firstname>
<surname>Šimerda</surname>
<jid>pavlix@pavlix.net</jid>
<uri>http://www.pavlix.net/</uri>
</author>
" >
<!ENTITY diana "
<author>
<firstname>Diana</firstname>
<surname>Cionoiu</surname>
<email>diana@null.ro</email>
<jid>l-fy@jabber.null.ro</jid>
</author>
" >
<!ENTITY dmeyer "
<author>
<firstname>Dirk</firstname>
<surname>Meyer</surname>
<email>dmeyer@tzi.de</email>
<jid>dmeyer@jabber.org</jid>
</author>
" >
<!ENTITY metajack "
<author>
<firstname>Jack</firstname>
<surname>Moffitt</surname>
<email>jack@chesspark.com</email>
<jid>jack@chesspark.com</jid>