13 instantiations of InMemorySymmetricSecurityKey
System.IdentityModel (9)
System\IdentityModel\SecurityUtils.cs (1)
98temp.Add( new InMemorySymmetricSecurityKey( key ) );
System\IdentityModel\Selectors\SecurityTokenResolver.cs (1)
147key = new InMemorySymmetricSecurityKey(unwrappedKey, false);
System\IdentityModel\Tokens\EncryptedKeyEncryptingCredentials.cs (1)
68base.SecurityKey = new InMemorySymmetricSecurityKey( _keyBytes );
System\IdentityModel\Tokens\KerberosReceiverSecurityToken.cs (1)
259this.symmetricSecurityKey = new InMemorySymmetricSecurityKey(sessionKey.SessionKey);
System\IdentityModel\Tokens\KerberosRequestorSecurityToken.cs (1)
215this.symmetricSecurityKey = new InMemorySymmetricSecurityKey(sessionKey.SessionKey);
System\IdentityModel\Tokens\SessionSecurityToken.cs (2)
324_securityKeys = new ReadOnlyCollection<SecurityKey>(new SecurityKey[] { new InMemorySymmetricSecurityKey(key) }); 513_securityKeys = new ReadOnlyCollection<SecurityKey>(new SecurityKey[] { new InMemorySymmetricSecurityKey(key) });
System\IdentityModel\Tokens\X509CertificateStoreTokenResolver.cs (1)
102key = new InMemorySymmetricSecurityKey(unwrappedKey, false);
System\ServiceModel\Security\BinarySecretKeyIdentifierClause.cs (1)
44this.symmetricKey = new InMemorySymmetricSecurityKey(GetBuffer(), false);
System.ServiceModel (4)
System\ServiceModel\Security\SecurityUtils.cs (2)
628temp.Add(new InMemorySymmetricSecurityKey(key)); 2275key = new InMemorySymmetricSecurityKey(unwrappedKey, false);
System\ServiceModel\Security\Tokens\DerivedKeySecurityToken.cs (1)
268temp.Add(new InMemorySymmetricSecurityKey(this.key, false));
System\ServiceModel\Security\Tokens\SecurityContextSecurityToken.cs (1)
277temp.Add(new InMemorySymmetricSecurityKey(this.key, false));
7 references to InMemorySymmetricSecurityKey
System.IdentityModel (5)
System\IdentityModel\Tokens\SamlAssertion.cs (4)
417InMemorySymmetricSecurityKey inMemorySymmetricSecurityKey = crypto as InMemorySymmetricSecurityKey; 424if ((cryptoList[j] is InMemorySymmetricSecurityKey) && (cryptoList[j].KeySize == inMemorySymmetricSecurityKey.KeySize)) 426byte[] key1 = ((InMemorySymmetricSecurityKey)cryptoList[j]).GetSymmetricKey();
System\ServiceModel\Security\BinarySecretKeyIdentifierClause.cs (1)
14InMemorySymmetricSecurityKey symmetricKey;
System.ServiceModel (2)
System\ServiceModel\Security\SecurityAlgorithmSuite.cs (2)
449InMemorySymmetricSecurityKey symmeticKey = verificationKey as InMemorySymmetricSecurityKey;