2 types derived from SecurityAlgorithmSuite
System.ServiceModel.Primitives (2)
System\ServiceModel\Security\SecurityAlgorithmSuite.cs (2)
127public class Basic256SecurityAlgorithmSuite : SecurityAlgorithmSuite 158public class TripleDesSecurityAlgorithmSuite : SecurityAlgorithmSuite
59 references to SecurityAlgorithmSuite
System.ServiceModel (1)
netstandard.cs (1)
211[assembly: TypeForwardedTo(typeof(SecurityAlgorithmSuite))]
System.ServiceModel.Federation (3)
System\ServiceModel\Federation\WSTrustChannelSecurityTokenProvider.cs (1)
43private readonly SecurityAlgorithmSuite _securityAlgorithmSuite;
System\ServiceModel\Federation\WSTrustUtilities.cs (2)
39internal static BinarySecretSecurityToken GetProofToken(WsTrustRequest request, Microsoft.IdentityModel.Protocols.WsTrust.RequestSecurityTokenResponse response, WsSerializationContext serializationContext, SecurityAlgorithmSuite algorithmSuite) 133internal static WCFSecurityToken CreateGenericXmlSecurityToken(WsTrustRequest request, WsTrustResponse trustResponse, WsSerializationContext serializationContext, SecurityAlgorithmSuite algorithmSuite)
System.ServiceModel.Federation.Tests (1)
WSTrustChannelSecurityTokenProviderTest.cs (1)
57tokenRequirement.Properties["http://schemas.microsoft.com/ws/2006/05/servicemodel/securitytokenrequirement/SecurityAlgorithmSuite"] = System.ServiceModel.Security.SecurityAlgorithmSuite.Default;
System.ServiceModel.Http (6)
System\ServiceModel\BasicHttpMessageSecurity.cs (3)
17SecurityAlgorithmSuite algorithmSuite; 22algorithmSuite = SecurityAlgorithmSuite.Default; 38public SecurityAlgorithmSuite AlgorithmSuite
System\ServiceModel\MessageSecurityOverHttp.cs (3)
17private SecurityAlgorithmSuite _algorithmSuite; 24_algorithmSuite = SecurityAlgorithmSuite.Default; 42public SecurityAlgorithmSuite AlgorithmSuite
System.ServiceModel.NetTcp (5)
System\ServiceModel\MessageSecurityOverTcp.cs (5)
16private SecurityAlgorithmSuite _algorithmSuite; 21_algorithmSuite = SecurityAlgorithmSuite.Default; 52[DefaultValue(typeof(SecurityAlgorithmSuite), nameof(SecurityAlgorithmSuite.Default))] 53public SecurityAlgorithmSuite AlgorithmSuite
System.ServiceModel.Primitives (42)
System\ServiceModel\Channels\SecurityBindingElement.cs (4)
19internal static readonly SecurityAlgorithmSuite defaultDefaultAlgorithmSuite = SecurityAlgorithmSuite.Default; 26private SecurityAlgorithmSuite _defaultAlgorithmSuite; 123public SecurityAlgorithmSuite DefaultAlgorithmSuite
System\ServiceModel\Security\IssuanceTokenProviderBase.cs (2)
40private SecurityAlgorithmSuite _algorithmSuite; 120public SecurityAlgorithmSuite SecurityAlgorithmSuite
System\ServiceModel\Security\ReceiveSecurityHeader.cs (1)
88SecurityAlgorithmSuite algorithmSuite,
System\ServiceModel\Security\SecurityAlgorithmSuite.cs (7)
13private static SecurityAlgorithmSuite s_basic256; 14private static SecurityAlgorithmSuite s_tripleDes; 15private static SecurityAlgorithmSuite s_basic256Sha256; 17static public SecurityAlgorithmSuite Default 25static public SecurityAlgorithmSuite Basic256 38static public SecurityAlgorithmSuite TripleDes 51static public SecurityAlgorithmSuite Basic256Sha256
System\ServiceModel\Security\SecurityHeader.cs (2)
25SecurityStandardsManager standardsManager, SecurityAlgorithmSuite algorithmSuite, 42public SecurityAlgorithmSuite AlgorithmSuite { get; }
System\ServiceModel\Security\SecurityProtocolFactory.cs (6)
73private SecurityAlgorithmSuite _incomingAlgorithmSuite = SecurityAlgorithmSuite.Default; 81private SecurityAlgorithmSuite _outgoingAlgorithmSuite = SecurityAlgorithmSuite.Default; 196public SecurityAlgorithmSuite IncomingAlgorithmSuite 256public SecurityAlgorithmSuite OutgoingAlgorithmSuite
System\ServiceModel\Security\SecuritySessionSecurityTokenProvider.cs (2)
28private SecurityAlgorithmSuite _securityAlgorithmSuite; 50public SecurityAlgorithmSuite SecurityAlgorithmSuite
System\ServiceModel\Security\SecurityStandardsManager.cs (2)
131SecurityAlgorithmSuite algorithmSuite, MessageDirection direction) 138SecurityAlgorithmSuite algorithmSuite, MessageDirection direction)
System\ServiceModel\Security\SecurityVersion.cs (7)
72SecurityAlgorithmSuite algorithmSuite, 79SecurityAlgorithmSuite algorithmSuite, 108SecurityAlgorithmSuite algorithmSuite, MessageDirection direction) 165SecurityAlgorithmSuite algorithmSuite, 174SecurityAlgorithmSuite algorithmSuite, 208SecurityAlgorithmSuite algorithmSuite, 222SecurityAlgorithmSuite algorithmSuite, MessageDirection direction)
System\ServiceModel\Security\SendSecurityHeader.cs (1)
42SecurityAlgorithmSuite algorithmSuite,
System\ServiceModel\Security\Tokens\ServiceModelSecurityTokenRequirement.cs (2)
95public SecurityAlgorithmSuite SecurityAlgorithmSuite 99return GetPropertyOrDefault<SecurityAlgorithmSuite>(SecurityAlgorithmSuiteProperty, null);
System\ServiceModel\Security\WSSecurityOneDotOneReceiveSecurityHeader.cs (1)
15SecurityAlgorithmSuite algorithmSuite,
System\ServiceModel\Security\WSSecurityOneDotOneSendSecurityHeader.cs (1)
15SecurityAlgorithmSuite algorithmSuite,
System\ServiceModel\Security\WSSecurityOneDotZeroReceiveSecurityHeader.cs (1)
15SecurityAlgorithmSuite algorithmSuite,
System\ServiceModel\Security\WSSecurityOneDotZeroSendSecurityHeader.cs (2)
38SecurityAlgorithmSuite algorithmSuite, 499SecurityAlgorithmSuite suite = AlgorithmSuite;
System\ServiceModel\Security\WSTrust.cs (1)
1243internal static void ValidateRequestedKeySize(int keySize, SecurityAlgorithmSuite algorithmSuite)
System.ServiceModel.Security (1)
DotNetForwards.cs (1)
20[assembly: TypeForwardedTo(typeof(System.ServiceModel.Security.SecurityAlgorithmSuite))]