3 writes to _cipherText
System.IdentityModel (3)
System\IdentityModel\CipherDataElement.cs (3)
31
_cipherText
= value;
51
_cipherText
= reader.ReadContentAsBase64();
67
_cipherText
= cipherText;
6 references to _cipherText
System.IdentityModel (6)
System\IdentityModel\CipherDataElement.cs (6)
21
byte[] buffer = new byte[_iv.Length +
_cipherText
.Length];
23
Buffer.BlockCopy(
_cipherText
, 0, buffer, _iv.Length,
_cipherText
.Length );
27
return
_cipherText
;
78
writer.WriteBase64(
_cipherText
, 0,
_cipherText
.Length );