Aes.Create Methode

Definitie

Hiermee maakt u een cryptografisch object dat wordt gebruikt om het symmetrische algoritme uit te voeren.

Overloads

Name Description
Create()

Hiermee maakt u een cryptografisch object dat wordt gebruikt om het symmetrische algoritme uit te voeren.

Create(String)
Verouderd.

Hiermee maakt u een cryptografisch object dat de implementatie van AES aangeeft die moet worden gebruikt om het symmetrische algoritme uit te voeren.

Create()

Bron:
Aes.cs
Bron:
Aes.cs
Bron:
Aes.cs
Bron:
Aes.cs
Bron:
Aes.cs

Hiermee maakt u een cryptografisch object dat wordt gebruikt om het symmetrische algoritme uit te voeren.

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

Retouren

Aes

Een cryptografisch object dat wordt gebruikt om het symmetrische algoritme uit te voeren.

Kenmerken

Van toepassing op

Create(String)

Bron:
Aes.cs
Bron:
Aes.cs
Bron:
Aes.cs
Bron:
Aes.cs
Bron:
Aes.cs

Let op

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

Hiermee maakt u een cryptografisch object dat de implementatie van AES aangeeft die moet worden gebruikt om het symmetrische algoritme uit te voeren.

public:
 static System::Security::Cryptography::Aes ^ Create(System::String ^ algorithmName);
[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.Aes? Create(string algorithmName);
public static System.Security.Cryptography.Aes? Create(string algorithmName);
[System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("The default algorithm implementations might be removed, use strong type references like 'RSA.Create()' instead.")]
public static System.Security.Cryptography.Aes? Create(string algorithmName);
public static System.Security.Cryptography.Aes Create(string algorithmName);
[<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.Aes
static member Create : string -> System.Security.Cryptography.Aes
[<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.Aes
Public Shared Function Create (algorithmName As String) As Aes

Parameters

algorithmName
String

De naam van de specifieke implementatie van AES die moet worden gebruikt.

Retouren

Aes

Een cryptografisch object dat wordt gebruikt om het symmetrische algoritme uit te voeren.

Kenmerken

Uitzonderingen

De algorithmName parameter is null.

Opmerkingen

Mogelijke algorithmName waarden zijn: AES, AesCryptoServiceProvider, System.Security.Cryptography.AesCryptoServiceProvider, AesManaged en System.Security.Cryptography.AesManaged.

Van toepassing op