1 type derived from SecurityKey
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\IdentityModel\Tokens\SymmetricSecurityKey.cs (1)
9internal abstract class SymmetricSecurityKey : SecurityKey
46 references to SecurityKey
dotnet-svcutil-lib (46)
FrameworkFork\System.ServiceModel\System\IdentityModel\SecurityUtils.cs (3)
278internal static ReadOnlyCollection<SecurityKey> CreateSymmetricSecurityKeys(byte[] key) 280List<SecurityKey> temp = new List<SecurityKey>(1);
FrameworkFork\System.ServiceModel\System\IdentityModel\Selectors\SecurityTokenResolver.cs (7)
60public SecurityKey ResolveSecurityKey(SecurityKeyIdentifierClause keyIdentifierClause) 66SecurityKey key; 74public bool TryResolveSecurityKey(SecurityKeyIdentifierClause keyIdentifierClause, out SecurityKey key) 95protected abstract bool TryResolveSecurityKeyCore(SecurityKeyIdentifierClause keyIdentifierClause, out SecurityKey key); 116protected override bool TryResolveSecurityKeyCore(SecurityKeyIdentifierClause keyIdentifierClause, out SecurityKey key) 124SecurityKey securityKey = _tokens[i].ResolveKeyIdentifierClause(keyIdentifierClause); 140SecurityKey unwrappingSecurityKey = null;
FrameworkFork\System.ServiceModel\System\IdentityModel\Tokens\KerberosRequestorSecurityToken.cs (2)
52public override ReadOnlyCollection<SecurityKey> SecurityKeys 54get { return EmptyReadOnlyCollection<SecurityKey>.Instance; }
FrameworkFork\System.ServiceModel\System\IdentityModel\Tokens\SamlAssertion.cs (2)
25private ReadOnlyCollection<SecurityKey> _cryptoList; 47internal ReadOnlyCollection<SecurityKey> SecurityKeys
FrameworkFork\System.ServiceModel\System\IdentityModel\Tokens\SamlSecurityToken.cs (1)
51public override ReadOnlyCollection<SecurityKey> SecurityKeys
FrameworkFork\System.ServiceModel\System\IdentityModel\Tokens\SecurityKeyIdentifier.cs (1)
80public SecurityKey CreateKey()
FrameworkFork\System.ServiceModel\System\IdentityModel\Tokens\SecurityKeyIdentifierClause.cs (1)
50public virtual SecurityKey CreateKey()
FrameworkFork\System.ServiceModel\System\IdentityModel\Tokens\SecurityToken.cs (2)
13public abstract ReadOnlyCollection<SecurityKey> SecurityKeys { get; } 40public virtual SecurityKey ResolveKeyIdentifierClause(SecurityKeyIdentifierClause keyIdentifierClause)
FrameworkFork\System.ServiceModel\System\IdentityModel\Tokens\UserNameSecurityToken.cs (2)
42public override ReadOnlyCollection<SecurityKey> SecurityKeys 44get { return EmptyReadOnlyCollection<SecurityKey>.Instance; }
FrameworkFork\System.ServiceModel\System\IdentityModel\Tokens\WindowsSecurityToken.NetNative.cs (1)
23public override ReadOnlyCollection<SecurityKey> SecurityKeys
FrameworkFork\System.ServiceModel\System\IdentityModel\Tokens\X509SecurityToken.cs (1)
66public override ReadOnlyCollection<SecurityKey> SecurityKeys
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\SecurityAlgorithmSuite.cs (2)
291internal void GetSignatureAlgorithmAndKey(SecurityToken token, out string signatureAlgorithm, out SecurityKey key, out XmlDictionaryString signatureAlgorithmDictionaryString) 293ReadOnlyCollection<SecurityKey> keys = token.SecurityKeys;
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\Tokens\BinarySecretSecurityToken.cs (3)
18private ReadOnlyCollection<SecurityKey> _securityKeys; 60_securityKeys = EmptyReadOnlyCollection<SecurityKey>.Instance; 85public override ReadOnlyCollection<SecurityKey> SecurityKeys
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\Tokens\DerivedKeySecurityToken.cs (3)
48private ReadOnlyCollection<SecurityKey> _securityKeys; 107public override ReadOnlyCollection<SecurityKey> SecurityKeys 129internal bool TryGetSecurityKeys(out ReadOnlyCollection<SecurityKey> keys)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\Tokens\GenericXmlSecurityToken.cs (2)
97public override ReadOnlyCollection<SecurityKey> SecurityKeys 104return EmptyReadOnlyCollection<SecurityKey>.Instance;
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\Tokens\SecurityContextSecurityToken.cs (5)
28private ReadOnlyCollection<SecurityKey> _securityKeys; 169public override ReadOnlyCollection<SecurityKey> SecurityKeys 276List<SecurityKey> temp = new List<SecurityKey>(1); 278_securityKeys = new ReadOnlyCollection<SecurityKey>(temp);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\Tokens\SspiSecurityToken.cs (2)
101public override ReadOnlyCollection<SecurityKey> SecurityKeys 105return EmptyReadOnlyCollection<SecurityKey>.Instance;
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\Tokens\WrappedKeySecurityToken.cs (6)
22private ReadOnlyCollection<SecurityKey> _securityKey; 27private SecurityKey _wrappingSecurityKey; 70internal WrappedKeySecurityToken(string id, byte[] keyToWrap, string wrappingAlgorithm, SecurityToken wrappingToken, SecurityKeyIdentifier wrappingTokenReference, byte[] wrappedKey, SecurityKey wrappingSecurityKey) 75private WrappedKeySecurityToken(string id, byte[] keyToWrap, string wrappingAlgorithm, XmlDictionaryString wrappingAlgorithmDictionaryString, SecurityToken wrappingToken, SecurityKeyIdentifier wrappingTokenReference, byte[] wrappedKey, SecurityKey wrappingSecurityKey) 132internal SecurityKey WrappingSecurityKey 152public override ReadOnlyCollection<SecurityKey> SecurityKeys