RSA.Create 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
특정 구현을 RSA 인스턴스화할 수 있습니다.
오버로드
| Name | Description |
|---|---|
| Create() |
알고리즘의 기본 구현 인스턴스를 RSA 만듭니다. |
| Create(Int32) |
지정된 키 크기를 사용하여 새 임시 RSA 키를 만듭니다. |
| Create(RSAParameters) |
지정된 RSA 키 매개 변수를 사용하여 새 임시 RSA 키를 만듭니다. |
| Create(String) |
사용되지 않음.
지정된 .의 구현 인스턴스를 RSA만듭니다. |
Create()
- Source:
- RSA.Create.OpenSsl.cs
- Source:
- RSA.Create.OpenSsl.cs
- Source:
- RSA.Create.OpenSsl.cs
- Source:
- RSA.Create.OpenSsl.cs
- Source:
- RSA.Create.OpenSsl.cs
알고리즘의 기본 구현 인스턴스를 RSA 만듭니다.
public:
static System::Security::Cryptography::RSA ^ Create();
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public static System.Security.Cryptography.RSA Create();
public static System.Security.Cryptography.RSA Create();
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
static member Create : unit -> System.Security.Cryptography.RSA
static member Create : unit -> System.Security.Cryptography.RSA
Public Shared Function Create () As RSA
반품
기본 구현의 새 인스턴스입니다 RSA.
- 특성
추가 정보
적용 대상
Create(Int32)
- Source:
- RSA.cs
- Source:
- RSA.cs
- Source:
- RSA.cs
- Source:
- RSA.cs
- Source:
- RSA.cs
지정된 키 크기를 사용하여 새 임시 RSA 키를 만듭니다.
public:
static System::Security::Cryptography::RSA ^ Create(int keySizeInBits);
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public static System.Security.Cryptography.RSA Create(int keySizeInBits);
public static System.Security.Cryptography.RSA Create(int keySizeInBits);
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
static member Create : int -> System.Security.Cryptography.RSA
static member Create : int -> System.Security.Cryptography.RSA
Public Shared Function Create (keySizeInBits As Integer) As RSA
매개 변수
- keySizeInBits
- Int32
키 크기(비트)입니다.
반품
지정된 키 크기의 새 임시 RSA 키입니다.
- 특성
예외
keySizeInBits 는 기본 구현에서 지원되지 않습니다.
적용 대상
Create(RSAParameters)
- Source:
- RSA.cs
- Source:
- RSA.cs
- Source:
- RSA.cs
- Source:
- RSA.cs
- Source:
- RSA.cs
지정된 RSA 키 매개 변수를 사용하여 새 임시 RSA 키를 만듭니다.
public:
static System::Security::Cryptography::RSA ^ Create(System::Security::Cryptography::RSAParameters parameters);
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public static System.Security.Cryptography.RSA Create(System.Security.Cryptography.RSAParameters parameters);
public static System.Security.Cryptography.RSA Create(System.Security.Cryptography.RSAParameters parameters);
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
static member Create : System.Security.Cryptography.RSAParameters -> System.Security.Cryptography.RSA
static member Create : System.Security.Cryptography.RSAParameters -> System.Security.Cryptography.RSA
Public Shared Function Create (parameters As RSAParameters) As RSA
매개 변수
- parameters
- RSAParameters
알고리즘에 대한 매개 변수입니다 RSA .
반품
새 임시 RSA 키입니다.
- 특성
예외
parameters 는 유효한 RSA 키를 나타내지 않습니다.
추가 정보
적용 대상
Create(String)
- Source:
- RSA.cs
- Source:
- RSA.cs
- Source:
- RSA.cs
- Source:
- RSA.cs
- Source:
- RSA.cs
주의
Cryptographic factory methods accepting an algorithm name are obsolete. Use the parameterless Create factory method on the algorithm type instead.
지정된 .의 구현 인스턴스를 RSA만듭니다.
public:
static System::Security::Cryptography::RSA ^ Create(System::String ^ algName);
[System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("The default algorithm implementations might be removed, use strong type references like 'RSA.Create()' instead.")]
[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.RSA? Create(string algName);
public static System.Security.Cryptography.RSA? Create(string algName);
[System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("The default algorithm implementations might be removed, use strong type references like 'RSA.Create()' instead.")]
public static System.Security.Cryptography.RSA? Create(string algName);
public static System.Security.Cryptography.RSA Create(string algName);
[<System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("The default algorithm implementations might be removed, use strong type references like 'RSA.Create()' instead.")>]
[<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.RSA
static member Create : string -> System.Security.Cryptography.RSA
[<System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("The default algorithm implementations might be removed, use strong type references like 'RSA.Create()' instead.")>]
static member Create : string -> System.Security.Cryptography.RSA
Public Shared Function Create (algName As String) As RSA
매개 변수
반품
지정된 .의 구현에 대한 새 인스턴스입니다 RSA.
- 특성