RSA Class

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

Represents the base class from which all implementations of the RSA algorithm inherit.

Inheritance Hierarchy

System.Object
  System.Security.Cryptography.AsymmetricAlgorithm
    System.Security.Cryptography.RSA
      System.Security.Cryptography.RSACryptoServiceProvider

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

Syntax

'Declaration
<ComVisibleAttribute(True)> _
Public MustInherit Class RSA _
    Inherits AsymmetricAlgorithm
[ComVisibleAttribute(true)]
public abstract class RSA : AsymmetricAlgorithm

The RSA type exposes the following members.

Constructors

  Name Description
Protected methodSupported by Silverlight for Windows Phone RSA Initializes a new instance of RSA.

Top

Properties

  Name Description
Public propertySupported by Silverlight for Windows Phone KeyExchangeAlgorithm When overridden in a derived class, gets the name of the key exchange algorithm. (Inherited from AsymmetricAlgorithm.)
Public propertySupported by Silverlight for Windows Phone KeySize Gets or sets the size, in bits, of the key modulus used by the asymmetric algorithm. (Inherited from AsymmetricAlgorithm.)
Public propertySupported by Silverlight for Windows Phone LegalKeySizes Gets the key sizes that are supported by the asymmetric algorithm. (Inherited from AsymmetricAlgorithm.)
Public propertySupported by Silverlight for Windows Phone SignatureAlgorithm Gets the name of the signature algorithm. (Inherited from AsymmetricAlgorithm.)

Top

Methods

  Name Description
Public methodSupported by Silverlight for Windows Phone Clear Releases all resources used by the AsymmetricAlgorithm class. (Inherited from AsymmetricAlgorithm.)
Public methodStatic memberSupported by Silverlight for Windows Phone Create() Creates an instance of the default implementation of the RSA algorithm.
Public methodStatic memberSupported by Silverlight for Windows Phone Create(String) Creates an instance of the specified implementation of RSA.
Public methodSupported by Silverlight for Windows Phone DecryptValue When overridden in a derived class, decrypts the input data using the private key.
Public methodSupported by Silverlight for Windows Phone Dispose() Releases all resources used by the current instance of the AsymmetricAlgorithm class. (Inherited from AsymmetricAlgorithm.)
Protected methodSupported by Silverlight for Windows Phone Dispose(Boolean) Releases the unmanaged resources used by the AsymmetricAlgorithm class and optionally releases the managed resources. (Inherited from AsymmetricAlgorithm.)
Public methodSupported by Silverlight for Windows Phone EncryptValue When overridden in a derived class, encrypts the input data using the public key.
Public methodSupported by Silverlight for Windows Phone Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Public methodSupported by Silverlight for Windows Phone ExportParameters When overridden in a derived class, exports the RSAParameters.
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 FromXmlString Initializes an RSA object from the key information from an XML string. (Overrides AsymmetricAlgorithm.FromXmlString(String).)
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.)
Public methodSupported by Silverlight for Windows Phone ImportParameters When overridden in a derived class, imports the specified RSAParameters.
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.)
Public methodSupported by Silverlight for Windows Phone ToXmlString Creates and returns an XML string containing the key of the current RSA object. (Overrides AsymmetricAlgorithm.ToXmlString(Boolean).)

Top

Fields

  Name Description
Protected fieldSupported by Silverlight for Windows Phone KeySizeValue Represents the size, in bits, of the key modulus used by the asymmetric algorithm. (Inherited from AsymmetricAlgorithm.)
Protected fieldSupported by Silverlight for Windows Phone LegalKeySizesValue Specifies the key sizes that are supported by the asymmetric algorithm. (Inherited from AsymmetricAlgorithm.)

Top

Remarks

Extending this class proves that you are implementing an RSA key. This is required for any developer providing a new RSA key implementation.

The only purpose of this class is as a hierarchy member for identification of the RSA algorithm.

Silverlight for Windows Phone In Silverlight for Windows Phone, the RSACryptoServiceProvider supports key lengths from 384 bits to 4800 bits in increments of 8 bits.

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.