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