SHA1.Create 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
앞으로 초기화할 이 추상 클래스의 특정한 구현을 허락합니다.
오버로드
Create() |
SHA1의 기본 구현 인스턴스를 만듭니다. |
Create(String) |
사용되지 않음.
SHA1의 지정된 구현 인스턴스를 만듭니다. |
Create()
- Source:
- SHA1.cs
- Source:
- SHA1.cs
- Source:
- SHA1.cs
SHA1의 기본 구현 인스턴스를 만듭니다.
public:
static System::Security::Cryptography::SHA1 ^ Create();
public static System.Security.Cryptography.SHA1 Create ();
static member Create : unit -> System.Security.Cryptography.SHA1
Public Shared Function Create () As SHA1
반환
SHA1의 새 인스턴스입니다.
설명
의 SHA1 기본 구현은 입니다 SHA1CryptoServiceProvider.
추가 정보
적용 대상
Create(String)
- Source:
- SHA1.cs
- Source:
- SHA1.cs
- Source:
- SHA1.cs
주의
Cryptographic factory methods accepting an algorithm name are obsolete. Use the parameterless Create factory method on the algorithm type instead.
SHA1의 지정된 구현 인스턴스를 만듭니다.
public:
static System::Security::Cryptography::SHA1 ^ Create(System::String ^ hashName);
public static System.Security.Cryptography.SHA1? 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.SHA1? Create (string hashName);
public static System.Security.Cryptography.SHA1 Create (string hashName);
static member Create : string -> System.Security.Cryptography.SHA1
[<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.SHA1
Public Shared Function Create (hashName As String) As SHA1
매개 변수
반환
지정된 구현을 사용하는 SHA1입니다.
- 특성
설명
SHA1과의 충돌 문제 때문에, Microsoft에서는 SHA256 이상을 기반으로 하는 보안 모델을 권장합니다.
추가 정보
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET