11 writes to IVValue
mscorlib (8)
system\security\cryptography\descryptoserviceprovider.cs (1)
62
IVValue
= new byte[8];
system\security\cryptography\rc2cryptoserviceprovider.cs (1)
96
IVValue
= new byte[8];
system\security\cryptography\rijndaelmanaged.cs (1)
64
IVValue
= Utils.GenerateRandom(BlockSizeValue / 8);
system\security\cryptography\symmetricalgorithm.cs (4)
68
IVValue
= null;
88
IVValue
= null;
97
IVValue
= null; // Wrong length now
129
IVValue
= (byte[]) value.Clone();
system\security\cryptography\tripledescryptoserviceprovider.cs (1)
57
IVValue
= new byte[8];
System.Core (1)
System\Security\Cryptography\AesCryptoServiceProvider.cs (1)
411
IVValue
= iv;
System.IdentityModel (1)
System\IdentityModel\RijndaelCryptoServiceProvider.cs (1)
51
this.
IVValue
= new byte[this.BlockSizeValue / 8];
System.IdentityModel.Selectors (1)
infocard\client\System\IdentityModel\Selectors\InfoCardSymmetricAlgorithm.cs (1)
135
IVValue
= ivvalue;
14 references to IVValue
mscorlib (8)
system\security\cryptography\descryptoserviceprovider.cs (1)
63
Utils.StaticRandomNumberGenerator.GetBytes(
IVValue
);
system\security\cryptography\rc2cryptoserviceprovider.cs (1)
97
Utils.StaticRandomNumberGenerator.GetBytes(
IVValue
);
system\security\cryptography\symmetricalgorithm.cs (5)
66
if (
IVValue
!= null) {
67
Array.Clear(
IVValue
, 0,
IVValue
.Length);
120
if (
IVValue
== null) GenerateIV();
121
return (byte[])
IVValue
.Clone();
system\security\cryptography\tripledescryptoserviceprovider.cs (1)
58
Utils.StaticRandomNumberGenerator.GetBytes(
IVValue
);
System.Core (5)
System\Security\Cryptography\AesCryptoServiceProvider.cs (5)
151
return CreateDecryptor(m_key,
IVValue
);
213
if (Mode != CipherMode.ECB &&
IVValue
== null) {
217
return CreateEncryptor(m_key,
IVValue
);
402
Contract.Ensures(
IVValue
!= null &&
IVValue
.Length == BlockSizeValue / 8);
System.IdentityModel (1)
System\IdentityModel\RijndaelCryptoServiceProvider.cs (1)
52
CryptoHelper.RandomNumberGenerator.GetBytes(this.
IVValue
);