다음을 통해 공유


DSA.Create 메서드

정의

비대칭 알고리즘을 수행하는 데 사용하는 암호화 개체를 만듭니다.

오버로드

Create()

비대칭 알고리즘을 수행하는 데 사용하는 기본 암호화 개체를 만듭니다.

Create(Int32)

지정된 키 크기를 이용하여 새 임시 DSA 키를 만듭니다.

Create(DSAParameters)

지정된 DSA 키 매개 변수를 이용하여 새 임시 DSA 키를 만듭니다.

Create(String)
사용되지 않음.

비대칭 알고리즘을 수행하는 데 사용하는 지정된 암호화 개체를 만듭니다.

Create()

Source:
DSA.cs
Source:
DSA.cs
Source:
DSA.cs

비대칭 알고리즘을 수행하는 데 사용하는 기본 암호화 개체를 만듭니다.

public:
 static System::Security::Cryptography::DSA ^ Create();
public static System.Security.Cryptography.DSA Create ();
[System.Runtime.Versioning.UnsupportedOSPlatform("ios")]
[System.Runtime.Versioning.UnsupportedOSPlatform("tvos")]
public static System.Security.Cryptography.DSA Create ();
[System.Runtime.Versioning.UnsupportedOSPlatform("ios")]
[System.Runtime.Versioning.UnsupportedOSPlatform("tvos")]
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public static System.Security.Cryptography.DSA Create ();
static member Create : unit -> System.Security.Cryptography.DSA
[<System.Runtime.Versioning.UnsupportedOSPlatform("ios")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("tvos")>]
static member Create : unit -> System.Security.Cryptography.DSA
[<System.Runtime.Versioning.UnsupportedOSPlatform("ios")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("tvos")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
static member Create : unit -> System.Security.Cryptography.DSA
Public Shared Function Create () As DSA

반환

DSA

비대칭 알고리즘을 수행하는 데 사용하는 암호화 개체입니다.

특성

추가 정보

적용 대상

Create(Int32)

Source:
DSA.cs
Source:
DSA.cs
Source:
DSA.cs

지정된 키 크기를 이용하여 새 임시 DSA 키를 만듭니다.

public:
 static System::Security::Cryptography::DSA ^ Create(int keySizeInBits);
public static System.Security.Cryptography.DSA Create (int keySizeInBits);
[System.Runtime.Versioning.UnsupportedOSPlatform("ios")]
[System.Runtime.Versioning.UnsupportedOSPlatform("tvos")]
public static System.Security.Cryptography.DSA Create (int keySizeInBits);
[System.Runtime.Versioning.UnsupportedOSPlatform("ios")]
[System.Runtime.Versioning.UnsupportedOSPlatform("tvos")]
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public static System.Security.Cryptography.DSA Create (int keySizeInBits);
static member Create : int -> System.Security.Cryptography.DSA
[<System.Runtime.Versioning.UnsupportedOSPlatform("ios")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("tvos")>]
static member Create : int -> System.Security.Cryptography.DSA
[<System.Runtime.Versioning.UnsupportedOSPlatform("ios")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("tvos")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
static member Create : int -> System.Security.Cryptography.DSA
Public Shared Function Create (keySizeInBits As Integer) As DSA

매개 변수

keySizeInBits
Int32

키의 크기(비트)입니다.

반환

DSA

지정된 키 크기를 이용하여 만든 새 임시 DSA 키입니다.

특성

예외

keySizeInBitsLegalKeySizes에서 허용되지 않습니다.

적용 대상

Create(DSAParameters)

Source:
DSA.cs
Source:
DSA.cs
Source:
DSA.cs

지정된 DSA 키 매개 변수를 이용하여 새 임시 DSA 키를 만듭니다.

public:
 static System::Security::Cryptography::DSA ^ Create(System::Security::Cryptography::DSAParameters parameters);
public static System.Security.Cryptography.DSA Create (System.Security.Cryptography.DSAParameters parameters);
[System.Runtime.Versioning.UnsupportedOSPlatform("ios")]
[System.Runtime.Versioning.UnsupportedOSPlatform("tvos")]
public static System.Security.Cryptography.DSA Create (System.Security.Cryptography.DSAParameters parameters);
[System.Runtime.Versioning.UnsupportedOSPlatform("ios")]
[System.Runtime.Versioning.UnsupportedOSPlatform("tvos")]
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public static System.Security.Cryptography.DSA Create (System.Security.Cryptography.DSAParameters parameters);
static member Create : System.Security.Cryptography.DSAParameters -> System.Security.Cryptography.DSA
[<System.Runtime.Versioning.UnsupportedOSPlatform("ios")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("tvos")>]
static member Create : System.Security.Cryptography.DSAParameters -> System.Security.Cryptography.DSA
[<System.Runtime.Versioning.UnsupportedOSPlatform("ios")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("tvos")>]
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
static member Create : System.Security.Cryptography.DSAParameters -> System.Security.Cryptography.DSA
Public Shared Function Create (parameters As DSAParameters) As DSA

매개 변수

parameters
DSAParameters

DSA 알고리즘의 매개 변수입니다.

반환

DSA

새 임시 DSA 키입니다.

특성

적용 대상

Create(String)

Source:
DSA.cs
Source:
DSA.cs
Source:
DSA.cs

주의

Cryptographic factory methods accepting an algorithm name are obsolete. Use the parameterless Create factory method on the algorithm type instead.

비대칭 알고리즘을 수행하는 데 사용하는 지정된 암호화 개체를 만듭니다.

public:
 static System::Security::Cryptography::DSA ^ Create(System::String ^ algName);
public static System.Security.Cryptography.DSA? Create (string algName);
[System.Obsolete("Cryptographic factory methods accepting an algorithm name are obsolete. Use the parameterless Create factory method on the algorithm type instead.", DiagnosticId="SYSLIB0045", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
public static System.Security.Cryptography.DSA? Create (string algName);
public static System.Security.Cryptography.DSA Create (string algName);
static member Create : string -> System.Security.Cryptography.DSA
[<System.Obsolete("Cryptographic factory methods accepting an algorithm name are obsolete. Use the parameterless Create factory method on the algorithm type instead.", DiagnosticId="SYSLIB0045", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
static member Create : string -> System.Security.Cryptography.DSA
Public Shared Function Create (algName As String) As DSA

매개 변수

algName
String

사용하려는 DSA의 특정 구현에 대한 이름입니다.

반환

DSA

비대칭 알고리즘을 수행하는 데 사용하는 암호화 개체입니다.

특성

설명

의 경우 DSA이름 System.Security.Cryptography.DSA를 사용합니다.

추가 정보

적용 대상