REC-xmlenc-decrypt-20021210
60.5 KB
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Decryption Transform for XML Signature</title>
<style type="text/css">
<!--
/*<![CDATA[*/
u,ins,.ins { background: white; color: red;}
del,strike,.strike { background: white; color: silver; text-decoration: line-through;}
code { font-weight: normal; }
.def { background: #FFFFFF; font-weight: bold}
.link-def { background: #FFFFFF; color: teal; font-style: italic;}
.link-sec { font-style: italic;}
.comment { background: #FFFFF5; color: black; padding: .7em; border:
navy thin solid;}
.discuss { color: blue; background: yellow; }
.xml-example,.xml-dtd { margin-left: -1em; padding: .5em; border: none;}
.xml-dtd { background: #efeff8; color: black;}
/*]]>*/
-->
</style>
<link rel="stylesheet" type="text/css"
href="http://www.w3.org/StyleSheets/TR/W3C-REC.css" />
</head>
<body xml:lang="en" lang="en">
<div class="head">
<p><a href="http://www.w3.org/"><img height="48" width="72" alt="W3C"
src="http://www.w3.org/Icons/w3c_home" /></a></p>
<h1 class="notoc">Decryption Transform for XML Signature</h1>
<h2 class="notoc">W3C Recommendation 10 December 2002</h2>
<dl>
<dt>This version:</dt>
<dd><a
href="http://www.w3.org/TR/2002/REC-xmlenc-decrypt-20021210">http://www.w3.org/TR/2002/REC-xmlenc-decrypt-20021210</a></dd>
<dt>Latest version:</dt>
<dd><a
href="http://www.w3.org/TR/xmlenc-decrypt">http://www.w3.org/TR/xmlenc-decrypt</a></dd>
<dt>Previous version:</dt>
<dd><a
href="http://www.w3.org/TR/2002/PR-xmlenc-decrypt-20021003">http://www.w3.org/TR/2002/PR-xmlenc-decrypt-20021003</a></dd>
<dt>Editors</dt>
<dd>Merlin Hughes <<a
href="mailto:merlin@baltimore.ie">merlin@baltimore.ie</a>></dd>
<dd>Takeshi Imamura <<a
href="mailto:imamu@jp.ibm.com">imamu@jp.ibm.com</a>></dd>
<dd>Hiroshi Maruyama <<a
href="mailto:maruyama@jp.ibm.com">maruyama@jp.ibm.com</a>></dd>
<dt>Contributors</dt>
<dd>See <a href="#sec-acknlowledgements">Acknlowledgements</a></dd>
</dl>
<p>Please see the <a
href="http://www.w3.org/Encryption/2002/12-xmlenc-decrypt-errata"><strong>errata</strong></a>
for this document, which may include some normative corrections. See also <a
href="http://www.w3.org/Encryption/2002/12-xmlenc-translations"><strong>translations</strong></a>.</p>
<p class="copyright"><a
href="http://www.w3.org/Consortium/Legal/ipr-notice-20000612#Copyright">Copyright</a>
© 2002 <a href="http://www.w3.org/"><abbr
title="World Wide Web Consortium">W3C</abbr></a><sup>®</sup> (<a
href="http://www.lcs.mit.edu/"><abbr
title="Massachusetts Institute of Technology">MIT</abbr></a>, <a
href="http://www.inria.fr/"><abbr xml:lang="fr" lang="fr"
title="Institut National de Recherche en Informatique et Automatique">INRIA</abbr></a>,
<a href="http://www.keio.ac.jp/">Keio</a>), All Rights Reserved. W3C <a
href="http://www.w3.org/Consortium/Legal/ipr-notice-20000612#Legal_Disclaimer">liability</a>,
<a
href="http://www.w3.org/Consortium/Legal/ipr-notice-20000612#W3C_Trademarks">trademark</a>,
<a
href="http://www.w3.org/Consortium/Legal/copyright-documents-19990405">document
use</a> and <a
href="http://www.w3.org/Consortium/Legal/copyright-software-19980720">software
licensing</a> rules apply.</p>
<hr title="Separator from Header" />
</div>
<h2>Abstract</h2>
<p>This document specifies an XML Signature "decryption transform" that
enables XML Signature applications to distinguish between those XML
Encryption structures that were encrypted before signing (and must not be
decrypted) and those that were encrypted after signing (and must be
decrypted) for the signature to validate.</p>
<h2 class="notoc"><a name="sec-Status" id="sec-Status">Status of this
document</a></h2>
<div class="">
<p>This document is the W3C Decryption Transform for XML Signature <a
href="http://www.w3.org/Consortium/Process-20010719/process.html#RecsW3C">Recommendation
(REC)</a>. This document has been reviewed by W3C Members and other
interested parties and has been endorsed by the Director as a W3C
Recommendation. It is a stable document and may be used as reference material
or cited as a normative reference from another document. W3C's role in making
the Recommendation is to draw attention to the specification and to promote
its widespread deployment. This enhances the functionality and
interoperability of the Web.</p>
<p>This specification was produced by the W3C <a
href="http://www.w3.org/Encryption/2001/Overview.html">XML Encryption Working
Group</a> (<a
href="http://www.w3.org/Encryption/2001/Activity.html">Activity</a>) which
believes the specification is sufficient for the creation of independent
interoperable implementations as demonstrated in the <a
href="http://www.w3.org/Encryption/2002/02-xenc-interop.html#decryption-transform">Interoperablity
Report.</a></p>
<p>Patent disclosures relevant to this specification may be found on the
Working Group's <a
href="http://www.w3.org/Encryption/2001/Disclosures.html">patent disclosure
page</a> in conformance with W3C policy.</p>
<p>Pleae report errors in this document to <a
href="mailto:xml-encryption@w3.org">xml-encryption@w3.org</a> (<a
href="http://lists.w3.org/Archives/Public/xml-encryption/">public
archive</a>).</p>
<p>The list of known errors in this specification is available at <a
href="http://www.w3.org/Encryption/2002/12-xmlenc-decrypt-errata">http://www.w3.org/Encryption/2002/12-xmlenc-decrypt-errata</a>.</p>
<p>The English version of this specification is the only normative version.
Information about translations of this document (if any) is available <a
href="http://www.w3.org/Encryption/2002/12-xmlenc-translations">http://www.w3.org/Encryption/2002/12-xmlenc-translations</a>.</p>
<p>A list of current W3C Recommendations and other technical documents can be
found at <a href="http://www.w3.org/TR/">http://www.w3.org/TR/</a>.</p>
</div>
<h2><a name="sec-ToC" id="sec-ToC">Table of Contents</a></h2>
<ol>
<li><a href="#sec-introduction">Introduction</a>
<ol>
<li><a href="#sec-purpose">Purpose</a></li>
<li><a href="#sec-conventions">Editorial Conventions</a></li>
<li><a href="#sec-acknlowledgements">Acknlowledgments</a></li>
</ol>
</li>
<li><a href="#sec-syntax">Decryption Transform Syntax</a></li>
<li><a href="#sec-xml-mode">XML-Mode Decryption Transform</a>
<ol>
<li><a href="#sec-xml-processing">Processing Rules</a></li>
<li><a href="#sec-xml-creation">Transform Creation
(Non-Normative)</a></li>
<li><a href="#sec-xml-example">Example</a></li>
<li><a href="#sec-xml-restrictions">Restrictions and Limitations</a>
<ol>
<li><a href="#sec-well-formed">The Constraint of Well-Formed
Data</a></li>
<li><a href="#sec-interiting-xml-attributes">Inheriting Attributes
from the XML Namespace</a></li>
<li><a href="#sec-references-structural-changes">References and
Structural Changes</a></li>
<li><a href="#sec-references-super-encryption">References and
Super-Encryption</a></li>
<li><a href="#sec-References-Non-Barename">References Using
Non-barename XPointers</a></li>
<li><a href="#sec-interactions">Interactions with Other
Filters</a></li>
<li><a href="#sec-encryptedkey">EncryptedKey is Out of
Scope</a></li>
</ol>
</li>
</ol>
</li>
<li><a href="#sec-binary-mode">Binary-Mode Decryption Transform</a>
<ol>
<li><a href="#sec-binary-processing">Processing Rules</a></li>
<li><a href="#sec-binary-example">Example</a></li>
</ol>
</li>
<li><a href="#sec-security">Security Considerations</a>
<ol>
<li><a href="#sec-security-reveal">Signatures Over Encrypted Data May
Reveal Information</a></li>
<li><a href="#sec-sign-what-you-see">"Sign What You See"</a></li>
</ol>
</li>
<li><a href="#sec-references">References</a></li>
</ol>
<hr />
<h2><a id="sec-introduction" name="sec-introduction">1 Introduction</a></h2>
<h3><a id="sec-purpose" name="sec-purpose">1.1 Purpose</a></h3>
<p>It has been noted by David Solo in [<a href="#Solo">Solo</a>] that both
signature [<a href="#XML-Signature">XML-Signature</a>] and encryption [<a
href="#XML-Encryption">XML-Encryption</a>] operations may be performed on an
XML document at any time and in any order, especially in scenarios such as
workflow. For example, Alice wishes to order and pay for a book from Bob
using the mutually trusted payment system ZipPay. Bob creates an order form
including the book title, price and his account info. He wants to sign all of
this information, but will subsequently encrypt his account info for ZipPay
only. He sends this to Alice who affirms the book title and price, signs the
form and presents the twice-signed order with her own payment information to
ZipPay. To validate both signatures ZipPay will have to know that the cipher
data version of the encrypted information is necessary for validating Alice's
signature, but the plain data form is necessary for validating Bob's
signature. (See <a class="link-sec" href="#sec-sign-what-you-see">"Sign What
You See"</a> (section 5.2) for more on signing encrypted data.)</p>
<p>Since encryption operations applied to part of the signed content after a
signature operation cause a signature not to be verifiable, it is necessary
to decrypt the portions encrypted after signing before the signature is
verified. The "decryption transform" proposed in this document provides a
mechanism; decrypting only signed-then-encrypted portions (and ignoring
encrypted-then-signed ones). A signer can insert this transform in a
transform sequence (e.g., before Canonical XML [<a
href="#XML-C14N">XML-C14N</a>] or XPath [<a href="#XPath">XPath</a>]) if
there is a possibility that someone will encrypt portions of the
signature.</p>
<p>The transform defined in this document is intended to propose a resolution
to the decryption/verification ordering issue within signed resources. It is
out of scope of this document to deal with the cases where the ordering can
be derived from the context. For example, when a <code>ds:DigestValue</code>
element or a (part of) <code>ds:SignedInfo</code> element is encrypted, the
ordering is obvious (without decryption, signature verification is not
possible) and there is no need to introduce a new transform.</p>
<h3><a id="sec-conventions" name="sec-conventions">1.2 Editorial
Conventions</a></h3>
<p>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document
are to be interpreted as described in RFC 2119 [<a
href="#Keywords">Keywords</a>].</p>
<p>This document makes use of the [<a
href="#XML-Encryption">XML-Encryption</a>] and [<a
href="#XML-Signature">XML-Signature</a>] namespaces, and defines it own, with
the following prefixes:</p>
<pre>xmlns:xenc="http://www.w3.org/2001/04/xmlenc#"
xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
xmlns:dcrpt="http://www.w3.org/2002/07/decrypt#"</pre>
<p>While implementations MUST support XML and XML namespaces, the use of our
"<code>xenc</code>", "<code>ds</code>", and "<code>dcrpt</code>" XML
namespace prefixes is OPTIONAL; we use this facility to provide compact and
readable exposition. Additionally, the entity <code>&xenc;</code> is
borrowed from [<a href="#XML-Encryption">XML-Encryption</a>] to provide
short-hand identifiers for URIs defined in that specification. For example
<code>"&xenc;Element"</code> corresponds to
"http://www.w3.org/2001/04/xmlenc#Element".</p>
<h3><a id="sec-acknlowledgements" name="sec-acknlowledgements">1.3
Acknlowledgments</a></h3>
<p>The contributions of the following Working Group participants to this
specification are gratefully acknowledged:</p>
<ul>
<li>Hal Finney, PGP Security</li>
<li>Amir Herzberg, NewGenPay</li>
<li>Takeshi Imamura, IBM</li>
<li>Ari Kermaier, Phaos</li>
<li>Hiroshi Maruyama, IBM</li>
<li>Joseph Reagle, W3C</li>
<li>David Solo, Citigroup</li>
</ul>
<h2><a id="sec-syntax" name="sec-syntax">2 Decryption Transform
Syntax</a></h2>
<p class="">This transform supports two modes of operation. In XML mode the
data is encrypted XML and the result of decryption is a node set. In binary
mode the data is an encrypted octet sequence and the result of decryption is
an octet sequence. In both modes, <code>xenc:EncryptedData</code> elements in
the input node-set can be excluded from processing using
<code>dcrpt:Except</code> elements. <code>dcrpt:Except</code> is defined
below via XML Schema [<a href="#XML-Schema">XML-Schema</a>] and appears as
direct child elements of the <code>ds:Transform</code> element.</p>
<p>The REQUIRED <code>URI</code> attribute value of the
<code>dcrpt:Except</code> element identifies <code>xenc:EncryptedData</code>
elements within the input to the transform. The value MUST be a non-empty
same-document [<a href="#URI">URI</a>] reference (i.e., a number sign '#'
character) followed by an XPointer expression [<a
href="#XPointer">XPointer</a>] as profiled by <a class="link-sec"
href="http://www.w3.org/TR/2002/REC-xmldsig-core-20020212/#sec-ReferenceProcessingModel">The
Reference Processing Model</a> [<a href="#XML-Signature">XML-Signature</a>,
section 4.3.3.2].</p>
<pre class="xml-dtd"> Schema Definition:
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE schema PUBLIC "-//W3C//DTD XMLSchema 200102//EN"
"http://www.w3.org/2001/XMLSchema.dtd" [
<!ATTLIST schema
xmlns:dt CDATA #FIXED "http://www.w3.org/2002/07/decrypt#">
<!ENTITY % p ''>
<!ENTITY % s ''>
]>
<schema xmlns="http://www.w3.org/2001/XMLSchema" version="0.1"
xmlns:dt="http://www.w3.org/2002/07/decrypt#"
targetNamespace="http://www.w3.org/2002/07/decrypt#"
elementFormDefault="qualified">
<element name="Except" type="dt:ExceptType"/>
<complexType name="ExceptType">
<attribute name="Id" type="ID" use="optional"/>
<attribute name="URI" type="anyURI" use="required"/>
</complexType>
</schema></pre>
<h2><a id="sec-xml-mode" name="sec-xml-mode">3 XML Mode Decryption
Transform</a></h2>
<dl>
<dt>Identifier:</dt>
<dd><a name="XML" id="XML"
href="http://www.w3.org/2002/07/decrypt#XML">http://www.w3.org/2002/07/decrypt#XML</a></dd>
</dl>
<p>This mode of the transform requires an XPath node-set [<a
href="#XPath">XPath</a>] for input. If an octet stream is given as input, it
MUST be converted to a node-set as described in <a class="link-sec"
href="http://www.w3.org/TR/2002/REC-xmldsig-core-20020212/#sec-ReferenceProcessingModel">The
Reference Processing Model</a> (section 4.3.3.2) of the XML Signature
specification [<a href="#XML-Signature">XML-Signature</a>]. The transform
decrypts all the <code>xenc:EncryptedData</code> elements except for those
specified by <code>dcrpt:Except</code> elements. The output of the transform
is a node-set.</p>
<h3><a id="sec-xml-processing" name="sec-xml-processing">3.1 Processing
Rules</a></h3>
<p>This section describes the processing rules of the transform. The rules
are written as two functions; the inputs and outputs of the transform are
those of the <a href="#func-decryptXML" class="link-def">decryptXML()</a>
function, which itself calls the <a href="#func-decryptNodeSet"
class="link-def">decryptNodeSet()</a> function.</p>
<dl>
<dt><a name="func-decryptXML" id="func-decryptXML" class="link-def">O =
decryptXML(N, E)</a></dt>
<dd><p>where <em>N</em> is a node-set and <em>E</em> is a set of
exception URIs held by <code>URI</code> attributes of
<code>dcrpt:Except</code> elements. <em>O</em> is a node-set, computed
as follows:</p>
<ol>
<li>Let <em><strong>Y</strong></em>, a set of replacement node-sets,
be <a href="#func-decryptNodeSet"
class="link-def">decryptNodeSet(N, <em>E</em>)</a>.</li>
<li><a class="def" name="def-Canonicalize-with-Replacement"
id="def-Canonicalize-with-Replacement">Canonicalize-with-Replacement</a>:
convert <em>N</em> to an octet stream <em>B</em>, (which MUST be <a
href="#sec-well-formed">well-formed</a> (see section 3.4.1)), using
[<a
href="http://www.w3.org/TR/2002/REC-xmldsig-core-20020212/#ref-XML-C14N">XML-C14N</a>]
as described in <a class="link-sec"
href="http://www.w3.org/TR/2002/REC-xmldsig-core-20020212/#sec-ReferenceProcessingModel">The
Reference Processing Model</a> [<a
href="#XML-Signature">XML-Signature</a>, section 4.3.3.2]; but, in
place of any decrypted <code>xenc:EncryptedData</code> element
<em>d</em> and its descendants, process the replacement node-set
<em>O<sub>d</sub></em>, from <em><strong>Y</strong></em>. During
this step, canonicalization of the replacement node-set MUST be <a
href="#sec-interiting-xml-attributes">augmented</a> (see section
3.4.2) as follows:
<ul>
<li>A namespace declaration <code>xmlns=""</code> MUST be emitted
with every <a class="link-def"
href="http://www.w3.org/TR/2002/REC-xml-exc-c14n-20020718/#def-apex-node">apex</a>
element that has no namespace node declaring a value for the
default namespace as described in <a class="link-sec"
href="http://www.w3.org/Encryption/2001/Drafts/xmlenc-core/#sec-Serializing-XML">Serializing
XML</a> [<a href="#XML-Encryption">XML-Encryption</a>, section
4.3.3].</li>
<li>If a node-set is replacing an element from <em>N</em> whose
parent element is not in <em>N</em>, then its apex elements
MUST inherit attributes associated with the <a class=""
href="http://www.w3.org/XML/1998/namespace">XML namespace</a>
from the parent element., such as <code>xml:base</code>,
<code>xml:lang</code> and <code>xml:space</code>.</li>
</ul>
<p><em>B</em> may not be in canonical form.</p>
</li>
<li>Let <em>O</em>, the output of this function, be a node-set
converted from <em>B</em> as described in <a class="link-sec"
href="http://www.w3.org/TR/2002/REC-xmldsig-core-20020212/#sec-ReferenceProcessingModel">The
Reference Processing Model</a> [<a
href="#XML-Signature">XML-Signature</a>, section 4.3.3.2].
<ul>
<li>If parsing of <em>B</em> fails, then the implementation MUST
signal a failure of the transform.</li>
<li>Note that even if there are no decrypted
<code>xenc:EncryptedData</code> elements, then <em>N</em> is
still canonicalized and parsed.</li>
</ul>
</li>
</ol>
</dd>
</dl>
<dl>
<dt><a name="func-decryptNodeSet" id="func-decryptNodeSet"
class="link-def"><strong>Y</strong> = decryptNodeSet(N, E)</a></dt>
<dd><p>where <em>N</em> is a node-set and <em>E</em> is a set of
exception URIs held by <code>URI</code> attributes of
<code>dcrpt:Except</code> elements. <em><strong>Y</strong></em> is a
set of node-sets, computed as follows:</p>
<ol>
<li>Let <em>D</em> be a node-set containing all element nodes in
<em>N</em> with the type <code>xenc:EncryptedData</code> that are
not identified by any exception URI in <em>E</em>.
<ul>
<li class="">When dereferencing an exception URI in the context
of the original input node set, the implementation MUST behave
as if the document node of the input node-set is used to
initialize the XPointer evaluation context [<a
href="#XPointer">XPointer</a>], even if the node is not part of
the node-set. Unlike XML Signature [<a
href="#XML-Signature">XML-Signature</a>], the exception URI may
be evaluated against a different document than the "root node
of the XML document containing the URI attribute." If the input
is a different document then, as per XPointer [<a
href="#XPointer">XPointer</a>], use of the <a
href="http://www.w3.org/TR/2001/CR-xptr-20010911/#N3568"
class="link-def">here()</a> function is an error.</li>
<li class="">When dereferencing an exception URI in the context
of a replacement node-set, bare name [<a
href="#XPointer">XPointer</a>] exception URIs are used to
locate <code>xenc:EncryptedData</code> elements with matching
<code>Id</code> attributes. Implementors MAY attempt to resolve
full XPointers into replacement node-sets using appropriate
techniques to take into account the location of the replacement
node-set in the input document, see <a class="link-sec"
href="#sec-References-Non-Barename">References Using
Non-barename XPointers</a> (section 3.4.5).</li>
<li class="">If an exception URI fails to dereference any nodes,
then the resulting error MUST be ignored; it may be the result
of part of the input document being encrypted.</li>
</ul>
</li>
<li>Let <em><strong>Y</strong></em> be {}, an empty set.</li>
<li>For each <code>xenc:EncryptedData</code> element <em>d</em> from
<em>D</em>:
<ol>
<li>Decrypt <em>d</em>, without regard for which, if any, of its
descendants are in <em>N</em>, and process it in accordance
with the value of its <code>Type</code> attribute, resulting in
a node-set <em>O<sub>d</sub></em>.
<ul>
<li>For example, processing of an
<code>xenc:EncryptedData</code> element with the
<code>Type</code> attribute whose value is <a
href="http://www.w3.org/2001/04/xmlenc#Element">&xenc;Element</a>
or <a
href="http://www.w3.org/2001/04/xmlenc#Content">&xenc;Content</a>
is specified in <a class="link-sec"
href="http://www.w3.org/Encryption/2001/Drafts/xmlenc-core/#sec-Decrypt-Imp">A
Decrypt Implementation</a> (section 4.3.1) of [<a
href="#XML-Encryption">XML-Encryption</a>], and the result
is a node-set.</li>
<li>If the <code>Type</code> attribute is absent, is not
known to the decryptor, or the result of its processing is
not a node-set, then the implementation MUST signal a
failure of the transform.</li>
<li>If decryption of any <code>xenc:EncryptedData</code>
element fails, then the implementation MUST signal a
failure of the transform.</li>
</ul>
</li>
<li class="">Replace <strong><em>Y</em></strong> with
<strong>Y</strong> ∪ {<em>O<sub>d</sub>}</em>.</li>
<li class="">If <em>O</em><sub><em>d</em></sub> contains
<code>xenc:EncryptedData</code> that are not in <em>E,</em>
replace <em><strong>Y</strong></em> with
<em><strong>Y</strong></em> ∪ <a
href="#func-decryptNodeSet"
class="link-def">decryptNodeSet(O<sub>d</sub>, E)</a>. This
recursively decrypts <a class="link-def"
href="http://www.w3.org/TR/xmlenc-core/#sec-eg-Super-Encryption">super-encrypted</a>
data within the replacement node-set.</li>
</ol>
</li>
</ol>
</dd>
</dl>
<h3><a id="sec-xml-creation" name="sec-xml-creation">3.2 Transform Creation
(Non-Normative)</a></h3>
<p>This specification does not mandate a mechanism for creating a
<code>ds:Transform</code> element in a [<a
href="#XML-Signature">XML-Signature</a>] transform sequence. However, the
following is one (non-normative) approach:</p>
<ol>
<li>Apply all the transforms being placed before this transform to a data
object being signed.</li>
<li>If the transform just before this transform outputs an octet stream,
convert it to a node-set as described in <a class="link-sec"
href="http://www.w3.org/TR/2002/REC-xmldsig-core-20020212/#sec-ReferenceProcessingModel">The
Reference Processing Model</a> [<a
href="#XML-Signature">XML-Signature</a>, section 4.3.3.2].</li>
<li>For each node in the node-set, if the node is an element node with the
type <code>xenc:EncryptedData</code>, create an <code>dcrpt:Except</code>
element referencing the node.</li>
<li>Create a <code>ds:Transform</code> element, including the algorithm
identifier of this transform and all the <code>dcrpt:Except</code>
elements created in Step 3.</li>
</ol>
<h3><a id="sec-xml-example" name="sec-xml-example">3.3 Example</a></h3>
<p>Suppose that a part of the following XML document (<code>[02-14]</code>)
is to be signed. Note that a few parts of the document
(<code>[05,11,12]</code>) are already encrypted prior to signature. Also
suppose that the signer anticipates that additional parts of the document
will be encrypted after signing.</p>
<pre class="xml-example"> [01] <Document>
[02] <ToBeSigned Id="tbs">
[03] <Part number="1">
[04] <Data>...</Data>
[05] <xenc:EncryptedData Id="#secret-1" .../>
[06] </Part>
[07] <Part number="2">
[08] <Data>...</Data>
[09] </Part>
[10] <Secrets>
[11] <xenc:EncryptedData .../>
[12] <xenc:EncryptedData .../>
[13] </Secrets>
[14] </ToBeSigned>
[15] </Document></pre>
<p>In order to let the recipient know the proper order of decryption and
signature verification, the signer includes the decryption transform
(<code>[a19-a22]</code>) in the signature. The <code>dcrpt:Except</code>
elements (<code>[a20,a21]</code>) identify parts of the document that are
already encrypted.</p>
<pre class="xml-example"> [a01] <Document>
[a02] <ToBeSigned Id="tbs">
[a03] <Part number="1">
[a04] <Data>...</Data>
[a05] <xenc:EncryptedData Id="#secret-1" .../>
[a06] </Part>
[a07] <Part number="2">
[a08] <Data>...</Data>
[a09] </Part>
[a10] <Secrets>
[a11] <xenc:EncryptedData .../>
[a12] <xenc:EncryptedData .../>
[a13] </Secrets>
[a14] </ToBeSigned>
[a15] <dsig:Signature ...>
[a16] ...
[a17] <dsig:Reference URI="#tbs">
[a18] <dsig:Transforms>
[a19] <dsig:Transform Algorithm="http://www.w3.org/2002/07/decrypt#XML">
[a20] <dcrpt:Except URI="#secret-1"/>
[a21] <dcrpt:Except URI="#xpointer(id('tbs')/Secrets/*)"/>
[a22] </dsig:Transform>
[a23] </dsig:Transforms>
[a24] ...
[a25] </dsig:Reference>
[a26] ...
[a27] </dsig:Signature>
[a28] </Document></pre>
<p>Consider that this document is subsequently encrypted by various
processes, resulting in the following:</p>
<pre class="xml-example"> [b01] <Document>
[b02] <ToBeSigned Id="tbs">
[b03] <xenc:EncryptedData Id="part-1" Type="&enc;Element" .../>
[b04] <xenc:EncryptedData Id="part-2" Type="&enc;Element" .../>
[b05] <Secrets>
[b06] <xenc:EncryptedData .../>
[b07] <xenc:EncryptedData .../>
[b08] </Secrets>
[b09] </ToBeSigned>
[b10] <dsig:Signature ...>
[b11] ...
[b12] <dsig:Reference URI="#tbs">
[b13] <dsig:Transforms>
[b14] <dsig:Transform Algorithm="http://www.w3.org/2002/07/decrypt#XML">
[b15] <dcrpt:Except URI="#secret-1"/>
[b16] <dcrpt:Except URI="#xpointer(id('tbs')/Secrets/*)"/>
[b17] </dsig:Transform>
[b18] </dsig:Transforms>
[b19] ...
[b20] </dsig:Reference>
[b21] ...
[b22] </dsig:Signature>
[b23] </Document></pre>
<p>Execution of the decryption transform will proceed as follows:</p>
<ol>
<li>The input to the transform, <em>N</em>, is a node-set containing the
<code>ToBeSigned</code> element and its children, less comments
(<code>[b02-b09]</code>). The parameter to the transform, <em>E</em>, is
a set containing the two exception URIs (<code>[b15,b16]</code>).</li>
<li>The first exception URI does not resolve in this document; the second
resolves to the two children of the <code>Secrets</code> element
(<code>[b06,b07]</code>).</li>
<li>As a result, <em>D</em> for <em>N</em> is a node-set consisting of the
two <code>xenc:EncryptedData</code> elements, <em>d<sub>part-1</sub></em>
(<code>[d03]</code>) and <em>d<sub>part-2</sub></em>
(<code>[d04]</code>). Each of these is decrypted, resulting in the
following node-sets for <em>O<sub>part-1</sub></em> and
<em>O<sub>part-2</sub></em>:
<pre class="xml-example"> [c01] <Part number="1">
[c02] <Data>...</Data>
[c03] <xenc:EncryptedData Id="#secret-1" .../>
[c04] </Part></pre>
<pre class="xml-example"> [d01] <Part number="2">
[d02] <xenc:EncryptedData Id="#data-2" Type="&enc;Element" .../>
[d03] </Part></pre>
</li>
<li>After this decryption stage, two new <code>xenc:EncryptedData</code>
elements (<code>[c03]</code> and <code>[d02]</code>) have been revealed.
However, the first matches an exception URI with a bare name and so is
not considered further; hence, <em>D</em> for <em>O<sub>part-1</sub></em>
is empty while <em>D</em> for <em>O<sub>part-2</sub></em> contains just
the <code>xenc:EncryptedData</code> element <em>d<sub>data-2</sub></em>
(<code>[d02]</code>). This is decrypted again, resulting in the following
node-set <em>O<sub>data-2</sub></em>:
<pre class="xml-example"> [e01] <Data>...</Data></pre>
</li>
<li>No new <code>xenc:EncryptedData</code> element are revealed, so
<em>D</em> for <em>O<sub>data-2</sub></em> is empty and processing falls
through to canonicalization.</li>
<li>The canonicalization-with-replace operation canonicalizes the node-set
<em>N</em>; but, in place of any <code>xenc:EncryptedData</code> elements
that were decrypted, it canonicalizes the replacement node-sets.
Similarly, it also replaces any decrypted <code>xenc:EncryptedData</code>
elements in the replacement node-sets. Further, canonicalization of any
replacement node-sets is augmented such that <code>xmlns=""</code> is
emitted on any apex elements that have no namespace node declaring a
value for the default namespace. The resulting canonicalized data are the
following:
<pre class="xml-example"> [f01] <Document>
[f02] <ToBeSigned Id="tbs">
[f03] <Part xmlns="" number="1">
[f04] <Data>...</Data>
[f05] <xenc:EncryptedData Id="#secret-1" .../>
[f06] </Part>
[f07] <Part xmlns="" number="2">
[f08] <Data xmlns="">...</Data>
[f09] </Part>
[f10] <Secrets>
[f11] <xenc:EncryptedData .../>
[f12] <xenc:EncryptedData .../>
[f13] </Secrets>
[f14] </ToBeSigned>
[f15] </Document></pre>
</li>
<li>This octet stream is then parsed and returned as the output of the
transform.</li>
</ol>
<h3><a id="sec-xml-restrictions" name="sec-xml-restrictions">3.4 Restrictions
and Limitations</a></h3>
<h4>3.4.1 <a name="sec-well-formed" id="sec-well-formed">The Constraint of
Well-Formed Data</a></h4>
<p>As specified in step 2 of the <a href="#func-decryptXML"
class="link-def">decryptXML()</a> function, the octet stream resulting from
canonicalization-with-replacement MUST be well-formed. Typically this will be
characterized by a <a href="#def-single-rooted"
class="link-def">single-rooted</a> input node-set, where a node-set is said
to be <a name="def-single-rooted" id="def-single-rooted"
class="link-def">single-rooted</a> if and only if all of its member nodes are
either (1) the first node in the node-set in the document order, (2) a
descendant node of the first node, or (3) an attribute node or a namespace
node of another node in the node-set. Additionally, if the input node-set
has, at its top level, an <code>xenc:EncryptedData</code> element being
decrypted, then this SHOULD correspond to an encrypted <a
href="#def-single-rooted" class="link-def">single-rooted</a> node-set.
However, this need not be the case: after decryption, multiple top-level
nodes may be well-formed if they consist of white space, comments, processing
instructions and a single element. No special processing is required to test
for this condition because ill-formed data will result in a parsing error.</p>
<h4>3.4.2 <a name="sec-interiting-xml-attributes"
id="sec-interiting-xml-attributes">Inheriting Attributes from the XML
Namespace</a></h4>
<p>As specified in step 2 of the <a href="#func-decryptXML"
class="link-def">decryptXML()</a> function, the canonicalization with
replacement step requires XML namespace attribute inheritance. One of the
features of the Canonical XML [<a href="#XML-C14N">XML-C14N</a>] algorithm,
which is automatically applied by the decryption transform, is that all
ancestral attributes from the XML namespace (e.g., <code>xml:lang</code>) are
inherited by any element whose parent node is not in the canonicalized
node-set. The inheritance in step 2 ensures these attributes are preserved
during decryption and replacement. For example, consider the following signed
document:</p>
<pre class="xml-example"> [01] <Document xml:lang="ga">
[02] <ToBeSigned Id="tbs">
[03] ...
[04] </ToBeSigned>
[05] <dsig:Signature ...>
[06] ...
[07] <dsig:Reference URI="#tbs">
[08] <dsig:Transforms>
[09] <dsig:Transform Algorithm="http://www.w3.org/2001/04/decrypt#XML" />
[10] </dsig:Transforms>
[11] ...
[12] </dsig:Reference>
[13] ...
[14] </dsig:Signature>
[15] </Document></pre>
<p>The canonical form of the <code>ToBeSigned</code> element (the target of
the <code>#tbs</code> reference, <code>[02-04]</code>) is the following
(<code>[a01-a03]</code>):</p>
<pre class="xml-example"> [a01] <ToBeSigned Id="tbs" xml:lang="ga">
[a02] ...
[a03] </ToBeSigned></pre>
<p>Consider, however, if this top-level signed element is subsequently
encrypted using an XML serialization algorithm that does not include
inherited attributes from the XML namespace (<code>[b02-b04]</code>):</p>
<pre class="xml-example"> [b01] <Document xml:lang="ga">
[b02] <xenc:EncryptedData Id="tbs" ...>
[b03] ...
[b04] </xenc:EncryptedData>
[b05] <dsig:Signature ...>
[b06] ...</pre>
<p>Upon decryption, the document that would be parsed to form the replacement
node set would be:</p>
<pre class="xml-example"> [c01] <dummy><ToBeSigned xmlns="" Id="tbs">
[c02] ...
[c03] </ToBeSigned></dummy></pre>
<p>Because this fragment is no longer in its original ancestral context, the
canonical form of the resulting <code>ToBeSigned</code> element
(<code>[d01-d03]</code>) would not match that which was originally signed and
the signature verification operation would fail.</p>
<pre class="xml-example"> [d01] <ToBeSigned Id="tbs">
[d02] ...
[d03] </ToBeSigned></pre>
<p class="">As shown, this failure often occurs when a directly-signed
element was encrypted. The remedy is to augment the internal canonicalization
of the canonicalization-with-replacement step of <a href="#func-decryptXML"
class="link-def">decryptXML()</a>: node-sets that are replacing elements
whose parent node is not part of the original signed node-set are
canonicalized with attributes from the <a
href="http://www.w3.org/XML/1998/namespace">XML namespace</a> that would have
been inherited by the unencrypted element in its original document.</p>
<p>While this change is made to maintain the validity of signatures using [<a
href="#XML-C14N">XML-C14N</a>], it does not interfere with the validity of
signatures using [<a href="#ref-XML-exc-C14N">XML-exc-C14N</a>]. This
transform, and the inclusion of attributes from the <a
href="http://www.w3.org/XML/1998/namespace">XML namespace</a> (i.e., 'xml:'),
is performed during signature validation <em>and</em> generation.
Consequently, the exclusively canonicalized form of the element will maintain
these 'xml:' attributes — even if the exclusively canonicalized form of
the element would not have had them without this transform.</p>
<h4>3.4.3 <a name="sec-references-structural-changes"
id="sec-references-structural-changes">References and Structural
Changes</a></h4>
<p>URIs with a full XPointer or child sequence (whether in exceptions,
encrypted data or elsewhere) may fail to resolve if encryption results in a
structural change to part of the document relied upon by the reference. For
example, the URI <code>#xpointer(/ToBeSigned/*[3])</code> will no longer
function if the first two children of the <code>ToBeSigned</code> element are
encrypted together. Care SHOULD be taken when employing such references in
association with the decryption transform.</p>
<h4>3.4.4 <a name="sec-references-super-encryption"
id="sec-references-super-encryption">References and Super Encryption</a></h4>
<p>Super-encryption may cause problems if a super-encrypted
<code>xenc:EncryptedData</code> element uses same-document references, or if
an exceptional super-encrypted <code>xenc:EncryptedData</code> element is
referenced by a non-bare name XPointer URI. Super-encryption of signed data
under these conditions is NOT RECOMMENDED: super-encryption is precluded, or
such references should not be used.</p>
<p>As an example of where super-encryption over same-document references may
cause problems, consider the following signed document
(<code>[02-05]</code>):</p>
<pre class="xml-example"> [01] <Document>
[02] <ToBeSigned Id="tbs">
[03] <Data>...</Data>
[04] ...
[05] </ToBeSigned>
[06] <dsig:Signature ...>
[07] ...
[08] <dsig:Reference URI="#tbs">
[09] <dsig:Transforms>
[10] <dsig:Transform Algorithm="http://www.w3.org/2002/07/decrypt#XML" />
[11] </dsig:Transforms>
[12] ...
[13] </dsig:Reference>
[14] ...
[15] </dsig:Signature>
[16] ...
[17] </Document></pre>
<p>If the <code>Data</code> element (<code>[03]</code>) is subsequently
encrypted, along with other data elsewhere in the document, the new
<code>xenc:EncryptedData</code> element could use a same-document retrieval
method to identify shared keying information (<code>[a06]</code>):</p>
<pre class="xml-example"> [a01] <Document>
[a02] <ToBeSigned Id="tbs">
[a03] <xenc:EncryptedData ...>
[a04] ...
[a05] <dsig:KeyInfo ...>
[a06] <dsig:RetrievalMethod URI="#key-info"
Type="http://www.w3.org/2001/04/xmlenc#EncryptedKey" .../>
[a07] </dsig:KeyInfo>
[a08] ...
[a09] </xenc:EncryptedData>
[a10] ...
[a11] </ToBeSigned>
[a12] <xenc:EncryptedKey Id="key-info" .../>
[a13] <dsig:Signature ...>
[a14] ...
[a15] <dsig:Reference URI="#tbs">
[a16] <dsig:Transforms>
[a17] <dsig:Transform
Algorithm="http://www.w3.org/2002/07/decrypt#XML"/>
[a18] </dsig:Transforms>
[a19] ...
[a20] </dsig:Reference>
[a21] ...
[a22] </dsig:Signature>
[a23] </Document></pre>
<p>If this new <code>xenc:EncryptedData</code> is subsequently
super-encrypted (<code>[b02]</code>), the decryption transform will fail:
When the inner retrieval method is processed, it will be dereferenced within
the context of a new decrypted document that does not contain the referenced
keying information.</p>
<pre class="xml-example"> [b01] <Document>
[b02] <xenc:EncryptedData Id="tbs" .../>
[b03] <xenc:EncryptedKey Id="key-info" .../>
[b04] <dsig:Signature ...>
[b05] ...
[b06] <dsig:Reference URI="#tbs">
[b07] <dsig:Transforms>
[b08] <dsig:Transform Algorithm="http://www.w3.org/2002/07/decrypt#XML" />
[b09] </dsig:Transforms>
[b10] ...
[b11] </dsig:Reference>
[b12] ...
[b13] </dsig:Signature>
[b14] </Document></pre>
<p class="">Upon decryption, the document that would be parsed to form the
replacement node set would be:</p>
<pre class="xml-example"> [d01] <dummy><ToBeSigned Id="tbs">
[d02] <xenc:EncryptedData ...>
[d03] ...
[d04] <dsig:KeyInfo ...>
[d05] <dsig:RetrievalMethod URI="#key-info"
Type="http://www.w3.org/2001/04/xmlenc#EncryptedKey"
.../>
[d06] </dsig:KeyInfo>
[d07] ...
[d08] </xenc:EncryptedData>
[d09] ...
[d10] </ToBeSigned></dummy></pre>
<h4>3.4.5 <a name="sec-References-Non-Barename"
id="sec-References-Non-Barename">References Using Non-barename
XPointers</a></h4>
<p>As an example of where non-barename XPointers may fail, consider the
following signed document (<code>[02-07]</code>) which uses a full XPointer
(<code>[13]</code>) to identify data that was already encrypted when the
signature was generated (<code>[05]</code>), and so should not be processed
by the decryption transform:</p>
<pre class="xml-example"> [01] <Document>
[02] <ToBeSigned Id="tbs">
[03] <Data>...</Data>
[04] <Secrets>
[05] <xenc:EncryptedData Id="#secret-1" .../>
[06] </Secrets>
[07] </ToBeSigned>
[08] <dsig:Signature ...>
[09] ...
[10] <dsig:Reference URI="#tbs">
[11] <dsig:Transforms>
[12] <dsig:Transform Algorithm="http://www.w3.org/2002/07/decrypt#XML">
[13] <dcrpt:Except URI="#xpointer(/Document/ToBeSigned/Secrets/*)"/>
[14] </dsig:Transform>
[15] </dsig:Transforms>
[16] ...
[17] </dsig:Reference>
[18] ...
[19] </dsig:Signature>
[20] </Document></pre>
<p>If the <code>Secrets</code> element is subsequently encrypted, as shown in
the following example (<code>[a04]</code>); i.e., the existing
<code>xenc:EncryptedData</code> is super-encrypted, then the XPointer
exception URI will no longer resolve. As a result, the decryption transform
will attempt to perform super-decryption of the inner
<code>xenc:EncryptedData</code> element and processing will fail.</p>
<pre class="xml-example"> [a01] <Document>
[a02] <ToBeSigned Id="tbs">
[a03] <Data>...</Data>
[a04] <xenc:EncryptedData Id="#secrets" .../>
[a05] </ToBeSigned>
[a06] <dsig:Signature ...>
[a07] ...
[a08] <dsig:Reference URI="#tbs">
[a09] <dsig:Transforms>
[a10] <dsig:Transform Algorithm="http://www.w3.org/2002/07/decrypt#XML">
[a11] <dcrpt:Except URI="#xpointer(/Document/ToBeSigned/Secrets/*)"/>
[a12] </dsig:Transform>
[a13] </dsig:Transforms>
[a14] ...
[a15] </dsig:Reference>
[a16] ...
[a17] </dsig:Signature>
[a18] </Document></pre>
<p>The reason that the full XPointer cannot be processed is that the document
which results from decrypting the outer <code>xenc:EncryptedData</code>
element will have the following form (<code>[b01-b05]</code>):</p>
<pre class="xml-example"> [b01] <dummy>
[b02] <Secrets>
[b03] <xenc:EncryptedData Id="#secret-1" .../>
[b04] </Secrets>
[b05] </dummy></pre>
<h4>3.4.6 <a name="sec-interactions" id="sec-interactions">Interactions with
Other Filters</a></h4>
<p>The XML signature reference processing model allows transforms to remove
parts of a node-set undergoing transformation. It is RECOMMENDED that any
such transforms appear <em>before</em> the decryption transform. Otherwise,
encrypted data that appear in parts of the document that are to be removed
and cannot be processed by the recipient will cause the decryption transform
to fail.</p>
<p>For example, consider the following document which contains parts that are
to be signed for receipt by different individuals. The XPath transform
<code>ancestor-or-self::*[@For="job"]</code> selects only the subset
<code>[02-04]</code>. If this XPath transform occurs after the decryption
transform, and another part of the document contains encrypted data (e.g.,
<code>[07]</code>), whether created before or after the signature, then the
decryption transform may fail to decrypt them and processing will fail. If
the XPath transform occurs first, then the encrypted data will not be
considered by the decryption transform.</p>
<pre class="xml-example"> [01] <Document>
[02] <ToBeSigned For="job">
[03] ...
[04] </ToBeSigned>
[05] <ToBeSigned For="bob">
[06] ...
[07] <xenc:EncryptedData .../>
[08] </ToBeSigned>
[09] </Document></pre>
<h4>3.4.7 <a name="sec-encryptedkey" id="sec-encryptedkey">EncryptedKey is
Out of Scope</a></h4>
<p>This transform does not include any <code>xenc:EncryptedKey</code>
elements within its scope of specifically indicating elements, and their
exceptions, that should be decrypted. An <code>xenc:EncryptedKey</code>
element that exists as a descendent of <code>xenc:EncryptedData</code>
element might be decrypted and will be removed from the original document as
part of processing its ancestor <code>xenc:EncryptedData</code> element with
the transform. However, a lone <code>xenc:EncryptedKey</code> element will be
processed like any other data: a signature is presumed to be over that actual
element and not its decrypted form. Consequently, we RECOMMEND that
<code>xenc:EncryptedKey</code> elements always be children of an
<code>xenc:EncryptedData</code> element's <code>ds:KeyInfo</code> element
when they fall within the scope of a signature.</p>
<h2><a id="sec-binary-mode" name="sec-binary-mode"></a>4 Binary Mode
Decryption Transform</h2>
<dl>
<dt>Identifier:</dt>
<dd><a name="Binary" id="Binary"
href="http://www.w3.org/2002/07/decrypt#Binary">http://www.w3.org/2002/07/decrypt#Binary</a></dd>
</dl>
<p>This mode of the transform requires an XPath node-set [<a
href="#XPath">XPath</a>] for input. If an octet stream is given as input, it
MUST be converted to a node-set as described in <a class="link-sec"
href="http://www.w3.org/TR/2002/REC-xmldsig-core-20020212/#sec-ReferenceProcessingModel">The
Reference Processing Model</a> (section 4.3.3.2) of the XML Signature
specification [<a href="#XML-Signature">XML-Signature</a>]. The transform
decrypts all the <code>xenc:EncryptedData</code> elements except for those
specified by <code>dcrpt:Except</code> elements. The output of the transform
is an octet-stream.</p>
<h3><a id="sec-binary-processing" name="sec-binary-processing">4.1 Processing
Rules</a></h3>
<p>The binary mode of operation is intended for use when generating a
signature over binary data that are to be encrypted for transmission to the
recipient. Use of this mode of the transform allows a signature to be
computed over the plaintext form of the data, rather than the opaque
ciphertext. This further allows the ciphertext to be stored elsewhere,
identified by a cipher reference, without the need for the signature to take
this into account.</p>
<p>This section describes the processing rules of the binary mode of this
transform. The inputs and outputs of the transform are those of the <a
href="#func-decryptBinary" class="link-def">decryptBinary()</a> function.</p>
<dl>
<dt><a name="func-decryptBinary" id="func-decryptBinary" class="link-def">O
= decryptBinary(N, E)</a></dt>
<dd><p>where <em>N</em> is a node-set and <em>E</em> is a set of
exception URIs held by <code>URI</code> attributes of
<code>dcrpt:Except</code> elements. <em>O</em> is an octet stream,
computed as follows:</p>
<ol>
<li>Let <em>D</em> be a node-set containing all element nodes in
<em>N</em> with the type <code>xenc:EncryptedData</code> that are
not identified by any exception URI in <em>E</em>.
<ul>
<li>When dereferencing an exception URI, the implementation MUST
behave as if the document node of the input node-set is used to
initialize the XPointer evaluation context [<a
href="#XPointer">XPointer</a>], even if the node is not part of
the node-set. Unlike XML Signature [<a
href="#XML-Signature">XML-Signature</a>], the exception URI may
be evaluated against a different document from the signature
document. If the input is a different document then, as per
XPointer [<a href="#XPointer">XPointer</a>], use of the <a
href="http://www.w3.org/TR/2001/CR-xptr-20010911/#N3568"
class="link-def">here()</a> function is an error.</li>
<li>If an exception URI fails to dereference any nodes, then the
resulting error MUST be ignored; it may be the result of part
of the input document being encrypted.</li>
</ul>
</li>
<li>For each <code>xenc:EncryptedData</code> element <em>d</em> from
<em>D</em>, decrypt <em>d</em>, without regard for which, if any,
of its descendants are in <em>N</em>, and without consideration of
its <code>Type</code> attribute, resulting in an octet-stream
<em>O<sub>d</sub></em>.</li>
<li>Let <em>O</em>, the output of this transform, be the
concatenation of the octet streams <em>O<sub>d</sub></em>, ordered
in the document order of <em>d</em>.</li>
<li>If there are no <code>EncryptedData</code> elements in
<em>D</em>, then the result is a zero-length octet stream.</li>
</ol>
</dd>
</dl>
<h3><a id="sec-binary-example" name="sec-binary-example">4.2 Example</a></h3>
<p>Consider the following example signed document:</p>
<pre class="xml-example"> <Document>
<xenc:EncryptedData Id="image" MimeType="image/png" ...>
...
<!-- image data -->
...
</xenc:EncryptedData>
<dsig:Signature ...>
...
<dsig:Reference URI="#image">
<dsig:Transforms>
<dsig:Transform Algorithm="http://www.w3.org/2002/07/decrypt#Binary" />
</dsig:Transforms>
...
</dsig:Reference>
...
</dsig:Signature>
</Document></pre>
<p>Much of the encrypted data and signature are elided; the implication of
the comment in the encrypted data is that the encrypted content is a binary
image.</p>
<p>Execution of the decryption transform will proceed as follows:</p>
<ul>
<li>The input to the transform, <em>N</em>, is a node set containing the
<code>EncryptedData</code> element and its children, less comments. The
parameter to the transform, <em>E</em>, is empty.</li>
<li>As a result, <em>D</em> is a node set consisting of the one
<code>EncryptedData</code> element, <em>d<sub>image</sub></em>. This is
decrypted, resulting in an octet string <em>O<sub>image</sub></em>
containing the plaintext of the binary image.</li>
<li>There are no other data to decrypt, so the result of this transform is
the plaintext obtained in the previous step. This will be used directly
as input to the digest algorithm.</li>
</ul>
<h2><a id="sec-security" name="sec-security">5 Security
Considerations</a></h2>
<h3><a id="sec-security-reveal" name="sec-security-reveal">5.1 Signatures
Over Encrypted Data May Reveal Information</a></h3>
<p>When this algorithm is used to facilitate subsequent encryption of data
already signed, the digest value of the signed resource still appears in
clear text in a <code>ds:Reference</code> element. As noted by Hal Finney in
[<a href="#Finney">Finney</a>], such a signature may reveal information (via
the digest value) over encrypted data that increases the encryption's
vulnerability to plain-text-guessing attacks. This consideration is out of
scope of this document and (if relevant) should be addressed by applications.
For example, as proposed by Amir Herzberg in [<a
href="#Herzberg">Herzberg</a>], one may include a random 'salt' in a resource
being signed to increase its entropy.</p>
<p>Another approach is that when a signature referent is encrypted, one may
also encrypt the signature (or at least the <code>ds:DigestValue</code>
elements). As noted by Joseph Reagle in [<a href="#Reagle">Reagle</a>], this
latter solution works only if signature and encryption are known to each
other. For example, the signature may not be known of because it is detached.
Or, it may be already encrypted! Consider, Alice encrypts element A and the
signature over the parent of A. Bob encrypts element B (sibling of A) but not
the signature since he doesn't know about it. Alice then decrypts A and its
signature, which may provide information to a subsequent plain text attack on
the encrypted B.</p>
<h3><a id="sec-sign-what-you-see" name="sec-sign-what-you-see">5.2 "Sign What
You See"</a></h3>
<p>This specification serves scenarios in which a person might sign encrypted
data. Because XML Signature [<a href="#XML-Signature">XML-Signature</a>] has
only a simple semantic whereby a key is associated with some data — and
nothing more — the signing of encrypted data is a legitimate process.
For example, someone might run a content-neutral time stamp service that will
sign any data sent to it with its time-stamping key under the semantic, "I
received this on $date $time." However, applications often explicitly or
implicitly associate more substantive semantics (e.g., authorizes, agrees,
authors) with a signature. No one should be asked to apply a signature and
its semantic to data he or she did not see. Just as the principles of <a
class="link-sec"
href="http://www.w3.org/TR/2001/PR-xmldsig-core-20010820/#sec-Seen">Only What
is 'Seen' Should be Signed</a> and <a class="link-sec"
href="http://www.w3.org/TR/2001/PR-xmldsig-core-20010820/#sec-See">'See' What
is Signed</a> are important for understanding the import of an XML Signature,
they are doubly important when semantics are associated with that signature:
one MUST NOT infer that a signature over encrypted data is also a signature
over its plain text form, nor that the meaning of that signature over the
encrypted data also applies to the plain text. If one wishes to sign the
plain text form of data which is later encrypted, use the transform specified
in this document!</p>
<h2><a id="sec-references" name="sec-references">6 References</a></h2>
<dl>
<dt><a id="Finney" name="Finney">Finney</a></dt>
<dd><a
href="http://lists.w3.org/Archives/Public/xml-encryption/2000Nov/0064">Re:
Combining signing and encrypting</a>. H. Finney. XML Encryption mailing
list, 2000.</dd>
<dd><a
href="http://lists.w3.org/Archives/Public/xml-encryption/2000Nov/0064">http://lists.w3.org/Archives/Public/xml-encryption/2000Nov/0064</a></dd>
<dt><a id="Herzberg" name="Herzberg">Herzberg</a></dt>
<dd><a
href="http://lists.w3.org/Archives/Public/xml-encryption/2001Mar/0025">Signing
encrypted data</a>. A. Herzberg. XML Encryption mailing list, 2001.</dd>
<dd><a
href="http://lists.w3.org/Archives/Public/xml-encryption/2001Mar/0025">http://lists.w3.org/Archives/Public/xml-encryption/2001Mar/0025</a></dd>
<dt><a id="Keywords" name="Keywords">Keywords</a></dt>
<dd><a href="http://www.ietf.org/rfc/rfc2119.txt">RFC 2119: Key words for
use in RFCs to Indicate Requirement Levels</a>. S. Bradner. Best
Current Practices, 1997.</dd>
<dd><a
href="http://www.ietf.org/rfc/rfc2119.txt">http://www.ietf.org/rfc/rfc2119.txt</a></dd>
<dt><a id="Reagle" name="Reagle">Reagle</a></dt>
<dd><a
href="http://lists.w3.org/Archives/Public/xml-encryption/2001Jan/0100">Re:
Signing and Encryption</a>. J. Reagle. XML Encryption mailing list,
2001.</dd>
<dd><a
href="http://lists.w3.org/Archives/Public/xml-encryption/2001Jan/0100">http://lists.w3.org/Archives/Public/xml-encryption/2001Jan/0100</a></dd>
<dt><a id="Solo" name="Solo">Solo</a></dt>
<dd><a
href="http://lists.w3.org/Archives/Public/xml-encryption/2000Nov/0058">Combining
signing and encrypting</a>. D. Solo. XML Encryption mailing list,
2000.</dd>
<dd><a
href="http://lists.w3.org/Archives/Public/xml-encryption/2000Nov/0058">http://lists.w3.org/Archives/Public/xml-encryption/2000Nov/0058</a></dd>
<dt><a id="URI" name="URI">URI</a></dt>
<dd><a href="http://www.ietf.org/rfc/rfc2396.txt">RFC 2396: Uniform
Resource Identifiers (URI): Generic Syntax</a>. T. Berners-Lee, R.
Fielding, and L. Masinter. Standards Track, 1998.</dd>
<dd><a
href="http://www.ietf.org/rfc/rfc2396.txt">http://www.ietf.org/rfc/rfc2396.txt</a></dd>
<dt><a id="ref-XML" name="ref-XML">XML</a></dt>
<dd><a href="http://www.w3.org/TR/2000/REC-xml-20001006">Extensible
Markup Language (XML) 1.0 (Second Edition)</a>. T. Bray, J. Paoli, C.
M. Sperberg-McQueen, and E. Maler. W3C Recommendation, 2000.</dd>
<dd><a
href="http://www.w3.org/TR/2000/REC-xml-20001006">http://www.w3.org/TR/2000/REC-xml-20001006</a></dd>
<dt><a id="XML-C14N" name="XML-C14N">XML-C14N</a></dt>
<dd><a href="http://www.w3.org/TR/2001/REC-xml-c14n-20010315">Canonical
XML Version 1.0</a>. J. Boyer. W3C Recommendation, 2001.</dd>
<dd><a
href="http://www.w3.org/TR/2001/REC-xml-c14n-20010315">http://www.w3.org/TR/2001/REC-xml-c14n-20010315</a></dd>
<dt><a name="ref-XML-exc-C14N" id="ref-XML-exc-C14N">XML-exc-C14N</a></dt>
<dd><a
href="http://www.w3.org/TR/2002/REC-xml-exc-c14n-20020718/">Exclusive
XML Canonicalization</a>. J. Boyer, D. Eastlake, and J. Reagle. W3C
Recommendation, 2002.</dd>
<dd><a
href="http://www.w3.org/TR/2002/REC-xml-exc-c14n-20020718/">http://www.w3.org/TR/2002/REC-xml-exc-c14n-20020718/</a></dd>
<dt><a id="XML-Encryption" name="XML-Encryption">XML-Encryption</a></dt>
<dd><a href="http://www.w3.org/TR/2002/REC-xmlenc-core-20021210/">XML
Encryption Syntax and Processing</a>. D. Eastlake and J. Reagle. W3C
Recommendation, 2002.</dd>
<dd><a
href="http://www.w3.org/TR/2002/REC-xmlenc-core-20021210/">http://www.w3.org/TR/2002/REC-xmlenc-core-20021210/</a></dd>
<dt><a id="XML-Schema" name="XML-Schema">XML-Schema</a></dt>
<dd><a href="http://www.w3.org/TR/2001/REC-xmlschema-1-20010502/">XML
Schema Part 1: Structures</a>. H. Thompson, D. Beech, M. Maloney, and
N. Mendelsohn. W3C Recommendation, 2001.</dd>
<dd><a
href="http://www.w3.org/TR/2001/REC-xmlschema-1-20010502/">http://www.w3.org/TR/2001/REC-xmlschema-1-20010502/</a></dd>
<dd><a href="http://www.w3.org/TR/2001/REC-xmlschema-2-20010502/">XML
Schema Part 2: Datatypes</a>. P. Biron and A. Malhotra. W3C
Recommendation, 2001.</dd>
<dd><a
href="http://www.w3.org/TR/2001/REC-xmlschema-2-20010502/">http://www.w3.org/TR/2001/REC-xmlschema-2-20010502/</a></dd>
<dt><a id="XML-Signature" name="XML-Signature">XML-Signature</a></dt>
<dd><a
href="http://www.w3.org/TR/2002/REC-xmldsig-core-20020212/">XML-Signature
Syntax and Processing</a>. D. Eastlake, J. Reagle, and D. Solo. W3C
Recommendation, 2002.</dd>
<dd><a
href="http://www.w3.org/TR/2002/REC-xmldsig-core-20020212/">http://www.w3.org/TR/2002/REC-xmldsig-core-20020212/</a></dd>
<dt><a id="XPath" name="XPath">XPath</a></dt>
<dd><a href="http://www.w3.org/TR/1999/REC-xpath-19991116">XML Path
Language (XPath) Version 1.0</a>. J. Clark and S. DeRose. W3C
Recommendation, 1999.</dd>
<dd><a
href="http://www.w3.org/TR/1999/REC-xpath-19991116">http://www.w3.org/TR/1999/REC-xpath-19991116</a></dd>
<dt><a id="XPointer" name="XPointer">XPointer</a></dt>
<dd><a href="http://www.w3.org/TR/2001/CR-xptr-20010911/">XML Pointer
Language (XPointer)</a>. S. DeRose, R. Daniel, and E. Maler. W3C
Candidate Recommendation, 2001.</dd>
<dd><a
href="http://www.w3.org/TR/2001/CR-xptr-20010911/">http://www.w3.org/TR/2001/CR-xptr-20010911/</a></dd>
</dl>
</body>
</html>