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
diff options
context:
space:
mode:
authorSebastien Pouliot <sebastien@ximian.com>2004-07-09 06:08:50 +0400
committerSebastien Pouliot <sebastien@ximian.com>2004-07-09 06:08:50 +0400
commitb030a1037f6c718f727eb3daf0aee4f165422ed8 (patch)
tree634864236ce9c22ff2a2f4c94b7161ca49a22cc1 /mcs/class/System.Security/System.Security.Cryptography.Pkcs
parent0551783bfce23e761d4619dca84a0dd1a2856229 (diff)
2004-07-08 Sebastien Pouliot <sebastien@ximian.com>
* PublicKeyInfo.cs: Sealed class (forgotten in previous commit). svn path=/trunk/mcs/; revision=30909
Diffstat (limited to 'mcs/class/System.Security/System.Security.Cryptography.Pkcs')
-rwxr-xr-xmcs/class/System.Security/System.Security.Cryptography.Pkcs/PublicKeyInfo.cs9
1 files changed, 4 insertions, 5 deletions
diff --git a/mcs/class/System.Security/System.Security.Cryptography.Pkcs/PublicKeyInfo.cs b/mcs/class/System.Security/System.Security.Cryptography.Pkcs/PublicKeyInfo.cs
index 25db8fde151..29ed67392b4 100755
--- a/mcs/class/System.Security/System.Security.Cryptography.Pkcs/PublicKeyInfo.cs
+++ b/mcs/class/System.Security/System.Security.Cryptography.Pkcs/PublicKeyInfo.cs
@@ -2,11 +2,10 @@
// PublicKeyInfo.cs - System.Security.Cryptography.Pkcs.PublicKeyInfo
//
// Author:
-// Sebastien Pouliot (spouliot@motus.com)
+// Sebastien Pouliot <sebastien@ximian.com>
//
// (C) 2003 Motus Technologies Inc. (http://www.motus.com)
-//
-
+// Copyright (C) 2004 Novell Inc. (http://www.novell.com)
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
@@ -34,7 +33,7 @@ using System;
namespace System.Security.Cryptography.Pkcs {
- public class PublicKeyInfo {
+ public sealed class PublicKeyInfo {
private AlgorithmIdentifier _algorithm;
private byte[] _key;
@@ -61,4 +60,4 @@ namespace System.Security.Cryptography.Pkcs {
}
}
-#endif \ No newline at end of file
+#endif