7 overrides of Key
System.Security.Cryptography (7)
System\Security\Cryptography\AesCryptoServiceProvider.cs (1)
41public override byte[] Key
System\Security\Cryptography\AesManaged.cs (1)
40public override byte[] Key
System\Security\Cryptography\DES.cs (1)
37public override byte[] Key
System\Security\Cryptography\RC2CryptoServiceProvider.Unix.cs (1)
74public override byte[] Key
System\Security\Cryptography\RijndaelImplementation.cs (1)
59public override byte[] Key
System\Security\Cryptography\RijndaelManaged.cs (1)
55public override byte[] Key
System\Security\Cryptography\TripleDES.cs (1)
36public override byte[] Key
15 writes to Key
System.Security.Cryptography (9)
System\Security\Cryptography\AesCryptoServiceProvider.cs (1)
44set { _impl.Key = value; }
System\Security\Cryptography\AesImplementation.cs (1)
37Key = RandomNumberGenerator.GetBytes(KeySize / BitsPerByte);
System\Security\Cryptography\AesManaged.cs (1)
43set { _impl.Key = value; }
System\Security\Cryptography\DES.cs (1)
62base.Key = value;
System\Security\Cryptography\RC2CryptoServiceProvider.Unix.cs (1)
77set { _impl.Key = value; }
System\Security\Cryptography\RC2Implementation.cs (1)
54Key = RandomNumberGenerator.GetBytes(KeySize / BitsPerByte);
System\Security\Cryptography\RijndaelImplementation.cs (1)
62set { _impl.Key = value; }
System\Security\Cryptography\RijndaelManaged.cs (1)
58set { _impl.Key = value; }
System\Security\Cryptography\TripleDES.cs (1)
59base.Key = value;
System.Security.Cryptography.Pkcs (1)
Internal\Cryptography\Pal\AnyOS\ManagedPal.Decrypt.cs (1)
164alg.Key = cek;
System.Security.Cryptography.Xml (5)
System\Security\Cryptography\Xml\EncryptedXml.cs (3)
390symAlg.Key = key; 502symAlg.Key = encryptionKey; 507symAlg.Key = encryptionKey;
System\Security\Cryptography\Xml\SymmetricKeyWrap.cs (2)
134aes.Key = rgbKey; 197aes.Key = rgbKey;
37 references to Key
System.Security.Cryptography (29)
System\Security\Cryptography\AesCryptoServiceProvider.cs (1)
43get { return _impl.Key; }
System\Security\Cryptography\AesImplementation.cs (8)
12return CreateTransform(Key, IV, encrypting: false); 22return CreateTransform(Key, IV, encrypting: true); 53Key, 74Key, 96Key, 118Key, 143Key, 168Key,
System\Security\Cryptography\AesManaged.cs (1)
42get { return _impl.Key; }
System\Security\Cryptography\DES.cs (2)
41byte[] key = base.Key; 45key = base.Key;
System\Security\Cryptography\RC2CryptoServiceProvider.Unix.cs (1)
76get { return _impl.Key; }
System\Security\Cryptography\RC2Implementation.cs (10)
29return CreateTransform(Key, IV, encrypting: false); 39return CreateTransform(Key, IV, encrypting: true); 88if (!ValidKeySize(Key.Length)) 94Key, 112if (!ValidKeySize(Key.Length)) 118Key, 137if (!ValidKeySize(Key.Length)) 143Key, 162if (!ValidKeySize(Key.Length)) 168Key,
System\Security\Cryptography\RijndaelImplementation.cs (1)
61get { return _impl.Key; }
System\Security\Cryptography\RijndaelManaged.cs (1)
57get { return _impl.Key; }
System\Security\Cryptography\SymmetricAlgorithm.cs (2)
173return CreateDecryptor(Key, IV); 180return CreateEncryptor(Key, IV);
System\Security\Cryptography\TripleDES.cs (2)
40byte[] key = base.Key; 44key = base.Key;
System.Security.Cryptography.Pkcs (1)
Internal\Cryptography\Pal\AnyOS\ManagedPal.Encrypt.cs (1)
157cek = alg.Key;
System.Security.Cryptography.Xml (7)
System\Security\Cryptography\Xml\EncryptedXml.cs (7)
575ek.CipherData.CipherValue = EncryptedXml.EncryptKey(aes.Key, rsaPublicKey, false); 660ek.CipherData.CipherValue = (symKey == null ? EncryptedXml.EncryptKey(aes.Key, rsa, false) : EncryptedXml.EncryptKey(aes.Key, symKey)); 931return SymmetricKeyWrap.TripleDESKeyWrapEncrypt(symmetricAlgorithm.Key, keyData); 938return SymmetricKeyWrap.AESKeyWrapEncrypt(symmetricAlgorithm.Key, keyData); 985return SymmetricKeyWrap.TripleDESKeyWrapDecrypt(symmetricAlgorithm.Key, keyData); 992return SymmetricKeyWrap.AESKeyWrapDecrypt(symmetricAlgorithm.Key, keyData);