ECDiffieHellman.DeriveKeyTls(ECDiffieHellmanPublicKey, Byte[], Byte[]) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
파생 클래스에서 구현될 경우 TLS(전송 계층 보안) 1.1 PRF(의사 난수 함수)를 사용하여 키 파생을 수행합니다.
public:
virtual cli::array <System::Byte> ^ DeriveKeyTls(System::Security::Cryptography::ECDiffieHellmanPublicKey ^ otherPartyPublicKey, cli::array <System::Byte> ^ prfLabel, cli::array <System::Byte> ^ prfSeed);
public virtual byte[] DeriveKeyTls (System.Security.Cryptography.ECDiffieHellmanPublicKey otherPartyPublicKey, byte[] prfLabel, byte[] prfSeed);
abstract member DeriveKeyTls : System.Security.Cryptography.ECDiffieHellmanPublicKey * byte[] * byte[] -> byte[]
override this.DeriveKeyTls : System.Security.Cryptography.ECDiffieHellmanPublicKey * byte[] * byte[] -> byte[]
Public Overridable Function DeriveKeyTls (otherPartyPublicKey As ECDiffieHellmanPublicKey, prfLabel As Byte(), prfSeed As Byte()) As Byte()
매개 변수
- otherPartyPublicKey
- ECDiffieHellmanPublicKey
상대방의 공개 키입니다.
- prfLabel
- Byte[]
ASCII로 인코딩된 PRF 레이블입니다.
- prfSeed
- Byte[]
64바이트 PRF 시드입니다.
반환
공유된 암호를 키로 사용하는 TLS 1.1 PRF의 처음 48바이트입니다.
예외
파생 클래스가 이 메서드를 재정의해야 합니다.
otherPartyPublicKey
에서 사용되는 곡선의 크기는 이 키의 곡선 크기와 다릅니다.
otherPartyPublicKey
, prfLabel
또는 prfSeed
이 null
인 경우
prfSeed
의 정확한 길이가 64바이트가 아닌 경우
또는
otherPartyPublicKey
에서 사용되는 곡선은 이 키의 곡선과 다릅니다.
또는
이 인스턴스는 퍼블릭 키만 나타냅니다.
설명
이 메서드는 내부적으로 줄임표 곡선 Diffie-Hellman 키 규약을 수행하여 공유 비밀(z
)을 생성합니다.
이 메서드의 반환 값은 TLS 1.1 PRF(의사 임의 함수) PRF(z, prfLabel, prfSeed)
의 48 바이트 출력입니다.
자세한 내용은 IETF RFC 4346, 섹션 5를 참조하세요.
적용 대상
.NET