68 references to SecurityKeyEntropyMode
System.ServiceModel (68)
System\ServiceModel\Channels\SecurityBindingElement.cs (2)
40SecurityKeyEntropyMode keyEntropyMode; 256public SecurityKeyEntropyMode KeyEntropyMode
System\ServiceModel\Configuration\IssuedTokenClientElement.cs (2)
67public SecurityKeyEntropyMode DefaultKeyEntropyMode 69get { return (SecurityKeyEntropyMode)base[ConfigurationStrings.DefaultKeyEntropyMode]; }
System\ServiceModel\Configuration\Properties.cs (4)
1461properties.Add(new ConfigurationProperty("defaultKeyEntropyMode", typeof(System.ServiceModel.Security.SecurityKeyEntropyMode), System.ServiceModel.Security.SecurityKeyEntropyMode.CombinedEntropy, null, new System.ServiceModel.Configuration.ServiceModelEnumValidator(typeof(System.ServiceModel.Security.SecurityKeyEntropyModeHelper)), System.Configuration.ConfigurationPropertyOptions.None)); 2998properties.Add(new ConfigurationProperty("keyEntropyMode", typeof(System.ServiceModel.Security.SecurityKeyEntropyMode), System.ServiceModel.Security.SecurityKeyEntropyMode.CombinedEntropy, null, new System.ServiceModel.Configuration.ServiceModelEnumValidator(typeof(System.ServiceModel.Security.SecurityKeyEntropyModeHelper)), System.Configuration.ConfigurationPropertyOptions.None));
System\ServiceModel\Configuration\SecurityElementBase.cs (2)
102public SecurityKeyEntropyMode KeyEntropyMode 104get { return (SecurityKeyEntropyMode)base[ConfigurationStrings.KeyEntropyMode]; }
System\ServiceModel\Security\AcceleratedTokenAuthenticator.cs (2)
23SecurityKeyEntropyMode keyEntropyMode; 83public SecurityKeyEntropyMode KeyEntropyMode
System\ServiceModel\Security\AcceleratedTokenProvider.cs (6)
20internal const SecurityKeyEntropyMode defaultKeyEntropyMode = SecurityKeyEntropyMode.CombinedEntropy; 21SecurityKeyEntropyMode keyEntropyMode = defaultKeyEntropyMode; 35public SecurityKeyEntropyMode KeyEntropyMode 229if (this.keyEntropyMode == SecurityKeyEntropyMode.ClientEntropy || this.keyEntropyMode == SecurityKeyEntropyMode.CombinedEntropy)
System\ServiceModel\Security\ClientCredentialsSecurityTokenManager.cs (1)
385SecurityKeyEntropyMode GetIssuerBindingKeyEntropyModeOrDefault(Binding issuerBinding)
System\ServiceModel\Security\IssuedTokenClientCredential.cs (2)
15SecurityKeyEntropyMode defaultKeyEntropyMode = AcceleratedTokenProvider.defaultKeyEntropyMode; 76public SecurityKeyEntropyMode DefaultKeyEntropyMode
System\ServiceModel\Security\RequestSecurityTokenResponse.cs (2)
657public GenericXmlSecurityToken GetIssuedToken(SecurityTokenResolver resolver, IList<SecurityTokenAuthenticator> allowedAuthenticators, SecurityKeyEntropyMode keyEntropyMode, byte[] requestorEntropy, string expectedTokenType, 663public virtual GenericXmlSecurityToken GetIssuedToken(SecurityTokenResolver resolver, IList<SecurityTokenAuthenticator> allowedAuthenticators, SecurityKeyEntropyMode keyEntropyMode, byte[] requestorEntropy, string expectedTokenType,
System\ServiceModel\Security\SecurityKeyEntropyMode.cs (6)
18internal static bool IsDefined(SecurityKeyEntropyMode value) 20return (value == SecurityKeyEntropyMode.ClientEntropy 21|| value == SecurityKeyEntropyMode.ServerEntropy 22|| value == SecurityKeyEntropyMode.CombinedEntropy); 25internal static void Validate(SecurityKeyEntropyMode value) 30typeof(SecurityKeyEntropyMode)));
System\ServiceModel\Security\SecuritySessionSecurityTokenAuthenticator.cs (2)
38SecurityKeyEntropyMode keyEntropyMode; 102public SecurityKeyEntropyMode KeyEntropyMode
System\ServiceModel\Security\SecuritySessionSecurityTokenProvider.cs (4)
33SecurityKeyEntropyMode keyEntropyMode; 83public SecurityKeyEntropyMode KeyEntropyMode 651if (this.KeyEntropyMode == SecurityKeyEntropyMode.ClientEntropy || this.KeyEntropyMode == SecurityKeyEntropyMode.CombinedEntropy)
System\ServiceModel\Security\SspiNegotiationTokenProvider.cs (1)
365SecurityKeyEntropyMode.ServerEntropy, null, this.SecurityContextTokenUri, authorizationPolicies, 0, false);
System\ServiceModel\Security\Tokens\IssuedSecurityTokenProvider.cs (8)
136public SecurityKeyEntropyMode KeyEntropyMode 494internal const SecurityKeyEntropyMode defaultKeyEntropyMode = SecurityKeyEntropyMode.CombinedEntropy; 502SecurityKeyEntropyMode keyEntropyMode; 543public SecurityKeyEntropyMode KeyEntropyMode 842if (this.KeyEntropyMode == SecurityKeyEntropyMode.CombinedEntropy || this.KeyEntropyMode == SecurityKeyEntropyMode.ClientEntropy) 924if (this.keyType == SecurityKeyType.SymmetricKey && this.KeyEntropyMode == SecurityKeyEntropyMode.CombinedEntropy)
System\ServiceModel\Security\TrustDriver.cs (1)
146public abstract GenericXmlSecurityToken GetIssuedToken(RequestSecurityTokenResponse rstr, SecurityTokenResolver resolver, IList<SecurityTokenAuthenticator> allowedAuthenticators, SecurityKeyEntropyMode keyEntropyMode, byte[] requestorEntropy,
System\ServiceModel\Security\WSSecurityPolicy.cs (11)
804public abstract XmlElement CreateWsspTrustAssertion(MetadataExporter exporter, SecurityKeyEntropyMode keyEntropyMode); 808protected XmlElement CreateWsspTrustAssertion(string trustName, MetadataExporter exporter, SecurityKeyEntropyMode keyEntropyMode) 855binding.KeyEntropyMode = SecurityKeyEntropyMode.CombinedEntropy; 859binding.KeyEntropyMode = SecurityKeyEntropyMode.ClientEntropy; 864binding.KeyEntropyMode = SecurityKeyEntropyMode.ServerEntropy; 880public virtual XmlElement CreateWsspRequireClientEntropyAssertion(SecurityKeyEntropyMode keyEntropyMode) 882if (keyEntropyMode == SecurityKeyEntropyMode.ClientEntropy || keyEntropyMode == SecurityKeyEntropyMode.CombinedEntropy) 892public virtual XmlElement CreateWsspRequireServerEntropyAssertion(SecurityKeyEntropyMode keyEntropyMode) 894if (keyEntropyMode == SecurityKeyEntropyMode.ServerEntropy || keyEntropyMode == SecurityKeyEntropyMode.CombinedEntropy)
System\ServiceModel\Security\WSSecurityPolicy11.cs (1)
108public override XmlElement CreateWsspTrustAssertion(MetadataExporter exporter, SecurityKeyEntropyMode keyEntropyMode)
System\ServiceModel\Security\WSSecurityPolicy12.cs (1)
617public override XmlElement CreateWsspTrustAssertion(MetadataExporter exporter, SecurityKeyEntropyMode keyEntropyMode)
System\ServiceModel\Security\WSTrust.cs (10)
654public override GenericXmlSecurityToken GetIssuedToken(RequestSecurityTokenResponse rstr, SecurityTokenResolver resolver, IList<SecurityTokenAuthenticator> allowedAuthenticators, SecurityKeyEntropyMode keyEntropyMode, byte[] requestorEntropy, string expectedTokenType, 702if (keyEntropyMode == SecurityKeyEntropyMode.ClientEntropy) 715else if (keyEntropyMode == SecurityKeyEntropyMode.ServerEntropy) 1567static void ValidateRequestorEntropy(SecurityToken entropy, SecurityKeyEntropyMode mode) 1569if ((mode == SecurityKeyEntropyMode.ClientEntropy || mode == SecurityKeyEntropyMode.CombinedEntropy) 1574if (mode == SecurityKeyEntropyMode.ServerEntropy && entropy != null) 1580internal static void ProcessRstAndIssueKey(RequestSecurityToken requestSecurityToken, SecurityTokenResolver resolver, SecurityKeyEntropyMode keyEntropyMode, SecurityAlgorithmSuite algorithmSuite, out int issuedKeySize, out byte[] issuerEntropy, out byte[] proofKey, 1607if (keyEntropyMode == SecurityKeyEntropyMode.ClientEntropy) 1631if (keyEntropyMode == SecurityKeyEntropyMode.ServerEntropy)