System.Security.Cryptograph ...


.NET Framework Class Library
RSAPKCS1SignatureFormatter Class

Creates an RSA PKCS #1 version 1.5 signature.

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

Visual Basic (Declaration)
<ComVisibleAttribute(True)> _
Public Class RSAPKCS1SignatureFormatter _
    Inherits AsymmetricSignatureFormatter
Visual Basic (Usage)
Dim instance As RSAPKCS1SignatureFormatter
C#
[ComVisibleAttribute(true)]
public class RSAPKCS1SignatureFormatter : AsymmetricSignatureFormatter
Visual C++
[ComVisibleAttribute(true)]
public ref class RSAPKCS1SignatureFormatter : public AsymmetricSignatureFormatter
JScript
public class RSAPKCS1SignatureFormatter extends AsymmetricSignatureFormatter
Remarks

This class is used to create a digital signature using the RSA algorithm.

Use RSAPKCS1SignatureDeformatter to verify digital signatures with the RSA algorithm.

Examples

Visual Basic
Imports System
Imports System.Security.Cryptography

 _

Class RSASample


    Shared Sub Main()
        Try
            'Create a new instance of RSACryptoServiceProvider.
            Dim RSA As New RSACryptoServiceProvider()

            'The hash to sign.
            Dim Hash As Byte() = {59, 4, 248, 102, 77, 97, 142, 201, 210, 12, 224, 93, 25, 41, 100, 197, 213, 134, 130, 135}

            'Create an RSAOPKCS1SignatureFormatter object and pass it the 
            'RSACryptoServiceProvider to transfer the key information.
            Dim RSAFormatter As New RSAPKCS1SignatureFormatter(RSA)

            'Set the hash algorithm to SHA1.
            RSAFormatter.SetHashAlgorithm("SHA1")

            'Create a signature for HashValue and return it.
            Dim SignedHash As Byte() = RSAFormatter.CreateSignature(Hash)


        Catch e As CryptographicException
            Console.WriteLine(e.Message)
        End Try
    End Sub
End Class
C#
using System;
using System.Security.Cryptography;

class RSASample
{
        
    static void Main()
    {
        try
        {
            //Create a new instance of RSACryptoServiceProvider.
            RSACryptoServiceProvider RSA = new RSACryptoServiceProvider();

            //The hash to sign.
            byte[] Hash = {59,4,248,102,77,97,142,201,210,12,224,93,25,41,100,197,213,134,130,135};

            //Create an RSAOPKCS1SignatureFormatter object and pass it the 
            //RSACryptoServiceProvider to transfer the key information.
            RSAPKCS1SignatureFormatter RSAFormatter = new RSAPKCS1SignatureFormatter(RSA);

            //Set the hash algorithm to SHA1.
            RSAFormatter.SetHashAlgorithm("SHA1");

            //Create a signature for HashValue and return it.
            byte[] SignedHash = RSAFormatter.CreateSignature(Hash);


        }
        catch(CryptographicException e)
        {
            Console.WriteLine(e.Message);
        }
    }

}
Visual C++
#using <System.dll>

using namespace System;
using namespace System::Security::Cryptography;
int main()
{
   try
   {

      //Create a new instance of RSACryptoServiceProvider.
      RSACryptoServiceProvider^ RSA = gcnew RSACryptoServiceProvider;

      //The hash to sign.
      array<Byte>^Hash = {59,4,248,102,77,97,142,201,210,12,224,93,25,41,100,197,213,134,130,135};

      //Create an RSAOPKCS1SignatureFormatter object and pass it the 
      //RSACryptoServiceProvider to transfer the key information.
      RSAPKCS1SignatureFormatter^ RSAFormatter = gcnew RSAPKCS1SignatureFormatter( RSA );

      //Set the hash algorithm to SHA1.
      RSAFormatter->SetHashAlgorithm( "SHA1" );

      //Create a signature for HashValue and return it.
      array<Byte>^SignedHash = RSAFormatter->CreateSignature( Hash );
   }
   catch ( CryptographicException^ e ) 
   {
      Console::WriteLine( e->Message );
   }

}

Inheritance Hierarchy

System..::.Object
  System.Security.Cryptography..::.AsymmetricSignatureFormatter
    System.Security.Cryptography..::.RSAPKCS1SignatureFormatter
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.
Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information

.NET Framework

Supported in: 3.5, 3.0, 2.0, 1.1, 1.0

.NET Compact Framework

Supported in: 3.5, 2.0
See Also

Reference

Other Resources

Tags :


Page view tracker