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