.NET Framework Class Library
DSACryptoServiceProvider Methods
The DSACryptoServiceProvider type exposes the following members.
Methods
| Name | Description | |
|---|---|---|
|
Clear | Releases all resources used by the AsymmetricAlgorithm class. (Inherited from AsymmetricAlgorithm.) |
|
CreateSignature | Creates the DSA signature for the specified data. (Overrides DSA.CreateSignature(Byte[]).) |
|
Dispose() | Releases all resources used by the current instance of the AsymmetricAlgorithm class. (Inherited from AsymmetricAlgorithm.) |
|
Dispose(Boolean) | Releases the unmanaged resources used by the AsymmetricAlgorithm class and optionally releases the managed resources. (Inherited from AsymmetricAlgorithm.) |
|
Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
|
ExportCspBlob | Exports a blob containing the key information associated with a DSACryptoServiceProvider object. |
|
ExportParameters | Exports the DSAParameters. (Overrides DSA.ExportParameters(Boolean).) |
|
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
|
FromXmlString | Reconstructs a DSA object from an XML string. (Inherited from DSA.) |
|
GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
|
GetType | Gets the Type of the current instance. (Inherited from Object.) |
|
ImportCspBlob | Imports a blob that represents DSA key information. |
|
ImportParameters | Imports the specified DSAParameters. (Overrides DSA.ImportParameters(DSAParameters).) |
|
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
|
SignData(Byte[]) | Computes the hash value of the specified byte array and signs the resulting hash value. |
|
SignData(Stream) | Computes the hash value of the specified input stream and signs the resulting hash value. |
|
SignData(Byte[], Int32, Int32) | Signs a byte array from the specified start point to the specified end point. |
|
SignHash | Computes the signature for the specified hash value by encrypting it with the private key. |
|
ToString | Returns a string that represents the current object. (Inherited from Object.) |
|
ToXmlString | Creates and returns an XML string representation of the current DSA object. (Inherited from DSA.) |
|
VerifyData | Verifies the specified signature data by comparing it to the signature computed for the specified data. |
|
VerifyHash | Verifies the specified signature data by comparing it to the signature computed for the specified hash value. |
|
VerifySignature | Verifies the DSA signature for the specified data. (Overrides DSA.VerifySignature(Byte[], Byte[]).) |
See Also