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 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264
|
<?xml version="1.0" encoding="utf-8"?>
<Type Name="EncryptedXml" FullName="System.Security.Cryptography.Xml.EncryptedXml">
<TypeSignature Language="C#" Value="public class EncryptedXml" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit EncryptedXml extends System.Object" />
<AssemblyInfo>
<AssemblyName>System.Security</AssemblyName>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Object</BaseTypeName>
</Base>
<Interfaces />
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="T:System.Security.Cryptography.Xml.EncryptedXml" /> class is the main class used for XML encryption in the .NET Framework. XML Encryption is a standards-based, interoperable way to encrypt all or part of an XML document or any arbitrary data. The .NET Framework XML encryption classes implement the World Wide Web Consortium (W3C) specification for XML encryption located at http://www.w3.org/TR/xmlenc-core/.</para>
<para>Use the <see cref="T:System.Security.Cryptography.Xml.EncryptedXml" /> class whenever you need to share encrypted XML data between applications or organizations in a standard way. Any data encrypted using this class can be decrypted by any implementation of the W3C specification for XML encryption. </para>
<para>XML encryption replaces any plain text XML element or document with the <EncryptedData> element, which contains an encrypted (or cipher text) representation of plain text XML or any arbitrary data. The <EncryptedData> element can optionally contain information about where to find a key that will decrypt the cipher text, and which cryptographic algorithm was used to encrypt the plain text.</para>
<para>The <EncryptedKey> element is similar to the <EncryptedData> element in style and usage, except that it allows you to encrypt a key that will decrypt the value of the <EncryptedData> element. Note that the <EncryptedKey> element and the <EncryptedData> element will never contain an unencrypted key.</para>
<para>Use one of the following methods to exchange key information: </para>
<list type="bullet">
<item>
<para>Do not include any key information. If you choose this option, both parties must agree on an algorithm and key before they exchange encrypted data.</para>
</item>
<item>
<para>Include the location of the key in the Uniform Resource Identifier (URI) attribute of the <RetrievalMethod> element. Both parties must agree on the key location ahead of time and this location must be kept secret. </para>
</item>
<item>
<para>Include a string name that maps to a key in the <KeyName> element. Both parties must agree on the key name mapping before they exchange encrypted data and this mapping must be kept secret.</para>
</item>
<item>
<para>Include an encrypted key in the <EncryptedKey> element. Both parties must agree on the key that decrypts the encrypted key before they exchange encrypted data. You can optionally include a name or location of the key that will decrypt the key in the <EncryptedKey> element.</para>
</item>
</list>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Represents the process model for implementing XML encryption.</para>
</summary>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public EncryptedXml ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor() cil managed" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters />
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>This is the default constructor for the main class for XML encryption in the .NET Framework.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Initializes a new instance of the <see cref="T:System.Security.Cryptography.Xml.EncryptedXml" /> class.</para>
</summary>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public EncryptedXml (System.Xml.XmlDocument document);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class System.Xml.XmlDocument document) cil managed" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="document" Type="System.Xml.XmlDocument" />
</Parameters>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Use this constructor to create an <see cref="T:System.Security.Cryptography.Xml.EncryptedXml" /> object when you want to specify the XML document to encrypt. The <paramref name="document" /> parameter comprises the XML elements that later form the encrypted XML.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Initializes a new instance of the <see cref="T:System.Security.Cryptography.Xml.EncryptedXml" /> class using the specified XML document.</para>
</summary>
<param name="document">
<attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Xml.XmlDocument" /> object used to initialize the <see cref="T:System.Security.Cryptography.Xml.EncryptedXml" /> object.</param>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public EncryptedXml (System.Xml.XmlDocument document, System.Security.Policy.Evidence evidence);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class System.Xml.XmlDocument document, class System.Security.Policy.Evidence evidence) cil managed" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="document" Type="System.Xml.XmlDocument" />
<Parameter Name="evidence" Type="System.Security.Policy.Evidence" />
</Parameters>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Use this constructor to create an <see cref="T:System.Security.Cryptography.Xml.EncryptedXml" /> object when you want to specify the XML document to encrypt and provide security evidence. The <paramref name="document" /> parameter comprises the XML elements that later form the encrypted XML.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Initializes a new instance of the <see cref="T:System.Security.Cryptography.Xml.EncryptedXml" /> class using the specified XML document and evidence.</para>
</summary>
<param name="document">
<attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Xml.XmlDocument" /> object used to initialize the <see cref="T:System.Security.Cryptography.Xml.EncryptedXml" /> object.</param>
<param name="evidence">
<attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Security.Policy.Evidence" /> object associated with the <see cref="T:System.Xml.XmlDocument" /> object.</param>
</Docs>
</Member>
<Member MemberName="AddKeyNameMapping">
<MemberSignature Language="C#" Value="public void AddKeyNameMapping (string keyName, object keyObject);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void AddKeyNameMapping(string keyName, object keyObject) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="keyName" Type="System.String" />
<Parameter Name="keyObject" Type="System.Object" />
</Parameters>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Security.Cryptography.Xml.EncryptedXml.AddKeyNameMapping(System.String,System.Object)" /> method allows you to map a symmetric key or an asymmetric key to a string name. This method adds the values of the <paramref name="keyName" /> and <paramref name="keyObject" /> parameters to a table of valid key name mappings.</para>
<para>Use the <see cref="M:System.Security.Cryptography.Xml.EncryptedXml.ClearKeyNameMappings" /> method to clear the key name mappings table.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Defines a mapping between a key name and a symmetric key or an asymmetric key.</para>
</summary>
<param name="keyName">
<attribution license="cc4" from="Microsoft" modified="false" />The name to map to <paramref name="keyObject" />.</param>
<param name="keyObject">
<attribution license="cc4" from="Microsoft" modified="false" />The symmetric key to map to <paramref name="keyName" />.</param>
</Docs>
</Member>
<Member MemberName="ClearKeyNameMappings">
<MemberSignature Language="C#" Value="public void ClearKeyNameMappings ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void ClearKeyNameMappings() cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Use this method to clear all key name mapping that you have set using the <see cref="M:System.Security.Cryptography.Xml.EncryptedXml.AddKeyNameMapping(System.String,System.Object)" /> method.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Resets all key name mapping.</para>
</summary>
</Docs>
</Member>
<Member MemberName="DecryptData">
<MemberSignature Language="C#" Value="public byte[] DecryptData (System.Security.Cryptography.Xml.EncryptedData encryptedData, System.Security.Cryptography.SymmetricAlgorithm symAlg);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance unsigned int8[] DecryptData(class System.Security.Cryptography.Xml.EncryptedData encryptedData, class System.Security.Cryptography.SymmetricAlgorithm symAlg) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Byte[]</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="encryptedData" Type="System.Security.Cryptography.Xml.EncryptedData" />
<Parameter Name="symAlg" Type="System.Security.Cryptography.SymmetricAlgorithm" />
</Parameters>
<Docs>
<param name="symAlg">To be added.</param>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Use the <see cref="M:System.Security.Cryptography.Xml.EncryptedXml.DecryptData(System.Security.Cryptography.Xml.EncryptedData,System.Security.Cryptography.SymmetricAlgorithm)" /> method to decrypt an <see cref="T:System.Security.Cryptography.Xml.EncryptedData" /> element using a symmetric key.</para>
<para>Note that the <see cref="M:System.Security.Cryptography.Xml.EncryptedXml.DecryptData(System.Security.Cryptography.Xml.EncryptedData,System.Security.Cryptography.SymmetricAlgorithm)" /> method only decrypts top-level <EncryptedData> tags. In cases where one or more <EncryptedData> tags have been encrypted and are contained within higher level <EncryptedData> tags, you can call the <see cref="M:System.Security.Cryptography.Xml.EncryptedXml.DecryptDocument" /> method separately for each one. See the <see cref="M:System.Security.Cryptography.Xml.EncryptedXml.DecryptDocument" /> method for a code example.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Decrypts an <EncryptedData> element using the specified symmetric algorithm.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>A byte array that contains the raw decrypted plain text.</para>
</returns>
<param name="encryptedData">
<attribution license="cc4" from="Microsoft" modified="false" />The data to decrypt.</param>
</Docs>
</Member>
<Member MemberName="DecryptDocument">
<MemberSignature Language="C#" Value="public void DecryptDocument ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void DecryptDocument() cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Security.Cryptography.Xml.EncryptedXml.DecryptDocument" /> method decrypts all <EncryptedData> elements of the XML document loaded during initialization. After you call this method, all <EncryptedData> elements in the document are replaced with plain text versions.</para>
<para>The <see cref="M:System.Security.Cryptography.Xml.EncryptedXml.DecryptDocument" /> method decrypts only top-level <EncryptedData> elements. If you need to decrypt a super-encrypted document (a document that is encrypted more than once), you must call the <see cref="M:System.Security.Cryptography.Xml.EncryptedXml.DecryptDocument" /> method repeatedly until all the <EncryptedData> elements have been decrypted.</para>
<block subset="none" type="note">
<para>The <see cref="M:System.Security.Cryptography.Xml.EncryptedXml.DecryptDocument" /> method decrypts only valid XML data. To decrypt arbitrary data, use the <see cref="M:System.Security.Cryptography.Xml.EncryptedXml.DecryptData(System.Security.Cryptography.Xml.EncryptedData,System.Security.Cryptography.SymmetricAlgorithm)" /> method.</para>
</block>
<para>To use XML Encryption with X.509 certificates, you must have the Microsoft Enhanced Cryptographic Provider installed and the X.509 certificate must use the Enhanced Provider. If you do not have the Microsoft Enhanced Cryptographic Provider installed or the X.509 certificate does not use the Enhanced Provider, a <see cref="T:System.Security.Cryptography.CryptographicException" /> with an "Unknown Error" will be thrown when you decrypt an XML document.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Decrypts all <EncryptedData> elements of the XML document that were specified during initialization of the <see cref="T:System.Security.Cryptography.Xml.EncryptedXml" /> class.</para>
</summary>
</Docs>
</Member>
<Member MemberName="DecryptEncryptedKey">
<MemberSignature Language="C#" Value="public virtual byte[] DecryptEncryptedKey (System.Security.Cryptography.Xml.EncryptedKey encryptedKey);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance unsigned int8[] DecryptEncryptedKey(class System.Security.Cryptography.Xml.EncryptedKey encryptedKey) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Byte[]</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="encryptedKey" Type="System.Security.Cryptography.Xml.EncryptedKey" />
</Parameters>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Security.Cryptography.Xml.EncryptedXml.DecryptEncryptedKey(System.Security.Cryptography.Xml.EncryptedKey)" /> method decrypts an encrypted key contained within the <EncryptedKey> element of an XML document.</para>
<para>This recursive method finds the key represented by the <see cref="T:System.Security.Cryptography.Xml.EncryptedKey" /> object. Note that an <see cref="T:System.Security.Cryptography.Xml.EncryptedKey" /> object can contain another <see cref="T:System.Security.Cryptography.Xml.EncryptedKey" /> object that specifies its <see cref="T:System.Security.Cryptography.Xml.KeyInfo" /> value.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Determines the key represented by the <see cref="T:System.Security.Cryptography.Xml.EncryptedKey" /> element.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>A byte array that contains the key.</para>
</returns>
<param name="encryptedKey">
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Security.Cryptography.Xml.EncryptedKey" /> object that contains the key to retrieve.</param>
</Docs>
</Member>
<Member MemberName="DecryptKey">
<MemberSignature Language="C#" Value="public static byte[] DecryptKey (byte[] keyData, System.Security.Cryptography.SymmetricAlgorithm symAlg);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig unsigned int8[] DecryptKey(unsigned int8[] keyData, class System.Security.Cryptography.SymmetricAlgorithm symAlg) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Byte[]</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="keyData" Type="System.Byte[]" />
<Parameter Name="symAlg" Type="System.Security.Cryptography.SymmetricAlgorithm" />
</Parameters>
<Docs>
<param name="symAlg">To be added.</param>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Security.Cryptography.Xml.EncryptedXml.DecryptKey(System.Byte[],System.Security.Cryptography.RSA,System.Boolean)" /> method decrypts an encrypted key contained within the <EncryptedKey> element of an XML document. This method accepts a value for the <paramref name="symmetricAlgorithm" /> parameter that represents either the Triple DES algorithm or the AES key wrap algorithm (also called Rijndael).</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Decrypts an <EncryptedKey> element using a symmetric algorithm.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>A byte array that contains the plain text key.</para>
</returns>
<param name="keyData">
<attribution license="cc4" from="Microsoft" modified="false" />An array of bytes that represents an encrypted <EncryptedKey> element.</param>
</Docs>
</Member>
<Member MemberName="DecryptKey">
<MemberSignature Language="C#" Value="public static byte[] DecryptKey (byte[] keyData, System.Security.Cryptography.RSA rsa, bool fOAEP);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig unsigned int8[] DecryptKey(unsigned int8[] keyData, class System.Security.Cryptography.RSA rsa, bool fOAEP) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Byte[]</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="keyData" Type="System.Byte[]" />
<Parameter Name="rsa" Type="System.Security.Cryptography.RSA" />
<Parameter Name="fOAEP" Type="System.Boolean" />
</Parameters>
<Docs>
<param name="fOAEP">To be added.</param>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Security.Cryptography.Xml.EncryptedXml.DecryptKey(System.Byte[],System.Security.Cryptography.RSA,System.Boolean)" /> method decrypts an encrypted key contained within the <EncryptedKey> element of an XML document. This method accepts a value for the <paramref name="rsa" /> parameter that represents either the RSA PKCS#1 v1.5 algorithm or the RSA PKCS#1 type 2 algorithm (also called OAEP padding).</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Decrypts an <EncryptedKey> element using an asymmetric algorithm.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>A byte array that contains the plain text key.</para>
</returns>
<param name="keyData">
<attribution license="cc4" from="Microsoft" modified="false" />An array of bytes that represents an encrypted <EncryptedKey> element.</param>
<param name="rsa">
<attribution license="cc4" from="Microsoft" modified="false" />The asymmetric key used to decrypt <paramref name="keyData" />.</param>
</Docs>
</Member>
<Member MemberName="DocumentEvidence">
<MemberSignature Language="C#" Value="public System.Security.Policy.Evidence DocumentEvidence { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Security.Policy.Evidence DocumentEvidence" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Security.Policy.Evidence</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>If the XML document used to create the <see cref="T:System.Security.Cryptography.Xml.EncryptedXml" /> object has any security evidence, you should add the evidence to the <see cref="P:System.Security.Cryptography.Xml.EncryptedXml.DocumentEvidence" /> property. If you do not set this property, any associated <see cref="T:System.Security.Cryptography.Xml.CipherReference" /> objects will not be dereferenced because they will not be granted the required permission set.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the evidence of the <see cref="T:System.Xml.XmlDocument" /> object from which the <see cref="T:System.Security.Cryptography.Xml.EncryptedXml" /> object is constructed.</para>
</summary>
</Docs>
</Member>
<Member MemberName="Encoding">
<MemberSignature Language="C#" Value="public System.Text.Encoding Encoding { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Text.Encoding Encoding" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Text.Encoding</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>UTF-8 encoding is the default encoding for XML encryption. You can use this property to specify other types of encoding from the <see cref="T:System.Text.Encoding" /> class, such as UTF-16 or ASCII.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the encoding used for XML encryption.</para>
</summary>
</Docs>
</Member>
<Member MemberName="Encrypt">
<MemberSignature Language="C#" Value="public System.Security.Cryptography.Xml.EncryptedData Encrypt (System.Xml.XmlElement inputElement, System.Security.Cryptography.X509Certificates.X509Certificate2 certificate);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance class System.Security.Cryptography.Xml.EncryptedData Encrypt(class System.Xml.XmlElement inputElement, class System.Security.Cryptography.X509Certificates.X509Certificate2 certificate) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Security.Cryptography.Xml.EncryptedData</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="inputElement" Type="System.Xml.XmlElement" />
<Parameter Name="certificate" Type="System.Security.Cryptography.X509Certificates.X509Certificate2" />
</Parameters>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Security.Cryptography.Xml.EncryptedXml.Encrypt(System.Xml.XmlElement,System.Security.Cryptography.X509Certificates.X509Certificate2)" /> method is a convenient way to encrypt the outer XML of an element using a certificate. This method generates a 256-bit Advanced Encryption Standard (AES) session key to encrypt an XML element and then encrypts and signs the AES key using the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> object. The <see cref="M:System.Security.Cryptography.Xml.EncryptedXml.Encrypt(System.Xml.XmlElement,System.Security.Cryptography.X509Certificates.X509Certificate2)" /> method then returns the resulting XML as an <see cref="T:System.Security.Cryptography.Xml.EncryptedData" /> element.</para>
<para>If you need more control over the encryption, so you can place the encrypted information into a <CipherReference> element or specify whether the entire XML element or just its contents should be encrypted, use the <see cref="Overload:System.Security.Cryptography.Xml.EncryptedXml.EncryptData" /> method overloads.</para>
<para>To use XML Encryption with X.509 certificates, you must have the Microsoft Enhanced Cryptographic Provider installed and the X.509 certificate must use the Enhanced Provider. If you do not have the Microsoft Enhanced Cryptographic Provider installed or the X.509 certificate does not use the Enhanced Provider, a <see cref="T:System.Security.Cryptography.CryptographicException" /> with an "Unknown Error" will be thrown when you decrypt an XML document.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Encrypts the outer XML of an element using the specified X.509 certificate.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>An <see cref="T:System.Security.Cryptography.Xml.EncryptedData" /> element that represents the encrypted XML data.</para>
</returns>
<param name="inputElement">
<attribution license="cc4" from="Microsoft" modified="false" />The XML element to encrypt.</param>
<param name="certificate">
<attribution license="cc4" from="Microsoft" modified="false" />The X.509 certificate to use for encryption.</param>
</Docs>
</Member>
<Member MemberName="Encrypt">
<MemberSignature Language="C#" Value="public System.Security.Cryptography.Xml.EncryptedData Encrypt (System.Xml.XmlElement inputElement, string keyName);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance class System.Security.Cryptography.Xml.EncryptedData Encrypt(class System.Xml.XmlElement inputElement, string keyName) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Security.Cryptography.Xml.EncryptedData</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="inputElement" Type="System.Xml.XmlElement" />
<Parameter Name="keyName" Type="System.String" />
</Parameters>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>This method is a convenient way to encrypt the outer XML of an element using a key name. If you need more control over the encryption, so you can place the encrypted information into a <CipherReference> element or specify whether the entire XML element or just its contents should be encrypted, use the <see cref="Overload:System.Security.Cryptography.Xml.EncryptedXml.EncryptData" /> method overloads.</para>
<para>For a list of all supported algorithms, see the list of constant fields associated with the <see cref="T:System.Security.Cryptography.Xml.EncryptedXml" /> class.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Encrypts the outer XML of an element using the specified key in the key mapping table.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>An <see cref="T:System.Security.Cryptography.Xml.EncryptedData" /> object that represents the encrypted XML data.</para>
</returns>
<param name="inputElement">
<attribution license="cc4" from="Microsoft" modified="false" />The XML element to encrypt.</param>
<param name="keyName">
<attribution license="cc4" from="Microsoft" modified="false" />A key name that can be found in the key mapping table.</param>
</Docs>
</Member>
<Member MemberName="EncryptData">
<MemberSignature Language="C#" Value="public byte[] EncryptData (byte[] plainText, System.Security.Cryptography.SymmetricAlgorithm symAlg);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance unsigned int8[] EncryptData(unsigned int8[] plainText, class System.Security.Cryptography.SymmetricAlgorithm symAlg) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Byte[]</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="plainText" Type="System.Byte[]" />
<Parameter Name="symAlg" Type="System.Security.Cryptography.SymmetricAlgorithm" />
</Parameters>
<Docs>
<param name="plainText">To be added.</param>
<param name="symAlg">To be added.</param>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The returned byte array can be placed into a <CipherValue> element. This method assumes that the data specified in the <paramref name="plaintext" /> parameter is a byte array that contains XML data.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Encrypts data in the specified byte array using the specified symmetric algorithm.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>A byte array of encrypted data.</para>
</returns>
</Docs>
</Member>
<Member MemberName="EncryptData">
<MemberSignature Language="C#" Value="public byte[] EncryptData (System.Xml.XmlElement inputElement, System.Security.Cryptography.SymmetricAlgorithm symAlg, bool content);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance unsigned int8[] EncryptData(class System.Xml.XmlElement inputElement, class System.Security.Cryptography.SymmetricAlgorithm symAlg, bool content) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Byte[]</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="inputElement" Type="System.Xml.XmlElement" />
<Parameter Name="symAlg" Type="System.Security.Cryptography.SymmetricAlgorithm" />
<Parameter Name="content" Type="System.Boolean" />
</Parameters>
<Docs>
<param name="symAlg">To be added.</param>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The returned byte array data is the value of the <CipherValue> element.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Encrypts the specified element or its contents using the specified symmetric algorithm.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>A byte array that contains the encrypted data.</para>
</returns>
<param name="inputElement">
<attribution license="cc4" from="Microsoft" modified="false" />The element or its contents to encrypt.</param>
<param name="content">
<attribution license="cc4" from="Microsoft" modified="false" />true to encrypt only the contents of the element; false to encrypt the entire element.</param>
</Docs>
</Member>
<Member MemberName="EncryptKey">
<MemberSignature Language="C#" Value="public static byte[] EncryptKey (byte[] keyData, System.Security.Cryptography.SymmetricAlgorithm symAlg);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig unsigned int8[] EncryptKey(unsigned int8[] keyData, class System.Security.Cryptography.SymmetricAlgorithm symAlg) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Byte[]</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="keyData" Type="System.Byte[]" />
<Parameter Name="symAlg" Type="System.Security.Cryptography.SymmetricAlgorithm" />
</Parameters>
<Docs>
<param name="symAlg">To be added.</param>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Use the <see cref="M:System.Security.Cryptography.Xml.EncryptedXml.EncryptKey(System.Byte[],System.Security.Cryptography.SymmetricAlgorithm)" /> method to encrypt the key that a recipient uses to decrypt an <EncryptedData> element. This method accepts a value for the <paramref name="symmetricAlgorithm" /> parameter that represents either the Triple DES algorithm or the AES key wrap algorithm (also called Rijndael).</para>
<para>Note that this method does not automatically place the encrypted key within an <EncryptedKey> element. You must manually create the <EncryptedKey> element within your document.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Encrypts a key using a symmetric algorithm that a recipient uses to decrypt an <EncryptedData> element.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>A byte array that represents the encrypted value of the <paramref name="keyData" /> parameter.</para>
</returns>
<param name="keyData">
<attribution license="cc4" from="Microsoft" modified="false" />The key to encrypt.</param>
</Docs>
</Member>
<Member MemberName="EncryptKey">
<MemberSignature Language="C#" Value="public static byte[] EncryptKey (byte[] keyData, System.Security.Cryptography.RSA rsa, bool fOAEP);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig unsigned int8[] EncryptKey(unsigned int8[] keyData, class System.Security.Cryptography.RSA rsa, bool fOAEP) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Byte[]</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="keyData" Type="System.Byte[]" />
<Parameter Name="rsa" Type="System.Security.Cryptography.RSA" />
<Parameter Name="fOAEP" Type="System.Boolean" />
</Parameters>
<Docs>
<param name="fOAEP">To be added.</param>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Use the <see cref="M:System.Security.Cryptography.Xml.EncryptedXml.EncryptKey(System.Byte[],System.Security.Cryptography.RSA,System.Boolean)" /> method to encrypt the key that a recipient uses to decrypt an <EncryptedData> element. This method accepts a value for <paramref name="rsa" /> that represents either the RSA PKCS#1 v1.5 algorithm or the RSA PKCS#1 type 2 algorithm (also called OAEP). </para>
<para>Note that this method does not automatically place the encrypted key within an <EncryptedKey> element. You must manually create the <EncryptedKey> element within your document.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Encrypts the key that a recipient uses to decrypt an <EncryptedData> element.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>A byte array that represents the encrypted value of the <paramref name="keyData" /> parameter.</para>
</returns>
<param name="keyData">
<attribution license="cc4" from="Microsoft" modified="false" />The key to encrypt.</param>
<param name="rsa">
<attribution license="cc4" from="Microsoft" modified="false" />The asymmetric key used to encrypt <paramref name="keyData" />.</param>
</Docs>
</Member>
<Member MemberName="GetDecryptionIV">
<MemberSignature Language="C#" Value="public virtual byte[] GetDecryptionIV (System.Security.Cryptography.Xml.EncryptedData encryptedData, string symAlgUri);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance unsigned int8[] GetDecryptionIV(class System.Security.Cryptography.Xml.EncryptedData encryptedData, string symAlgUri) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Byte[]</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="encryptedData" Type="System.Security.Cryptography.Xml.EncryptedData" />
<Parameter Name="symAlgUri" Type="System.String" />
</Parameters>
<Docs>
<param name="symAlgUri">To be added.</param>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Given an <see cref="T:System.Security.Cryptography.Xml.EncryptedData" /> object, this method retrieves the decryption initialization vector (IV). The default behavior retrieves the IV as the first bytes of the <see cref="P:System.Security.Cryptography.Xml.CipherData.CipherValue" /> byte array.</para>
<para>For a list of Uniform Resource Identifier (URI) values supported by the <paramref name="symmetricAlgorithmUri" /> parameter, see the list of constant fields associated with the <see cref="T:System.Security.Cryptography.Xml.EncryptedXml" /> class.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Retrieves the decryption initialization vector (IV) from an <see cref="T:System.Security.Cryptography.Xml.EncryptedData" /> object.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>A byte array that contains the decryption initialization vector (IV).</para>
</returns>
<param name="encryptedData">
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Security.Cryptography.Xml.EncryptedData" /> object that contains the initialization vector (IV) to retrieve.</param>
</Docs>
</Member>
<Member MemberName="GetDecryptionKey">
<MemberSignature Language="C#" Value="public virtual System.Security.Cryptography.SymmetricAlgorithm GetDecryptionKey (System.Security.Cryptography.Xml.EncryptedData encryptedData, string symAlgUri);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Security.Cryptography.SymmetricAlgorithm GetDecryptionKey(class System.Security.Cryptography.Xml.EncryptedData encryptedData, string symAlgUri) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Security.Cryptography.SymmetricAlgorithm</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="encryptedData" Type="System.Security.Cryptography.Xml.EncryptedData" />
<Parameter Name="symAlgUri" Type="System.String" />
</Parameters>
<Docs>
<param name="symAlgUri">To be added.</param>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Given an <see cref="T:System.Security.Cryptography.Xml.EncryptedData" /> object, this method looks for the decryption key that can be used to retrieve the plain text data. If a key name is specified, the method looks for the symmetric algorithm or asymmetric algorithm that is associated with the key name as defined in the key name mapping. Otherwise, if a retrieval method or an <see cref="T:System.Security.Cryptography.Xml.EncryptedKey" /> object is specified, the method loads the <see cref="T:System.Security.Cryptography.Xml.EncryptedKey" /> object and calls the <see cref="M:System.Security.Cryptography.Xml.EncryptedXml.GetDecryptionKey(System.Security.Cryptography.Xml.EncryptedData,System.String)" /> method.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Retrieves the decryption key from the specified <see cref="T:System.Security.Cryptography.Xml.EncryptedData" /> object.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>A <see cref="T:System.Security.Cryptography.SymmetricAlgorithm" /> object associated with the decryption key.</para>
</returns>
<param name="encryptedData">
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Security.Cryptography.Xml.EncryptedData" /> object that contains the decryption key to retrieve.</param>
</Docs>
</Member>
<Member MemberName="GetIdElement">
<MemberSignature Language="C#" Value="public virtual System.Xml.XmlElement GetIdElement (System.Xml.XmlDocument document, string idValue);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class System.Xml.XmlElement GetIdElement(class System.Xml.XmlDocument document, string idValue) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Xml.XmlElement</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="document" Type="System.Xml.XmlDocument" />
<Parameter Name="idValue" Type="System.String" />
</Parameters>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Security.Cryptography.Xml.EncryptedXml.GetIdElement(System.Xml.XmlDocument,System.String)" /> method determines how to resolve internal Uniform Resource Identifiers (URIs). It looks for elements with a specified value or for elements with an ID attribute that has a specified value.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Determines how to resolve internal Uniform Resource Identifier (URI) references.</para>
</summary>
<returns>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>An <see cref="T:System.Xml.XmlElement" /> object that contains an ID indicating how internal Uniform Resource Identifiers (URIs) are to be resolved.</para>
</returns>
<param name="document">
<attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Xml.XmlDocument" /> object that contains an element with an ID value.</param>
<param name="idValue">
<attribution license="cc4" from="Microsoft" modified="false" />A string that represents the ID value.</param>
</Docs>
</Member>
<Member MemberName="Mode">
<MemberSignature Language="C#" Value="public System.Security.Cryptography.CipherMode Mode { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance valuetype System.Security.Cryptography.CipherMode Mode" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Security.Cryptography.CipherMode</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Cipher Block Chaining (CBC) mode is the default cipher mode for XML encryption. You can use this property to specify other cipher modes of the <see cref="T:System.Security.Cryptography.CipherMode" /> enumeration, such as Cipher Feedback (CFB) mode.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the cipher mode used for XML encryption.</para>
</summary>
</Docs>
</Member>
<Member MemberName="Padding">
<MemberSignature Language="C#" Value="public System.Security.Cryptography.PaddingMode Padding { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance valuetype System.Security.Cryptography.PaddingMode Padding" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Security.Cryptography.PaddingMode</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>ISO-10126 padding is the default padding mode for XML encryption. You can use this property to specify other padding modes of the <see cref="T:System.Security.Cryptography.PaddingMode" /> enumeration, such as ANSI X9.23 or PKCS#5.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the padding mode used for XML encryption.</para>
</summary>
</Docs>
</Member>
<Member MemberName="Recipient">
<MemberSignature Language="C#" Value="public string Recipient { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance string Recipient" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>You can access the <see cref="T:System.Security.Cryptography.Xml.EncryptedXml" /> object referenced by a key name by examining the <see cref="P:System.Security.Cryptography.Xml.EncryptedKey.CarriedKeyName" /> property.</para>
<para>Use the <see cref="P:System.Security.Cryptography.Xml.EncryptedXml.Recipient" /> property to identify the <see cref="T:System.Security.Cryptography.Xml.EncryptedXml" /> element that the current recipient can decrypt to retrieve a decryption key.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the recipient of the encrypted key information.</para>
</summary>
</Docs>
</Member>
<Member MemberName="ReplaceData">
<MemberSignature Language="C#" Value="public void ReplaceData (System.Xml.XmlElement inputElement, byte[] decryptedData);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void ReplaceData(class System.Xml.XmlElement inputElement, unsigned int8[] decryptedData) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="inputElement" Type="System.Xml.XmlElement" />
<Parameter Name="decryptedData" Type="System.Byte[]" />
</Parameters>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Security.Cryptography.Xml.EncryptedXml.ReplaceData(System.Xml.XmlElement,System.Byte[])" /> method replaces an <EncryptedData> element with the value of the <paramref name="decryptedData" /> parameter.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Replaces an <EncryptedData> element with a specified decrypted sequence of bytes.</para>
</summary>
<param name="inputElement">
<attribution license="cc4" from="Microsoft" modified="false" />The <EncryptedData> element to replace.</param>
<param name="decryptedData">
<attribution license="cc4" from="Microsoft" modified="false" />The decrypted data to replace <paramref name="inputElement" /> with.</param>
</Docs>
</Member>
<Member MemberName="ReplaceElement">
<MemberSignature Language="C#" Value="public static void ReplaceElement (System.Xml.XmlElement inputElement, System.Security.Cryptography.Xml.EncryptedData encryptedData, bool content);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig void ReplaceElement(class System.Xml.XmlElement inputElement, class System.Security.Cryptography.Xml.EncryptedData encryptedData, bool content) cil managed" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="inputElement" Type="System.Xml.XmlElement" />
<Parameter Name="encryptedData" Type="System.Security.Cryptography.Xml.EncryptedData" />
<Parameter Name="content" Type="System.Boolean" />
</Parameters>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The <see cref="M:System.Security.Cryptography.Xml.EncryptedXml.ReplaceElement(System.Xml.XmlElement,System.Security.Cryptography.Xml.EncryptedData,System.Boolean)" /> method replaces the <paramref name="inputElement" /> parameter with the value specified by the <paramref name="encryptedData" /> parameter.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Replaces the specified element with the specified <see cref="T:System.Security.Cryptography.Xml.EncryptedData" /> object.</para>
</summary>
<param name="inputElement">
<attribution license="cc4" from="Microsoft" modified="false" />The element to replace with an <EncryptedData> element.</param>
<param name="encryptedData">
<attribution license="cc4" from="Microsoft" modified="false" />The <see cref="T:System.Security.Cryptography.Xml.EncryptedData" /> object to replace the <paramref name="inputElement" /> parameter with.</param>
<param name="content">
<attribution license="cc4" from="Microsoft" modified="false" />true to replace only the contents of the element; false to replace the entire element.</param>
</Docs>
</Member>
<Member MemberName="Resolver">
<MemberSignature Language="C#" Value="public System.Xml.XmlResolver Resolver { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Xml.XmlResolver Resolver" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Xml.XmlResolver</ReturnType>
</ReturnValue>
<Docs>
<value>To be added.</value>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>This property contains an <see cref="T:System.Xml.XmlResolver" /> object used to resolve external XML resources such as entities, document type definitions (DTDs), or schemas.</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Gets or sets the <see cref="T:System.Xml.XmlResolver" /> object used by the Document Object Model (DOM) to resolve external XML references.</para>
</summary>
</Docs>
</Member>
<Member MemberName="XmlEncAES128KeyWrapUrl">
<MemberSignature Language="C#" Value="public const string XmlEncAES128KeyWrapUrl;" />
<MemberSignature Language="ILAsm" Value=".field public static literal string XmlEncAES128KeyWrapUrl" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The value of the <see cref="F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncAES128KeyWrapUrl" /> field is "http://www.w3.org/2001/04/xmlenc#kw-aes128".</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Represents the namespace Uniform Resource Identifier (URI) for the 128-bit Advanced Encryption Standard (AES) Key Wrap algorithm (also known as the Rijndael Key Wrap algorithm). This field is constant. </para>
</summary>
</Docs>
</Member>
<Member MemberName="XmlEncAES128Url">
<MemberSignature Language="C#" Value="public const string XmlEncAES128Url;" />
<MemberSignature Language="ILAsm" Value=".field public static literal string XmlEncAES128Url" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The value of the <see cref="F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncAES128Url" /> field is "http://www.w3.org/2001/04/xmlenc#aes128-cbc".</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Represents the namespace Uniform Resource Identifier (URI) for the 128-bit Advanced Encryption Standard (AES) algorithm (also known as the Rijndael algorithm). This field is constant.</para>
</summary>
</Docs>
</Member>
<Member MemberName="XmlEncAES192KeyWrapUrl">
<MemberSignature Language="C#" Value="public const string XmlEncAES192KeyWrapUrl;" />
<MemberSignature Language="ILAsm" Value=".field public static literal string XmlEncAES192KeyWrapUrl" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The value of the <see cref="F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncAES192KeyWrapUrl" /> field is "http://www.w3.org/2001/04/xmlenc#kw-aes192".</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Represents the namespace Uniform Resource Identifier (URI) for the 192-bit Advanced Encryption Standard (AES) Key Wrap algorithm (also known as the Rijndael Key Wrap algorithm). This field is constant.</para>
</summary>
</Docs>
</Member>
<Member MemberName="XmlEncAES192Url">
<MemberSignature Language="C#" Value="public const string XmlEncAES192Url;" />
<MemberSignature Language="ILAsm" Value=".field public static literal string XmlEncAES192Url" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The value of the <see cref="F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncAES192Url" /> field is "http://www.w3.org/2001/04/xmlenc#aes192-cbc".</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Represents the namespace Uniform Resource Identifier (URI) for the 192-bit Advanced Encryption Standard (AES) algorithm (also known as the Rijndael algorithm). This field is constant.</para>
</summary>
</Docs>
</Member>
<Member MemberName="XmlEncAES256KeyWrapUrl">
<MemberSignature Language="C#" Value="public const string XmlEncAES256KeyWrapUrl;" />
<MemberSignature Language="ILAsm" Value=".field public static literal string XmlEncAES256KeyWrapUrl" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The value of the <see cref="F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncAES256KeyWrapUrl" /> field is "http://www.w3.org/2001/04/xmlenc#kw-aes256".</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Represents the namespace Uniform Resource Identifier (URI) for the 256-bit Advanced Encryption Standard (AES) Key Wrap algorithm (also known as the Rijndael Key Wrap algorithm). This field is constant.</para>
</summary>
</Docs>
</Member>
<Member MemberName="XmlEncAES256Url">
<MemberSignature Language="C#" Value="public const string XmlEncAES256Url;" />
<MemberSignature Language="ILAsm" Value=".field public static literal string XmlEncAES256Url" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The value of the <see cref="F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncAES256Url" /> field is "http://www.w3.org/2001/04/xmlenc#aes256-cbc".</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Represents the namespace Uniform Resource Identifier (URI) for the 256-bit Advanced Encryption Standard (AES) algorithm (also known as the Rijndael algorithm). This field is constant.</para>
</summary>
</Docs>
</Member>
<Member MemberName="XmlEncDESUrl">
<MemberSignature Language="C#" Value="public const string XmlEncDESUrl;" />
<MemberSignature Language="ILAsm" Value=".field public static literal string XmlEncDESUrl" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The value of the <see cref="F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncDESUrl" /> field is "http://www.w3.org/2001/04/xmlenc#des-cbc".</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Represents the namespace Uniform Resource Identifier (URI) for the Digital Encryption Standard (DES) algorithm. This field is constant.</para>
</summary>
</Docs>
</Member>
<Member MemberName="XmlEncElementContentUrl">
<MemberSignature Language="C#" Value="public const string XmlEncElementContentUrl;" />
<MemberSignature Language="ILAsm" Value=".field public static literal string XmlEncElementContentUrl" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The value of the <see cref="F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncElementContentUrl" /> field is "http://www.w3.org/2001/04/xmlenc#Content".</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Represents the namespace Uniform Resource Identifier (URI) for XML encryption element content. This field is constant.</para>
</summary>
</Docs>
</Member>
<Member MemberName="XmlEncElementUrl">
<MemberSignature Language="C#" Value="public const string XmlEncElementUrl;" />
<MemberSignature Language="ILAsm" Value=".field public static literal string XmlEncElementUrl" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The value of the <see cref="F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncElementUrl" /> field is "http://www.w3.org/2001/04/xmlenc#Element".</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Represents the namespace Uniform Resource Identifier (URI) for an XML encryption element. This field is constant.</para>
</summary>
</Docs>
</Member>
<Member MemberName="XmlEncEncryptedKeyUrl">
<MemberSignature Language="C#" Value="public const string XmlEncEncryptedKeyUrl;" />
<MemberSignature Language="ILAsm" Value=".field public static literal string XmlEncEncryptedKeyUrl" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The value of the <see cref="F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncEncryptedKeyUrl" /> field is "http://www.w3.org/2001/04/xmlenc#EncryptedKey".</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Represents the namespace Uniform Resource Identifier (URI) for the XML encryption <EncryptedKey> element. This field is constant.</para>
</summary>
</Docs>
</Member>
<Member MemberName="XmlEncNamespaceUrl">
<MemberSignature Language="C#" Value="public const string XmlEncNamespaceUrl;" />
<MemberSignature Language="ILAsm" Value=".field public static literal string XmlEncNamespaceUrl" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The value of the <see cref="F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncNamespaceUrl" /> field is "http://www.w3.org/2001/04/xmlenc#".</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Represents the namespace Uniform Resource Identifier (URI) for XML encryption syntax and processing. This field is constant.</para>
</summary>
</Docs>
</Member>
<Member MemberName="XmlEncRSA15Url">
<MemberSignature Language="C#" Value="public const string XmlEncRSA15Url;" />
<MemberSignature Language="ILAsm" Value=".field public static literal string XmlEncRSA15Url" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The value of the <see cref="F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncRSA15Url" /> field is "http://www.w3.org/2001/04/xmlenc#rsa-1_5".</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Represents the namespace Uniform Resource Identifier (URI) for the RSA Public Key Cryptography Standard (PKCS) Version 1.5 algorithm. This field is constant.</para>
</summary>
</Docs>
</Member>
<Member MemberName="XmlEncRSAOAEPUrl">
<MemberSignature Language="C#" Value="public const string XmlEncRSAOAEPUrl;" />
<MemberSignature Language="ILAsm" Value=".field public static literal string XmlEncRSAOAEPUrl" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The value of the <see cref="F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncRSAOAEPUrl" /> field is "http://www.w3.org/2001/04/xmlenc#rsa-oaep-mgf1p".</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Represents the namespace Uniform Resource Identifier (URI) for the RSA Optimal Asymmetric Encryption Padding (OAEP) encryption algorithm. This field is constant.</para>
</summary>
</Docs>
</Member>
<Member MemberName="XmlEncSHA256Url">
<MemberSignature Language="C#" Value="public const string XmlEncSHA256Url;" />
<MemberSignature Language="ILAsm" Value=".field public static literal string XmlEncSHA256Url" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The value of the <see cref="F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncSHA256Url" /> field is "http://www.w3.org/2001/04/xmlenc#sha256".</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Represents the namespace Uniform Resource Identifier (URI) for the SHA-256 algorithm. This field is constant.</para>
</summary>
</Docs>
</Member>
<Member MemberName="XmlEncSHA512Url">
<MemberSignature Language="C#" Value="public const string XmlEncSHA512Url;" />
<MemberSignature Language="ILAsm" Value=".field public static literal string XmlEncSHA512Url" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The value of the <see cref="F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncSHA512Url" /> field is "http://www.w3.org/2001/04/xmlenc#sha512".</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Represents the namespace Uniform Resource Identifier (URI) for the SHA-512 algorithm. This field is constant.</para>
</summary>
</Docs>
</Member>
<Member MemberName="XmlEncTripleDESKeyWrapUrl">
<MemberSignature Language="C#" Value="public const string XmlEncTripleDESKeyWrapUrl;" />
<MemberSignature Language="ILAsm" Value=".field public static literal string XmlEncTripleDESKeyWrapUrl" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The value of the <see cref="F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncTripleDESKeyWrapUrl" /> field is "http://www.w3.org/2001/04/xmlenc#kw-tripledes".</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Represents the namespace Uniform Resource Identifier (URI) for the TRIPLEDES key wrap algorithm. This field is constant.</para>
</summary>
</Docs>
</Member>
<Member MemberName="XmlEncTripleDESUrl">
<MemberSignature Language="C#" Value="public const string XmlEncTripleDESUrl;" />
<MemberSignature Language="ILAsm" Value=".field public static literal string XmlEncTripleDESUrl" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<since version=".NET 2.0" />
<remarks>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>The value of the <see cref="F:System.Security.Cryptography.Xml.EncryptedXml.XmlEncTripleDESUrl" /> field is "http://www.w3.org/2001/04/xmlenc#tripledes-cbc".</para>
</remarks>
<summary>
<attribution license="cc4" from="Microsoft" modified="false" />
<para>Represents the namespace Uniform Resource Identifier (URI) for the Triple DES algorithm. This field is constant.</para>
</summary>
</Docs>
</Member>
</Members>
</Type>
|