5 overrides of Key
mscorlib (2)
system\security\cryptography\des.cs (1)
43
public override byte[]
Key
{
system\security\cryptography\tripledes.cs (1)
42
public override byte[]
Key
{
System.Core (2)
System\Security\Cryptography\AesCryptoServiceProvider.cs (1)
72
public override byte[]
Key
{
System\Security\Cryptography\AesManaged.cs (1)
52
public override byte[]
Key
{
System.IdentityModel.Selectors (1)
infocard\client\System\IdentityModel\Selectors\InfoCardSymmetricAlgorithm.cs (1)
81
public override byte[]
Key
17 writes to Key
System.Core (1)
System\Security\Cryptography\AesManaged.cs (1)
54
set { m_impl.
Key
= value; }
System.IdentityModel (6)
System\IdentityModel\CryptoHelper.cs (6)
667
symmetricAlgorithm.
Key
= key;
698
symmetricAlgorithm.
Key
= key;
1023
symmetricAlgorithm.
Key
= wrappingKey;
1043
symmetricAlgorithm.
Key
= wrappingKey;
1061
symmetricAlgorithm.
Key
= wrappingKey;
1082
symmetricAlgorithm.
Key
= wrappingKey;
System.Security (4)
system\security\cryptography\xml\encryptedxml.cs (2)
402
symAlg.
Key
= key;
491
symAlg.
Key
= encryptionKey;
system\security\cryptography\xml\symmetrickeywrap.cs (2)
106
aes.
Key
= rgbKey;
157
aes.
Key
= rgbKey;
System.Web (6)
Configuration\MachineKeySection.cs (4)
940
symAlgo.
Key
= bTemp;
943
symAlgo.
Key
= dKey;
1298
s_oSymAlgoLegacy.
Key
= dKey;
1305
s_oSymAlgoLegacy.
Key
= dKey;
Security\Cryptography\NetFXCryptoService.cs (2)
56
encryptionAlgorithm.
Key
= _encryptionKey.GetKeyMaterial();
126
decryptionAlgorithm.
Key
= _encryptionKey.GetKeyMaterial();
19 references to Key
mscorlib (2)
system\security\cryptography\symmetricalgorithm.cs (2)
228
return CreateEncryptor(
Key
, IV);
234
return CreateDecryptor(
Key
, IV);
System.Configuration (1)
System\Configuration\RSAProtectedConfigurationProvider.cs (1)
73
ek.CipherData.CipherValue = EncryptedXml.EncryptKey(symAlg.
Key
, rsa, UseOAEP);
System.Core (1)
System\Security\Cryptography\AesManaged.cs (1)
53
get { return m_impl.
Key
; }
System.IdentityModel (6)
System\IdentityModel\EncryptedDataElement.cs (2)
90
decrTransform = algorithm.CreateDecryptor( algorithm.
Key
, iv );
112
ICryptoTransform encrTransform = algorithm.CreateEncryptor( algorithm.
Key
, iv );
System\IdentityModel\RsaEncryptionCookieTransform.cs (4)
309
byte[] keyAndIV = new byte[encryptionAlgorithm.
Key
.Length + encryptionAlgorithm.IV.Length];
310
Array.Copy(encryptionAlgorithm.
Key
, keyAndIV, encryptionAlgorithm.
Key
.Length);
311
Array.Copy(encryptionAlgorithm.IV, 0, keyAndIV, encryptionAlgorithm.
Key
.Length, encryptionAlgorithm.IV.Length);
System.Security (7)
system\security\cryptography\xml\encryptedxml.cs (7)
547
ek.CipherData.CipherValue = EncryptedXml.EncryptKey(aes.
Key
, rsaPublicKey, false);
615
EncryptedXml.EncryptKey(aes.
Key
, rsa, false) :
616
EncryptedXml.EncryptKey(aes.
Key
, symKey);
834
return SymmetricKeyWrap.TripleDESKeyWrapEncrypt(symmetricAlgorithm.
Key
, keyData);
837
return SymmetricKeyWrap.AESKeyWrapEncrypt(symmetricAlgorithm.
Key
, keyData);
870
return SymmetricKeyWrap.TripleDESKeyWrapDecrypt(symmetricAlgorithm.
Key
, keyData);
873
return SymmetricKeyWrap.AESKeyWrapDecrypt(symmetricAlgorithm.
Key
, keyData);
System.ServiceModel (2)
System\ServiceModel\Security\CryptoHelper.cs (2)
157
using (ICryptoTransform decrTransform = algorithm.CreateDecryptor(algorithm.
Key
, iv))
247
using (ICryptoTransform encrTransform = algorithm.CreateEncryptor(algorithm.
Key
, iv))