Rijndael.Create 메서드

정의

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

오버로드

Name Description
Create()

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

Create(String)
사용되지 않음.

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

Create()

Source:
Rijndael.cs
Source:
Rijndael.cs
Source:
Rijndael.cs
Source:
Rijndael.cs
Source:
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(Federal Information Processing Standards) 모드를 사용하도록 설정된 상태에서 사용되었지만 FIPS와 호환되지 않습니다.

설명

Rijndael의 기본 구현은 RijndaelManaged입니다.

추가 정보

적용 대상

Create(String)

Source:
Rijndael.cs
Source:
Rijndael.cs
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);
[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(Federal Information Processing Standards) 모드를 사용하도록 설정된 상태에서 사용되었지만 FIPS와 호환되지 않습니다.

설명

매개 변수에 허용되는 값은 algName 다음과 같습니다RijndaelSystem.Security.Cryptography.RijndaelManaged.

추가 정보

적용 대상