Rijndael.Create Methode
Definitie
Belangrijk
Bepaalde informatie heeft betrekking op een voorlopige productversie die aanzienlijk kan worden gewijzigd voordat deze wordt uitgebracht. Microsoft biedt geen enkele expliciete of impliciete garanties met betrekking tot de informatie die hier wordt verstrekt.
Hiermee maakt u een cryptografisch object om het Rijndael algoritme uit te voeren.
Overloads
| Name | Description |
|---|---|
| Create() |
Hiermee maakt u een cryptografisch object om het Rijndael algoritme uit te voeren. |
| Create(String) |
Verouderd.
Hiermee maakt u een cryptografisch object om de opgegeven implementatie van het Rijndael algoritme uit te voeren. |
Create()
- Bron:
- Rijndael.cs
- Bron:
- Rijndael.cs
- Bron:
- Rijndael.cs
- Bron:
- Rijndael.cs
- Bron:
- Rijndael.cs
Hiermee maakt u een cryptografisch object om het Rijndael algoritme uit te voeren.
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
Retouren
Een cryptografisch object.
- Kenmerken
Uitzonderingen
Het algoritme is gebruikt met de FIPS-modus (Federal Information Processing Standards) ingeschakeld, maar is niet compatibel met FIPS.
Opmerkingen
De standaard implementatie Rijndael is RijndaelManaged.
Zie ook
Van toepassing op
Create(String)
- Bron:
- Rijndael.cs
- Bron:
- Rijndael.cs
- Bron:
- Rijndael.cs
- Bron:
- Rijndael.cs
- Bron:
- Rijndael.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 om de opgegeven implementatie van het Rijndael algoritme uit te voeren.
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
Parameters
Retouren
Een cryptografisch object.
- Kenmerken
Uitzonderingen
Het algoritme dat door de algName parameter wordt beschreven, is gebruikt met de FIPS-modus (Federal Information Processing Standards) ingeschakeld, maar is niet compatibel met FIPS.
Opmerkingen
Acceptabele waarden voor de algName parameter zijn Rijndael en System.Security.Cryptography.RijndaelManaged.