Rijndael.Create Metod

Definition

Skapar ett kryptografiskt objekt för att utföra algoritmen Rijndael .

Överlagringar

Name Description
Create()

Skapar ett kryptografiskt objekt för att utföra algoritmen Rijndael .

Create(String)
Föråldrad.

Skapar ett kryptografiskt objekt för att utföra den angivna implementeringen av algoritmen Rijndael .

Create()

Källa:
Rijndael.cs
Källa:
Rijndael.cs
Källa:
Rijndael.cs
Källa:
Rijndael.cs
Källa:
Rijndael.cs

Skapar ett kryptografiskt objekt för att utföra algoritmen Rijndael .

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

Returer

Ett kryptografiskt objekt.

Attribut

Undantag

Algoritmen användes med FIPS-läge (Federal Information Processing Standards) aktiverat, men är inte FIPS-kompatibelt.

Kommentarer

Standardimplementeringen av Rijndael är RijndaelManaged.

Se även

Gäller för

Create(String)

Källa:
Rijndael.cs
Källa:
Rijndael.cs
Källa:
Rijndael.cs
Källa:
Rijndael.cs
Källa:
Rijndael.cs

Varning

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

Skapar ett kryptografiskt objekt för att utföra den angivna implementeringen av algoritmen Rijndael .

public:
 static System::Security::Cryptography::Rijndael ^ 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.Rijndael? Create(string algName);
public static System.Security.Cryptography.Rijndael? 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.Rijndael? Create(string algName);
public static System.Security.Cryptography.Rijndael 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.Rijndael
static member Create : string -> System.Security.Cryptography.Rijndael
[<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.Rijndael
Public Shared Function Create (algName As String) As Rijndael

Parametrar

algName
String

Namnet på den specifika implementeringen av Rijndael att skapa.

Returer

Ett kryptografiskt objekt.

Attribut

Undantag

Algoritmen som beskrivs av parametern algName användes med FIPS-läge (Federal Information Processing Standards) aktiverat, men är inte FIPS-kompatibelt.

Kommentarer

Acceptabla värden för parametern algName är Rijndael och System.Security.Cryptography.RijndaelManaged.

Se även

Gäller för