Rijndael.Create Метод

Определение

Создает криптографический объект для выполнения алгоритма Rijndael .

Перегрузки

Имя Описание
Create()

Создает криптографический объект для выполнения алгоритма Rijndael .

Create(String)
Устаревшие..

Создает криптографический объект для выполнения указанной реализации алгоритма Rijndael .

Create()

Исходный код:
Rijndael.cs
Исходный код:
Rijndael.cs
Исходный код:
Rijndael.cs
Исходный код:
Rijndael.cs
Исходный код:
Rijndael.cs

Создает криптографический объект для выполнения алгоритма 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

Возвращаемое значение

Криптографический объект.

Атрибуты

Исключения

Алгоритм использовался с включенным режимом федеральной информационной обработки (FIPS), но не совместим с FIPS.

Комментарии

Реализация по умолчанию RijndaelRijndaelManaged.

См. также раздел

Применяется к

Create(String)

Исходный код:
Rijndael.cs
Исходный код:
Rijndael.cs
Исходный код:
Rijndael.cs
Исходный код:
Rijndael.cs
Исходный код:
Rijndael.cs

Внимание

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

Создает криптографический объект для выполнения указанной реализации алгоритма 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

Параметры

algName
String

Имя создаваемой Rijndael реализации.

Возвращаемое значение

Криптографический объект.

Атрибуты

Исключения

Алгоритм, описанный algName параметром, использовался с включенным режимом федеральных стандартов обработки информации (FIPS), но не совместим с FIPS.

Комментарии

Допустимые значения для algName параметра: Rijndael и System.Security.Cryptography.RijndaelManaged.

См. также раздел

Применяется к