DSASignatureFormatter 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
DSASignatureFormatter 클래스의 새 인스턴스를 초기화합니다.
오버로드
DSASignatureFormatter() |
DSASignatureFormatter 클래스의 새 인스턴스를 초기화합니다. |
DSASignatureFormatter(AsymmetricAlgorithm) |
지정된 키를 사용하여 DSASignatureFormatter 클래스의 새 인스턴스를 초기화합니다. |
DSASignatureFormatter()
- Source:
- DSASignatureFormatter.cs
- Source:
- DSASignatureFormatter.cs
- Source:
- DSASignatureFormatter.cs
DSASignatureFormatter 클래스의 새 인스턴스를 초기화합니다.
public:
DSASignatureFormatter();
public DSASignatureFormatter ();
Public Sub New ()
추가 정보
적용 대상
DSASignatureFormatter(AsymmetricAlgorithm)
- Source:
- DSASignatureFormatter.cs
- Source:
- DSASignatureFormatter.cs
- Source:
- DSASignatureFormatter.cs
지정된 키를 사용하여 DSASignatureFormatter 클래스의 새 인스턴스를 초기화합니다.
public:
DSASignatureFormatter(System::Security::Cryptography::AsymmetricAlgorithm ^ key);
public DSASignatureFormatter (System.Security.Cryptography.AsymmetricAlgorithm key);
new System.Security.Cryptography.DSASignatureFormatter : System.Security.Cryptography.AsymmetricAlgorithm -> System.Security.Cryptography.DSASignatureFormatter
Public Sub New (key As AsymmetricAlgorithm)
매개 변수
키를 보유하는 디지털 서명 알고리즘(DSA)의 인스턴스입니다.
예외
key
이(가) null
인 경우
예제
#using <System.dll>
using namespace System;
using namespace System::Security::Cryptography;
int main()
{
try
{
//Create a new instance of DSA.
DSA^ DSA = DSA::Create();
//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 DSASignatureFormatter Object* and pass it the
//DSA instance to transfer the key information.
DSASignatureFormatter^ DSAFormatter = gcnew DSASignatureFormatter( DSA );
//Set the hash algorithm to SHA1.
DSAFormatter->SetHashAlgorithm( "SHA1" );
//Create a signature for HashValue and return it.
array<Byte>^SignedHash = DSAFormatter->CreateSignature( Hash );
}
catch ( CryptographicException^ e )
{
Console::WriteLine( e->Message );
}
}
using System;
using System.Security.Cryptography;
class DSASample
{
static void Main()
{
try
{
//Create a new instance of DSA.
DSA DSA = DSA.Create();
//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 DSASignatureFormatter object and pass it the
//DSA instance to transfer the key information.
DSASignatureFormatter DSAFormatter = new DSASignatureFormatter(DSA);
//Set the hash algorithm to SHA1.
DSAFormatter.SetHashAlgorithm("SHA1");
//Create a signature for HashValue and return it.
byte[] SignedHash = DSAFormatter.CreateSignature(Hash);
}
catch(CryptographicException e)
{
Console.WriteLine(e.Message);
}
}
}
Imports System.Security.Cryptography
_
Class DSASample
Shared Sub Main()
Try
'Create a new instance of DSA.
Dim DSA As DSA = DSA.Create()
'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 DSASignatureFormatter object and pass it the
'DSA instance to transfer the key information.
Dim DSAFormatter As New DSASignatureFormatter(DSA)
'Set the hash algorithm to SHA1.
DSAFormatter.SetHashAlgorithm("SHA1")
'Create a signature for HashValue and return it.
Dim SignedHash As Byte() = DSAFormatter.CreateSignature(Hash)
Catch e As CryptographicException
Console.WriteLine(e.Message)
End Try
End Sub
End Class
추가 정보
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET