Aes.Create 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
대칭 알고리즘을 수행하는 데 사용할 암호화 개체를 만듭니다.
오버로드
Create() |
대칭 알고리즘을 수행하는 데 사용할 암호화 개체를 만듭니다. |
Create(String) |
사용되지 않음.
대칭 알고리즘을 수행하는 데 사용할 AES의 구현을 지정하는 암호화 개체를 만듭니다. |
Create()
- Source:
- Aes.cs
- Source:
- Aes.cs
- Source:
- Aes.cs
대칭 알고리즘을 수행하는 데 사용할 암호화 개체를 만듭니다.
public:
static System::Security::Cryptography::Aes ^ Create();
public static System.Security.Cryptography.Aes Create ();
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public static System.Security.Cryptography.Aes Create ();
static member Create : unit -> System.Security.Cryptography.Aes
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
static member Create : unit -> System.Security.Cryptography.Aes
Public Shared Function Create () As Aes
반환
대칭 알고리즘을 수행하는 데 사용할 암호화 개체입니다.
- 특성
적용 대상
Create(String)
- Source:
- Aes.cs
- Source:
- Aes.cs
- Source:
- Aes.cs
주의
Cryptographic factory methods accepting an algorithm name are obsolete. Use the parameterless Create factory method on the algorithm type instead.
대칭 알고리즘을 수행하는 데 사용할 AES의 구현을 지정하는 암호화 개체를 만듭니다.
public:
static System::Security::Cryptography::Aes ^ Create(System::String ^ algorithmName);
public static System.Security.Cryptography.Aes? Create (string algorithmName);
[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.Aes? Create (string algorithmName);
public static System.Security.Cryptography.Aes Create (string algorithmName);
static member Create : string -> System.Security.Cryptography.Aes
[<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.Aes
Public Shared Function Create (algorithmName As String) As Aes
매개 변수
- algorithmName
- String
사용할 AES의 특정 구현 이름입니다.
반환
대칭 알고리즘을 수행하는 데 사용할 암호화 개체입니다.
- 특성
예외
algorithmName
매개 변수가 null
인 경우
설명
가능한 algorithmName
값은 "AES", "AesCryptoServiceProvider", "System.Security.Cryptography.AesCryptoServiceProvider", "AesManaged" 및 "System.Security.Cryptography.AesManaged"입니다.
적용 대상
.NET