Rijndael.Create 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
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
매개 변수에서 설명하는 알고리즘이 FIPS(Federal Information Processing Standards) 모드를 설정하여 사용되었지만 FIPS 호환이 아닌 경우
설명
매개 변수에 허용되는 값은 algName
및 System.Security.Cryptography.RijndaelManaged
입니다Rijndael
.
추가 정보
적용 대상
.NET