4 writes to CipherData
System.Configuration (2)
System\Configuration\RSAProtectedConfigurationProvider.cs (2)
72
ek.
CipherData
= new CipherData();
81
ed.
CipherData
= new CipherData();
System.Security (2)
system\security\cryptography\xml\encrypteddata.cs (1)
56
this.
CipherData
= new CipherData();
system\security\cryptography\xml\encryptedkey.cs (1)
100
this.
CipherData
= new CipherData();
24 references to CipherData
System.Configuration (2)
System\Configuration\RSAProtectedConfigurationProvider.cs (2)
73
ek.
CipherData
.CipherValue = EncryptedXml.EncryptKey(symAlg.Key, rsa, UseOAEP);
82
ed.
CipherData
.CipherValue = rgbOutput;
System.Security (22)
system\security\cryptography\xml\encrypteddata.cs (3)
57
this.
CipherData
.LoadXml(cipherDataNode as XmlElement);
108
if (this.
CipherData
== null)
110
encryptedDataElement.AppendChild(this.
CipherData
.GetXml(document));
system\security\cryptography\xml\encryptedkey.cs (3)
101
this.
CipherData
.LoadXml(cipherDataNode as XmlElement);
183
if (this.
CipherData
== null)
185
encryptedKeyElement.AppendChild(this.
CipherData
.GetXml(document));
system\security\cryptography\xml\encryptedxml.cs (16)
328
byte[] cipherValue = GetCipherValue(encryptedData.
CipherData
);
430
if (!Utils.GetLeaveCipherValueUnchecked() && (encryptedKey.
CipherData
== null || encryptedKey.
CipherData
.CipherValue == null)) {
435
return EncryptedXml.DecryptKey(encryptedKey.
CipherData
.CipherValue, (SymmetricAlgorithm) kek);
439
return EncryptedXml.DecryptKey(encryptedKey.
CipherData
.CipherValue, (RSA) kek, fOAEP);
449
if (!Utils.GetLeaveCipherValueUnchecked() && (encryptedKey.
CipherData
== null || encryptedKey.
CipherData
.CipherValue == null)) {
453
return EncryptedXml.DecryptKey(encryptedKey.
CipherData
.CipherValue, privateKey, fOAEP);
492
if (!Utils.GetLeaveCipherValueUnchecked() && (encryptedKey.
CipherData
== null || encryptedKey.
CipherData
.CipherValue == null)) {
495
return EncryptedXml.DecryptKey(encryptedKey.
CipherData
.CipherValue, symAlg);
547
ek.
CipherData
.CipherValue = EncryptedXml.EncryptKey(aes.Key, rsaPublicKey, false);
552
ed.
CipherData
.CipherValue = EncryptData(inputElement, aes, false);
614
ek.
CipherData
.CipherValue = symKey == null ?
621
ed.
CipherData
.CipherValue = EncryptData(inputElement, aes, false);
704
byte[] cipherValue = GetCipherValue(encryptedData.
CipherData
);