3 writes to _iv
System.IdentityModel (3)
System\IdentityModel\CipherDataElement.cs (3)
24
_iv
= null;
52
_iv
= null;
66
_iv
= iv;
8 references to _iv
System.IdentityModel (8)
System\IdentityModel\CipherDataElement.cs (8)
19
if (
_iv
!= null )
21
byte[] buffer = new byte[
_iv
.Length + _cipherText.Length];
22
Buffer.BlockCopy(
_iv
, 0, buffer, 0,
_iv
.Length );
23
Buffer.BlockCopy( _cipherText, 0, buffer,
_iv
.Length, _cipherText.Length );
75
if (
_iv
!= null )
76
writer.WriteBase64(
_iv
, 0,
_iv
.Length );