24 references to SecurityKeyEntropyMode
dotnet-svcutil-lib (24)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SecurityBindingElement.cs (3)
39private SecurityKeyEntropyMode _keyEntropyMode; 59_keyEntropyMode = SecurityKeyEntropyMode.CombinedEntropy; //TODO:? AcceleratedTokenProvider.defaultKeyEntropyMode; 255public SecurityKeyEntropyMode KeyEntropyMode
FrameworkFork\System.ServiceModel\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)));
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\TrustDriver.cs (1)
138public abstract GenericXmlSecurityToken GetIssuedToken(RequestSecurityTokenResponse rstr, SecurityTokenResolver resolver, IList<SecurityTokenAuthenticator> allowedAuthenticators, SecurityKeyEntropyMode keyEntropyMode, byte[] requestorEntropy,
FrameworkFork\System.ServiceModel\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)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSSecurityPolicy11.cs (1)
108public override XmlElement CreateWsspTrustAssertion(MetadataExporter exporter, SecurityKeyEntropyMode keyEntropyMode)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSSecurityPolicy12.cs (1)
617public override XmlElement CreateWsspTrustAssertion(MetadataExporter exporter, SecurityKeyEntropyMode keyEntropyMode)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSTrust.cs (1)
486public override GenericXmlSecurityToken GetIssuedToken(RequestSecurityTokenResponse rstr, SecurityTokenResolver resolver, IList<SecurityTokenAuthenticator> allowedAuthenticators, SecurityKeyEntropyMode keyEntropyMode, byte[] requestorEntropy, string expectedTokenType,