summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2022-10-28 17:28:34 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2022-10-28 17:28:34 +0700
commit8b506bbc5782649d60d8035e19c80df1f20dee97 (patch)
tree3011311bdc53e804390fb43662e59423ba4fcc9d
parentCleanup CMS compressed data (diff)
downloadBouncyCastle.NET-ed25519-8b506bbc5782649d60d8035e19c80df1f20dee97.tar.xz
Remove obsolete code
-rw-r--r--crypto/src/AssemblyInfo.cs26
1 files changed, 0 insertions, 26 deletions
diff --git a/crypto/src/AssemblyInfo.cs b/crypto/src/AssemblyInfo.cs
index f89d58fbd..dfc22336a 100644
--- a/crypto/src/AssemblyInfo.cs
+++ b/crypto/src/AssemblyInfo.cs
@@ -3,29 +3,3 @@ using System.Runtime.InteropServices;
 
 [assembly: CLSCompliant(true)]
 [assembly: ComVisible(false)]
-
-// Start with no permissions
-//[assembly: PermissionSet(SecurityAction.RequestOptional, Unrestricted=false)]
-//...and explicitly add those we need
-
-// see Org.BouncyCastle.Crypto.Encodings.Pkcs1Encoding.StrictLengthEnabledProperty
-//[assembly: EnvironmentPermission(SecurityAction.RequestOptional, Read="Org.BouncyCastle.Pkcs1.Strict")]
-
-#if !(NET45_OR_GREATER || NETSTANDARD1_0_OR_GREATER)
-namespace System.Reflection
-{
-    [AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true, Inherited = false)]
-    internal sealed class AssemblyMetadataAttribute : Attribute
-    {
-        public AssemblyMetadataAttribute(string key, string value)
-        {
-            Key = key;
-            Value = value;
-        }
-
-        public string Key { get; }
-
-        public string Value { get; }
-    }
-}
-#endif