DSACng 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
DSACng 클래스의 새 인스턴스를 초기화합니다.
오버로드
DSACng() |
난수 2,048비트 키 쌍을 사용하여 DSACng 클래스의 새 인스턴스를 초기화합니다. |
DSACng(Int32) |
지정한 크기의 임의로 생성된 키를 사용하여 DSACng 클래스의 새 인스턴스를 초기화합니다. |
DSACng(CngKey) |
지정된 키를 사용하여 DSACng 클래스의 새 인스턴스를 초기화합니다. |
DSACng()
- Source:
- Cng.NotSupported.cs
- Source:
- Cng.NotSupported.cs
- Source:
- Cng.NotSupported.cs
난수 2,048비트 키 쌍을 사용하여 DSACng 클래스의 새 인스턴스를 초기화합니다.
public:
DSACng();
public DSACng ();
[System.Runtime.Versioning.SupportedOSPlatform("windows")]
public DSACng ();
Public Sub New ()
- 특성
적용 대상
DSACng(Int32)
- Source:
- Cng.NotSupported.cs
- Source:
- Cng.NotSupported.cs
- Source:
- Cng.NotSupported.cs
지정한 크기의 임의로 생성된 키를 사용하여 DSACng 클래스의 새 인스턴스를 초기화합니다.
public:
DSACng(int keySize);
public DSACng (int keySize);
[System.Runtime.Versioning.SupportedOSPlatform("windows")]
public DSACng (int keySize);
new System.Security.Cryptography.DSACng : int -> System.Security.Cryptography.DSACng
[<System.Runtime.Versioning.SupportedOSPlatform("windows")>]
new System.Security.Cryptography.DSACng : int -> System.Security.Cryptography.DSACng
Public Sub New (keySize As Integer)
매개 변수
- keySize
- Int32
생성할 키의 크기(비트)입니다.
- 특성
예외
keySize
가 잘못된 경우
설명
유효한 키 크기는 512비트에서 3,072비트까지이며 64비트씩 증가합니다. 모든 키에 최소 2,048비트 크기를 사용하는 것이 좋습니다.
중요
DSA 알고리즘의 작성자는 해당 알고리즘에 대한 지원을 철회했습니다. 클래스 대신 RSA 클래스 또는 클래스를 ECDsaDSA 사용하는 것이 좋습니다. 사용 하 여 DSA 레거시 애플리케이션 및 데이터를 사용 하 여 호환성을 위해서만 합니다.
적용 대상
DSACng(CngKey)
- Source:
- Cng.NotSupported.cs
- Source:
- Cng.NotSupported.cs
- Source:
- Cng.NotSupported.cs
지정된 키를 사용하여 DSACng 클래스의 새 인스턴스를 초기화합니다.
public:
DSACng(System::Security::Cryptography::CngKey ^ key);
public DSACng (System.Security.Cryptography.CngKey key);
[System.Runtime.Versioning.SupportedOSPlatform("windows")]
public DSACng (System.Security.Cryptography.CngKey key);
new System.Security.Cryptography.DSACng : System.Security.Cryptography.CngKey -> System.Security.Cryptography.DSACng
[<System.Runtime.Versioning.SupportedOSPlatform("windows")>]
new System.Security.Cryptography.DSACng : System.Security.Cryptography.CngKey -> System.Security.Cryptography.DSACng
Public Sub New (key As CngKey)
매개 변수
- key
- CngKey
DSA 작업에 사용할 키입니다.
- 특성
예외
key
가 유효한 DSA 키가 아닙니다.
key
이(가) null
인 경우
설명
의 는 CngKey.AlgorithmGroupkey
이어야 CngAlgorithmGroup.Dsa합니다.
이 생성자는 키의 복사본을 만듭니다. 가 삭제되더라도 key
DSA에서 이 키 개체의 복사본은 활성 상태로 유지됩니다.
적용 대상
.NET