1 override of IV
System.Core (1)
System\Security\Cryptography\AesManaged.cs (1)
47
public override byte[]
IV
{
12 writes to IV
mscorlib (2)
system\security\cryptography\mactripledes.cs (2)
45
des.
IV
= new byte[m_bytesPerBlock];
73
des.
IV
= new byte[m_bytesPerBlock];
System.Core (1)
System\Security\Cryptography\AesManaged.cs (1)
49
set { m_impl.
IV
= value; }
System.Data (2)
fx\src\data\System\Data\SqlClient\SqlAeadAes256CbcHmac256Algorithm.cs (2)
204
aesAlg.
IV
= iv;
348
aesAlg.
IV
= iv;
System.IdentityModel.Selectors (2)
infocard\client\System\IdentityModel\Selectors\InfoCardSymmetricCrypto.cs (2)
173
symAlgo.
IV
= iv;
202
symAlgo.
IV
= iv;
System.Security (2)
system\security\cryptography\xml\encryptedxml.cs (2)
720
symmetricAlgorithm.
IV
= decryptionIV;
732
symmetricAlgorithm.
IV
= origIV;
System.Web (3)
Configuration\MachineKeySection.cs (1)
946
symAlgo.
IV
= new byte[symAlgo.IV.Length];
Security\Cryptography\NetFXCryptoService.cs (2)
61
encryptionAlgorithm.
IV
= CryptoUtil.CreatePredictableIV(clearData, encryptionAlgorithm.BlockSize);
163
decryptionAlgorithm.
IV
= iv;
11 references to IV
mscorlib (2)
system\security\cryptography\symmetricalgorithm.cs (2)
228
return CreateEncryptor(Key,
IV
);
234
return CreateDecryptor(Key,
IV
);
System.Core (1)
System\Security\Cryptography\AesManaged.cs (1)
48
get { return m_impl.
IV
; }
System.IdentityModel (3)
System\IdentityModel\RsaEncryptionCookieTransform.cs (3)
309
byte[] keyAndIV = new byte[encryptionAlgorithm.Key.Length + encryptionAlgorithm.
IV
.Length];
311
Array.Copy(encryptionAlgorithm.
IV
, 0, keyAndIV, encryptionAlgorithm.Key.Length, encryptionAlgorithm.
IV
.Length);
System.IdentityModel.Selectors (1)
infocard\client\System\IdentityModel\Selectors\InfoCardSymmetricAlgorithm.cs (1)
161
byte[] iv = symAlgo.
IV
;
System.Security (2)
system\security\cryptography\xml\encryptedxml.cs (2)
677
byte[] IV = symmetricAlgorithm.
IV
;
709
byte[] origIV = symmetricAlgorithm.
IV
;
System.Web (2)
Configuration\MachineKeySection.cs (1)
946
symAlgo.IV = new byte[symAlgo.
IV
.Length];
Security\Cryptography\NetFXCryptoService.cs (1)
67
byte[] iv = encryptionAlgorithm.
IV
;