RSA.Create Metoda
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Umożliwia utworzenie wystąpienia określonych implementacji RSA programu .
Przeciążenia
Create() |
Tworzy wystąpienie domyślnej implementacji algorytmu RSA . |
Create(Int32) |
Tworzy nowy efemeryczny klucz RSA o określonym rozmiarze klucza. |
Create(RSAParameters) |
Tworzy nowy efemeryczny klucz RSA z określonymi parametrami klucza RSA. |
Create(String) |
Przestarzałe.
Tworzy wystąpienie określonej implementacji .RSA |
Create()
- Źródło:
- RSA.Create.OpenSsl.cs
- Źródło:
- RSA.Create.OpenSsl.cs
- Źródło:
- RSA.Create.OpenSsl.cs
Tworzy wystąpienie domyślnej implementacji algorytmu RSA .
public:
static System::Security::Cryptography::RSA ^ Create();
public static System.Security.Cryptography.RSA Create ();
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public static System.Security.Cryptography.RSA Create ();
static member Create : unit -> System.Security.Cryptography.RSA
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
static member Create : unit -> System.Security.Cryptography.RSA
Public Shared Function Create () As RSA
Zwraca
Nowe wystąpienie domyślnej implementacji .RSA
- Atrybuty
Zobacz też
Dotyczy
Create(Int32)
- Źródło:
- RSA.cs
- Źródło:
- RSA.cs
- Źródło:
- RSA.cs
Tworzy nowy efemeryczny klucz RSA o określonym rozmiarze klucza.
public:
static System::Security::Cryptography::RSA ^ Create(int keySizeInBits);
public static System.Security.Cryptography.RSA Create (int keySizeInBits);
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public static System.Security.Cryptography.RSA Create (int keySizeInBits);
static member Create : int -> System.Security.Cryptography.RSA
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
static member Create : int -> System.Security.Cryptography.RSA
Public Shared Function Create (keySizeInBits As Integer) As RSA
Parametry
- keySizeInBits
- Int32
Rozmiar klucza, w bitach.
Zwraca
Nowy efemeryczny klucz RSA o określonym rozmiarze klucza.
- Atrybuty
Wyjątki
keySizeInBits
nie jest obsługiwana przez domyślną implementację.
Dotyczy
Create(RSAParameters)
- Źródło:
- RSA.cs
- Źródło:
- RSA.cs
- Źródło:
- RSA.cs
Tworzy nowy efemeryczny klucz RSA z określonymi parametrami klucza RSA.
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")]
public static System.Security.Cryptography.RSA Create (System.Security.Cryptography.RSAParameters parameters);
static member Create : System.Security.Cryptography.RSAParameters -> System.Security.Cryptography.RSA
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
static member Create : System.Security.Cryptography.RSAParameters -> System.Security.Cryptography.RSA
Public Shared Function Create (parameters As RSAParameters) As RSA
Parametry
- parameters
- RSAParameters
Parametry algorytmu RSA .
Zwraca
Nowy efemeryczny klucz RSA.
- Atrybuty
Wyjątki
parameters
nie reprezentuje prawidłowego klucza RSA.
Zobacz też
Dotyczy
Create(String)
- Źródło:
- RSA.cs
- Źródło:
- RSA.cs
- Źródło:
- RSA.cs
Przestroga
Cryptographic factory methods accepting an algorithm name are obsolete. Use the parameterless Create factory method on the algorithm type instead.
Tworzy wystąpienie określonej implementacji .RSA
public:
static System::Security::Cryptography::RSA ^ Create(System::String ^ algName);
public static System.Security.Cryptography.RSA? 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.RSA? Create (string algName);
public static System.Security.Cryptography.RSA Create (string algName);
static member Create : string -> System.Security.Cryptography.RSA
[<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
Public Shared Function Create (algName As String) As RSA
Parametry
Zwraca
Nowe wystąpienie określonej implementacji .RSA
- Atrybuty