CspParameters Class

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Contains parameters that are passed to the cryptographic service provider (CSP) that performs cryptographic computations. This class cannot be inherited.

Inheritance Hierarchy

System.Object
  System.Security.Cryptography.CspParameters

Namespace:  System.Security.Cryptography
Assembly:  mscorlib.Extensions (in mscorlib.Extensions.dll)

Syntax

'Declaration
Public NotInheritable Class CspParameters
public sealed class CspParameters

The CspParameters type exposes the following members.

Constructors

  Name Description
Public methodSupported by Silverlight for Windows Phone CspParameters() Initializes a new instance of the CspParameters class.
Public methodSupported by Silverlight for Windows Phone CspParameters(Int32) Initializes a new instance of the CspParameters class with the specified provider type code.
Public methodSupported by Silverlight for Windows Phone CspParameters(Int32, String) Initializes a new instance of the CspParameters class with the specified provider type code and name.
Public methodSupported by Silverlight for Windows Phone CspParameters(Int32, String, String) Initializes a new instance of the CspParameters class with the specified provider type code and name, and the specified container name.

Top

Properties

  Name Description
Public propertySupported by Silverlight for Windows Phone Flags Represents the flags for CspParameters that modify the behavior of the cryptographic service provider (CSP).

Top

Methods

  Name Description
Public methodSupported by Silverlight for Windows Phone Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected methodSupported by Silverlight for Windows Phone Finalize Allows an object to try to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.)
Public methodSupported by Silverlight for Windows Phone GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public methodSupported by Silverlight for Windows Phone GetType Gets the Type of the current instance. (Inherited from Object.)
Protected methodSupported by Silverlight for Windows Phone MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public methodSupported by Silverlight for Windows Phone ToString Returns a string that represents the current object. (Inherited from Object.)

Top

Fields

  Name Description
Public fieldSupported by Silverlight for Windows Phone KeyContainerName Represents the key container name for CspParameters.
Public fieldSupported by Silverlight for Windows Phone KeyNumber Specifies whether an asymmetric key is created as a signature key or an exchange key.
Public fieldSupported by Silverlight for Windows Phone ProviderName Represents the provider name for CspParameters.
Public fieldSupported by Silverlight for Windows Phone ProviderType Represents the provider type code for CspParameters.

Top

Remarks

The CspParameters class represents parameters that you can pass to managed cryptography classes that internally use Microsoft Cryptographic Service Providers (CSPs) from the unmanaged Microsoft Cryptography API (CAPI). Classes with names ending in "CryptoServiceProvider" are managed code wrappers for the corresponding CSP.

Use the CspParameters class to do the following:

  • Specify a particular CSP by passing the provider type to the ProviderType or ProviderName property. You can also specify a CSP using an overload of the constructor.

  • Create a key container where you can store cryptographic keys. Key containers provide the most secure way to persist cryptographic keys and keep them secret from malicious third parties.

  • Specify whether to create an asymmetric signature key or an asymmetric exchange key using the KeyNumber property.

Version Information

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.1

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.