Base:
property
Key
System.Security.Cryptography.SymmetricAlgorithm.Key
2 overrides of Key
System.Security.Cryptography (2)
System\Security\Cryptography\TripleDESCng.Windows.cs (1)
44public override byte[] Key
System\Security\Cryptography\TripleDESCryptoServiceProvider.Wrap.cs (1)
39public override byte[] Key
3 writes to Key
System.Security.Cryptography (3)
System\Security\Cryptography\TripleDESCng.Windows.cs (1)
220byte[] ICngSymmetricAlgorithm.BaseKey { get { return base.Key; } set { base.Key = value; } }
System\Security\Cryptography\TripleDESCryptoServiceProvider.Wrap.cs (1)
42set { _impl.Key = value; }
System\Security\Cryptography\TripleDesImplementation.cs (1)
47Key = RandomNumberGenerator.GetBytes(KeySize / BitsPerByte);
10 references to Key
System.Security.Cryptography (10)
System\Security\Cryptography\TripleDESCng.Windows.cs (1)
220byte[] ICngSymmetricAlgorithm.BaseKey { get { return base.Key; } set { base.Key = value; } }
System\Security\Cryptography\TripleDESCryptoServiceProvider.Wrap.cs (1)
41get { return _impl.Key; }
System\Security\Cryptography\TripleDesImplementation.cs (8)
22return CreateTransform(Key, IV, encrypting: false); 32return CreateTransform(Key, IV, encrypting: true); 101Key, 122Key, 144Key, 166Key, 191Key, 216Key,