RSA.Create Methode

Definition

Ermöglicht die Instanziierung bestimmter Implementierungen RSA .

Überlädt

Name Beschreibung
Create()

Erstellt eine Instanz der Standardimplementierung des RSA Algorithmus.

Create(Int32)

Erstellt einen neuen kurzlebigen RSA-Schlüssel mit der angegebenen Schlüsselgröße.

Create(RSAParameters)

Erstellt einen neuen kurzlebigen RSA-Schlüssel mit den angegebenen RSA-Schlüsselparametern.

Create(String)
Veraltet.

Erstellt eine Instanz der angegebenen Implementierung von RSA.

Create()

Quelle:
RSA.Create.OpenSsl.cs
Quelle:
RSA.Create.OpenSsl.cs
Quelle:
RSA.Create.OpenSsl.cs
Quelle:
RSA.Create.OpenSsl.cs
Quelle:
RSA.Create.OpenSsl.cs

Erstellt eine Instanz der Standardimplementierung des RSA Algorithmus.

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

Gibt zurück

RSA

Eine neue Instanz der Standardimplementierung von RSA.

Attribute

Weitere Informationen

Gilt für:

Create(Int32)

Quelle:
RSA.cs
Quelle:
RSA.cs
Quelle:
RSA.cs
Quelle:
RSA.cs
Quelle:
RSA.cs

Erstellt einen neuen kurzlebigen RSA-Schlüssel mit der angegebenen Schlüsselgröße.

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

Parameter

keySizeInBits
Int32

Die Schlüsselgröße in Bits.

Gibt zurück

RSA

Ein neuer kurzlebiger RSA-Schlüssel mit der angegebenen Schlüsselgröße.

Attribute

Ausnahmen

keySizeInBits wird von der Standardimplementierung nicht unterstützt.

Gilt für:

Create(RSAParameters)

Quelle:
RSA.cs
Quelle:
RSA.cs
Quelle:
RSA.cs
Quelle:
RSA.cs
Quelle:
RSA.cs

Erstellt einen neuen kurzlebigen RSA-Schlüssel mit den angegebenen RSA-Schlüsselparametern.

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

Parameter

parameters
RSAParameters

Die Parameter für den RSA Algorithmus.

Gibt zurück

RSA

Ein neuer kurzlebiger RSA-Schlüssel.

Attribute

Ausnahmen

parameters stellt keinen gültigen RSA-Schlüssel dar.

Weitere Informationen

Gilt für:

Create(String)

Quelle:
RSA.cs
Quelle:
RSA.cs
Quelle:
RSA.cs
Quelle:
RSA.cs
Quelle:
RSA.cs

Achtung

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

Erstellt eine Instanz der angegebenen Implementierung von 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

Parameter

algName
String

Der Name der zu verwendenden RSA Implementierung.

Gibt zurück

RSA

Eine neue Instanz der angegebenen Implementierung von RSA.

Attribute

Weitere Informationen

Gilt für: