MD5.Create 메서드

정의

이 추상 클래스의 특정 구현을 만들 수 있습니다.

오버로드

Name Description
Create()

해시 알고리즘의 기본 구현 인스턴스를 MD5 만듭니다.

Create(String)
사용되지 않음.

해시 알고리즘의 지정된 구현 인스턴스를 MD5 만듭니다.

Create()

Source:
MD5.cs
Source:
MD5.cs
Source:
MD5.cs
Source:
MD5.cs
Source:
MD5.cs

해시 알고리즘의 기본 구현 인스턴스를 MD5 만듭니다.

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

반품

MD5

해시 알고리즘의 MD5 새 인스턴스입니다.

특성

예외

이 알고리즘은 FIPS(Federal Information Processing Standards) 모드를 사용하도록 설정된 상태에서 사용되었지만 FIPS와 호환되지 않습니다.

추가 정보

적용 대상

Create(String)

Source:
MD5.cs
Source:
MD5.cs
Source:
MD5.cs
Source:
MD5.cs
Source:
MD5.cs

주의

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

해시 알고리즘의 지정된 구현 인스턴스를 MD5 만듭니다.

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

매개 변수

algName
String

사용할 특정 구현의 MD5 이름입니다.

반품

MD5

지정된 .의 구현에 대한 새 인스턴스입니다 MD5.

특성

예외

매개 변수에 의해 설명된 algName 알고리즘은 FIPS(Federal Information Processing Standards) 모드를 사용하도록 설정된 상태에서 사용되었지만 FIPS와 호환되지 않습니다.

설명

가능한 값 algName 은 다음과 System.Security.Cryptography.MD5MD5System.Security.Cryptography.MD5CryptoServiceProviderSystem.Security.Cryptography.MD5Managed같습니다.

추가 정보

적용 대상