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:
authornobody <nobody@localhost>2002-08-21 14:08:33 +0400
committernobody <nobody@localhost>2002-08-21 14:08:33 +0400
commit4e4824afab6cd0f9f0d71aa6baeddb7bee74f8c4 (patch)
tree4f2f12d32cc0fbc38f5ae17dd88b54f7f7d4773b /mcs/class/corlib/System.Security.Cryptography/CspParameters.cs
parent5a04c908e923e4d919c9c0aed1129f8416adb6cc (diff)
This commit was manufactured by cvs2svn to create branch 'SAVANNAH_CVS'.RHYS_20020821
svn path=/branches/SAVANNAH_CVS/mcs/; revision=6844
Diffstat (limited to 'mcs/class/corlib/System.Security.Cryptography/CspParameters.cs')
-rwxr-xr-xmcs/class/corlib/System.Security.Cryptography/CspParameters.cs57
1 files changed, 0 insertions, 57 deletions
diff --git a/mcs/class/corlib/System.Security.Cryptography/CspParameters.cs b/mcs/class/corlib/System.Security.Cryptography/CspParameters.cs
deleted file mode 100755
index 7c84eaff8af..00000000000
--- a/mcs/class/corlib/System.Security.Cryptography/CspParameters.cs
+++ /dev/null
@@ -1,57 +0,0 @@
-//
-// System.Security.Cryptography CspParameters.cs
-//
-// Author:
-// Thomas Neidhart (tome@sbox.tugraz.at)
-//
-
-using System;
-
-namespace System.Security.Cryptography
-{
-
- /// <summary>
- /// Contains information passed to Crypto Service Providers (CSP)
- /// </summary>
- public sealed class CspParameters
- {
- private CspProviderFlags _Flags;
-
- public CspParameters() : this(1) {}
-
- public CspParameters(int dwTypeIn) : this(dwTypeIn, null) {}
-
- public CspParameters(int dwTypeIn, string strProviderNameIn) : this(dwTypeIn, null, null) {}
-
- public CspParameters(int dwTypeIn, string strProviderNameIn, string strContainerNameIn)
- {
- ProviderType = dwTypeIn;
- ProviderName = strProviderNameIn;
- KeyContainerName = strContainerNameIn;
-
- // not defined in specs, only tested from M$ impl
- KeyNumber = -1;
- }
-
- public string KeyContainerName;
-
- public int KeyNumber;
-
- public string ProviderName;
-
- public int ProviderType;
-
- public CspProviderFlags Flags
- {
- get {
- return _Flags;
- }
-
- set {
- _Flags = value;
- }
- }
-
- } // CspParameters
-
-} // System.Security.Cryptography