37 references to SecurityKeyEntropyMode
System.ServiceModel (1)
netstandard.cs (1)
213
[assembly: TypeForwardedTo(typeof(
SecurityKeyEntropyMode
))]
System.ServiceModel.Federation (7)
System\ServiceModel\Federation\WSTrustChannelSecurityTokenProvider.cs (7)
42
private
SecurityKeyEntropyMode
_keyEntropyMode;
145
(KeyEntropyMode ==
SecurityKeyEntropyMode
.ClientEntropy || KeyEntropyMode ==
SecurityKeyEntropyMode
.CombinedEntropy))
320
KeyEntropyMode =
SecurityKeyEntropyMode
.CombinedEntropy;
364
internal
SecurityKeyEntropyMode
KeyEntropyMode
369
if (!Enum.IsDefined(typeof(
SecurityKeyEntropyMode
), value))
370
throw new InvalidEnumArgumentException(nameof(value), (int)value, typeof(
SecurityKeyEntropyMode
));
System.ServiceModel.Primitives (28)
System\ServiceModel\Channels\SecurityBindingElement.cs (2)
27
private
SecurityKeyEntropyMode
_keyEntropyMode;
137
public
SecurityKeyEntropyMode
KeyEntropyMode
System\ServiceModel\Security\AcceleratedTokenProvider.cs (6)
19
internal const
SecurityKeyEntropyMode
defaultKeyEntropyMode =
SecurityKeyEntropyMode
.CombinedEntropy;
20
private
SecurityKeyEntropyMode
_keyEntropyMode = defaultKeyEntropyMode;
29
public
SecurityKeyEntropyMode
KeyEntropyMode
158
if (_keyEntropyMode ==
SecurityKeyEntropyMode
.ClientEntropy || _keyEntropyMode ==
SecurityKeyEntropyMode
.CombinedEntropy)
System\ServiceModel\Security\RequestSecurityTokenResponse.cs (1)
631
public virtual GenericXmlSecurityToken GetIssuedToken(SecurityTokenResolver resolver, IList<SecurityTokenAuthenticator> allowedAuthenticators,
SecurityKeyEntropyMode
keyEntropyMode, byte[] requestorEntropy, string expectedTokenType,
System\ServiceModel\Security\SecurityKeyEntropyMode.cs (6)
19
internal static bool IsDefined(
SecurityKeyEntropyMode
value)
21
return (value ==
SecurityKeyEntropyMode
.ClientEntropy
22
|| value ==
SecurityKeyEntropyMode
.ServerEntropy
23
|| value ==
SecurityKeyEntropyMode
.CombinedEntropy);
26
internal static void Validate(
SecurityKeyEntropyMode
value)
31
typeof(
SecurityKeyEntropyMode
)));
System\ServiceModel\Security\SecuritySessionSecurityTokenProvider.cs (5)
31
private
SecurityKeyEntropyMode
_keyEntropyMode;
47
_keyEntropyMode =
SecurityKeyEntropyMode
.CombinedEntropy;
63
public
SecurityKeyEntropyMode
KeyEntropyMode
565
if (KeyEntropyMode ==
SecurityKeyEntropyMode
.ClientEntropy || KeyEntropyMode ==
SecurityKeyEntropyMode
.CombinedEntropy)
System\ServiceModel\Security\TrustDriver.cs (1)
132
public abstract GenericXmlSecurityToken GetIssuedToken(RequestSecurityTokenResponse rstr, SecurityTokenResolver resolver, IList<SecurityTokenAuthenticator> allowedAuthenticators,
SecurityKeyEntropyMode
keyEntropyMode, byte[] requestorEntropy,
System\ServiceModel\Security\WSTrust.cs (7)
595
public override GenericXmlSecurityToken GetIssuedToken(RequestSecurityTokenResponse rstr, SecurityTokenResolver resolver, IList<SecurityTokenAuthenticator> allowedAuthenticators,
SecurityKeyEntropyMode
keyEntropyMode, byte[] requestorEntropy, string expectedTokenType,
648
if (keyEntropyMode ==
SecurityKeyEntropyMode
.ClientEntropy)
661
else if (keyEntropyMode ==
SecurityKeyEntropyMode
.ServerEntropy)
1255
private static void ValidateRequestorEntropy(SecurityToken entropy,
SecurityKeyEntropyMode
mode)
1257
if ((mode ==
SecurityKeyEntropyMode
.ClientEntropy || mode ==
SecurityKeyEntropyMode
.CombinedEntropy)
1262
if (mode ==
SecurityKeyEntropyMode
.ServerEntropy && entropy != null)
System.ServiceModel.Security (1)
DotNetForwards.cs (1)
16
[assembly: TypeForwardedTo(typeof(System.ServiceModel.Security.
SecurityKeyEntropyMode
))]