Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mcs
diff options
context:
space:
mode:
authorAtsushi Eno <atsushieno@gmail.com>2007-01-22 20:39:57 +0300
committerAtsushi Eno <atsushieno@gmail.com>2007-01-22 20:39:57 +0300
commit7bce9d1c7d9ef6ef36f7fbd8a85b9b692af33459 (patch)
tree8a0a7b52b9e24aaaa5c1137146f37ec62e9de03a /mcs
parentc6d95c708ed71229e3103ab90a8f8ada76af0bf7 (diff)
2007-01-22 Atsushi Enomoto <atsushi@ximian.com>
* CryptoConfig.cs: Fixed incorrect exchange in urlExcC14N and urlExcC14NWithComments. svn path=/trunk/mcs/; revision=71450
Diffstat (limited to 'mcs')
-rw-r--r--mcs/class/corlib/System.Security.Cryptography/ChangeLog5
-rw-r--r--mcs/class/corlib/System.Security.Cryptography/CryptoConfig.cs4
2 files changed, 7 insertions, 2 deletions
diff --git a/mcs/class/corlib/System.Security.Cryptography/ChangeLog b/mcs/class/corlib/System.Security.Cryptography/ChangeLog
index 56a56ad8dcc..313d639c311 100644
--- a/mcs/class/corlib/System.Security.Cryptography/ChangeLog
+++ b/mcs/class/corlib/System.Security.Cryptography/ChangeLog
@@ -1,3 +1,8 @@
+2007-01-22 Atsushi Enomoto <atsushi@ximian.com>
+
+ * CryptoConfig.cs: Fixed incorrect exchange in urlExcC14N and
+ urlExcC14NWithComments.
+
2006-11-24 Sebastien Pouliot <sebastien@ximian.com>
* CryptoConfig.cs: Add support for (2.0) custom X.509 chains.
diff --git a/mcs/class/corlib/System.Security.Cryptography/CryptoConfig.cs b/mcs/class/corlib/System.Security.Cryptography/CryptoConfig.cs
index c46f86479d8..86c0e626438 100644
--- a/mcs/class/corlib/System.Security.Cryptography/CryptoConfig.cs
+++ b/mcs/class/corlib/System.Security.Cryptography/CryptoConfig.cs
@@ -195,8 +195,8 @@ public class CryptoConfig {
private const string urlEnveloped = urlXmlDsig + "enveloped-signature"; // no space
#if NET_2_0
private const string urlXmlDecryption = "http://www.w3.org/2002/07/decrypt#XML";
- private const string urlExcC14N = "http://www.w3.org/2001/10/xml-exc-c14n#WithComments";
- private const string urlExcC14NWithComments = "http://www.w3.org/2001/10/xml-exc-c14n#";
+ private const string urlExcC14NWithComments = "http://www.w3.org/2001/10/xml-exc-c14n#WithComments";
+ private const string urlExcC14N = "http://www.w3.org/2001/10/xml-exc-c14n#";
#endif
// LAMESPEC: only documentated in ".NET Framework Security" book