ECDiffieHellman.DeriveKeyMaterial(ECDiffieHellmanPublicKey) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
파생 클래스에서 구현될 경우 공유된 비밀을 기반으로 키 파생을 수행합니다.
public:
virtual cli::array <System::Byte> ^ DeriveKeyMaterial(System::Security::Cryptography::ECDiffieHellmanPublicKey ^ otherPartyPublicKey);
public:
abstract cli::array <System::Byte> ^ DeriveKeyMaterial(System::Security::Cryptography::ECDiffieHellmanPublicKey ^ otherPartyPublicKey);
public virtual byte[] DeriveKeyMaterial (System.Security.Cryptography.ECDiffieHellmanPublicKey otherPartyPublicKey);
public abstract byte[] DeriveKeyMaterial (System.Security.Cryptography.ECDiffieHellmanPublicKey otherPartyPublicKey);
abstract member DeriveKeyMaterial : System.Security.Cryptography.ECDiffieHellmanPublicKey -> byte[]
override this.DeriveKeyMaterial : System.Security.Cryptography.ECDiffieHellmanPublicKey -> byte[]
abstract member DeriveKeyMaterial : System.Security.Cryptography.ECDiffieHellmanPublicKey -> byte[]
Public Overridable Function DeriveKeyMaterial (otherPartyPublicKey As ECDiffieHellmanPublicKey) As Byte()
Public MustOverride Function DeriveKeyMaterial (otherPartyPublicKey As ECDiffieHellmanPublicKey) As Byte()
매개 변수
- otherPartyPublicKey
- ECDiffieHellmanPublicKey
상대방의 공개 키입니다.
반환
Byte[]
공유된 비밀을 입력으로 사용하는 키 파생 함수의 결과입니다.
예외
otherPartyPublicKey
에서 사용되는 곡선의 크기는 이 키의 곡선 크기와 다릅니다.
otherPartyPublicKey
이(가) null
인 경우
설명
이 메서드의 기본 동작은 추가 또는 추가 값이 없는 해시 알고리즘으로 SHA-256을 지정하는 호출 DeriveKeyFromHash 과 동일합니다. 일부 구현에서는 이 메서드의 동작을 변경할 수 있으며 호출자는 필요한 키 파생을 수행한다고 명시적으로 말하는 메서드를 호출하는 것이 좋습니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET