1 write to CipherReference
System.Security (1)
system\security\cryptography\xml\cipherdata.cs (1)
36
this.
CipherReference
= cipherReference;
19 references to CipherReference
System.Security (19)
system\security\cryptography\xml\cipherdata.cs (3)
63
if (this.
CipherReference
!= null)
88
if (
CipherReference
== null)
90
cipherDataElement.AppendChild(
CipherReference
.GetXml(document));
system\security\cryptography\xml\encryptedxml.cs (16)
214
} else if (cipherData.
CipherReference
!= null) {
215
if (cipherData.
CipherReference
.CipherValue != null)
216
return cipherData.
CipherReference
.CipherValue;
219
if (!Utils.GetLeaveCipherValueUnchecked() && cipherData.
CipherReference
.Uri == null){
222
if (cipherData.
CipherReference
.Uri.Length == 0) {
225
TransformChain tc = cipherData.
CipherReference
.TransformChain;
230
} else if (cipherData.
CipherReference
.Uri[0] == '#') {
231
string idref = Utils.ExtractIdFromLocalUri(cipherData.
CipherReference
.Uri);
245
TransformChain tc = cipherData.
CipherReference
.TransformChain;
267
cipherData.
CipherReference
.CipherValue = cipherValue;
279
WebRequest request = WebRequest.Create(cipherData.
CipherReference
.Uri);
281
throw new CryptographicException(SecurityResources.GetResourceString("Cryptography_Xml_UriNotResolved"), cipherData.
CipherReference
.Uri);
284
throw new CryptographicException(SecurityResources.GetResourceString("Cryptography_Xml_UriNotResolved"), cipherData.
CipherReference
.Uri);
287
throw new CryptographicException(SecurityResources.GetResourceString("Cryptography_Xml_UriNotResolved"), cipherData.
CipherReference
.Uri);
288
TransformChain tc = cipherData.
CipherReference
.TransformChain;
289
decInputStream = tc.TransformToOctetStream(inputStream, m_xmlResolver, cipherData.
CipherReference
.Uri);