IssuedTokenClientCredential.DefaultKeyEntropyMode 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
SecurityKeyEntropyMode의 기본값을 가져오거나 설정합니다.
public:
property System::ServiceModel::Security::SecurityKeyEntropyMode DefaultKeyEntropyMode { System::ServiceModel::Security::SecurityKeyEntropyMode get(); void set(System::ServiceModel::Security::SecurityKeyEntropyMode value); };
public System.ServiceModel.Security.SecurityKeyEntropyMode DefaultKeyEntropyMode { get; set; }
member this.DefaultKeyEntropyMode : System.ServiceModel.Security.SecurityKeyEntropyMode with get, set
Public Property DefaultKeyEntropyMode As SecurityKeyEntropyMode
속성 값
SecurityKeyEntropyMode의 값 기본값은 CombinedEntropy입니다.
예외
읽기 전용 자격 증명을 set
하려고 한 경우
예제
이 코드에서는 이 속성을 설정하는 방법을 보여 줍니다.
itcc.DefaultKeyEntropyMode = SecurityKeyEntropyMode.ServerEntropy;
itcc.DefaultKeyEntropyMode = SecurityKeyEntropyMode.ServerEntropy
설명
클라이언트가 발급된 토큰을 가져오기 위해 보안 토큰 서비스와 WS-Trust 교환을 수행할 때 공유 대칭 키에 도착하기 위해 보안 토큰 서비스와 키 엔트로피를 교환해야 할 때도 있습니다. 보안 토큰 서비스는 일반적으로 해당 바인딩을 사용할 엔트로피 교환 메커니즘을 지정합니다. 보안 토큰 서비스의 바인딩에 메커니즘이 지정되지 않으면 DefaultKeyEntropyMode
값이 보안 토큰 서비스와 엔트로피를 교환하는 데 사용합니다.