Rijndael.Create 메서드

정의

Rijndael 알고리즘을 수행할 암호화 개체를 만듭니다.

오버로드

Create()

Rijndael 알고리즘을 수행할 암호화 개체를 만듭니다.

Create(String)
사용되지 않음.

Rijndael 알고리즘의 지정된 구현을 수행할 암호화 개체를 만듭니다.

Create()

Source:
Rijndael.cs
Source:
Rijndael.cs
Source:
Rijndael.cs

Rijndael 알고리즘을 수행할 암호화 개체를 만듭니다.

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

반환

암호화 개체입니다.

특성

예외

FIPS(Federal Information Processing Standards) 모드를 사용하도록 설정한 상태에서 알고리즘이 사용되었지만 이 알고리즘이 FIPS와 호환되지 않는 경우

설명

Rijndael 기본 구현은 입니다 RijndaelManaged.

추가 정보

적용 대상

Create(String)

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

매개 변수

algName
String

만들 Rijndael의 특정 구현에 대한 이름입니다.

반환

암호화 개체입니다.

특성

예외

algName 매개 변수에서 설명하는 알고리즘이 FIPS(Federal Information Processing Standards) 모드를 설정하여 사용되었지만 FIPS 호환이 아닌 경우

설명

매개 변수에 허용되는 값은 algNameSystem.Security.Cryptography.RijndaelManaged입니다Rijndael.

추가 정보

적용 대상