SHA512.Create 메서드

정의

앞으로 초기화할 이 추상 클래스의 특정한 구현을 허락합니다.

오버로드

Create()

SHA512의 기본 구현 인스턴스를 만듭니다.

Create(String)
사용되지 않음.

SHA512의 지정된 구현 인스턴스를 만듭니다.

Create()

Source:
SHA512.cs
Source:
SHA512.cs
Source:
SHA512.cs

SHA512의 기본 구현 인스턴스를 만듭니다.

public:
 static System::Security::Cryptography::SHA512 ^ Create();
public static System.Security.Cryptography.SHA512 Create ();
static member Create : unit -> System.Security.Cryptography.SHA512
Public Shared Function Create () As SHA512

반환

SHA512의 새 인스턴스입니다.

예외

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

추가 정보

적용 대상

Create(String)

Source:
SHA512.cs
Source:
SHA512.cs
Source:
SHA512.cs

주의

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

SHA512의 지정된 구현 인스턴스를 만듭니다.

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

매개 변수

hashName
String

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

반환

지정된 구현을 사용하는 SHA512입니다.

특성

예외

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

설명

가능한 값 hashName 은 SHA512, System.Security.Cryptography.SHA512, System.Security.Cryptography.SHA512Managed 및 System.Security.Cryptography.SHA512CryptoServiceProvider입니다.

추가 정보

적용 대상