24 references to SecurityKeyEntropyMode
dotnet-svcutil-lib (24)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SecurityBindingElement.cs (3)
39
private
SecurityKeyEntropyMode
_keyEntropyMode;
59
_keyEntropyMode =
SecurityKeyEntropyMode
.CombinedEntropy; //TODO:? AcceleratedTokenProvider.defaultKeyEntropyMode;
255
public
SecurityKeyEntropyMode
KeyEntropyMode
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\SecurityKeyEntropyMode.cs (6)
18
internal static bool IsDefined(
SecurityKeyEntropyMode
value)
20
return (value ==
SecurityKeyEntropyMode
.ClientEntropy
21
|| value ==
SecurityKeyEntropyMode
.ServerEntropy
22
|| value ==
SecurityKeyEntropyMode
.CombinedEntropy);
25
internal static void Validate(
SecurityKeyEntropyMode
value)
30
typeof(
SecurityKeyEntropyMode
)));
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\TrustDriver.cs (1)
138
public abstract GenericXmlSecurityToken GetIssuedToken(RequestSecurityTokenResponse rstr, SecurityTokenResolver resolver, IList<SecurityTokenAuthenticator> allowedAuthenticators,
SecurityKeyEntropyMode
keyEntropyMode, byte[] requestorEntropy,
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSSecurityPolicy.cs (11)
804
public abstract XmlElement CreateWsspTrustAssertion(MetadataExporter exporter,
SecurityKeyEntropyMode
keyEntropyMode);
808
protected XmlElement CreateWsspTrustAssertion(string trustName, MetadataExporter exporter,
SecurityKeyEntropyMode
keyEntropyMode)
855
binding.KeyEntropyMode =
SecurityKeyEntropyMode
.CombinedEntropy;
859
binding.KeyEntropyMode =
SecurityKeyEntropyMode
.ClientEntropy;
864
binding.KeyEntropyMode =
SecurityKeyEntropyMode
.ServerEntropy;
880
public virtual XmlElement CreateWsspRequireClientEntropyAssertion(
SecurityKeyEntropyMode
keyEntropyMode)
882
if (keyEntropyMode ==
SecurityKeyEntropyMode
.ClientEntropy || keyEntropyMode ==
SecurityKeyEntropyMode
.CombinedEntropy)
892
public virtual XmlElement CreateWsspRequireServerEntropyAssertion(
SecurityKeyEntropyMode
keyEntropyMode)
894
if (keyEntropyMode ==
SecurityKeyEntropyMode
.ServerEntropy || keyEntropyMode ==
SecurityKeyEntropyMode
.CombinedEntropy)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSSecurityPolicy11.cs (1)
108
public override XmlElement CreateWsspTrustAssertion(MetadataExporter exporter,
SecurityKeyEntropyMode
keyEntropyMode)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSSecurityPolicy12.cs (1)
617
public override XmlElement CreateWsspTrustAssertion(MetadataExporter exporter,
SecurityKeyEntropyMode
keyEntropyMode)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSTrust.cs (1)
486
public override GenericXmlSecurityToken GetIssuedToken(RequestSecurityTokenResponse rstr, SecurityTokenResolver resolver, IList<SecurityTokenAuthenticator> allowedAuthenticators,
SecurityKeyEntropyMode
keyEntropyMode, byte[] requestorEntropy, string expectedTokenType,