7 writes to Length
System.IdentityModel.Selectors (7)
infocard\client\System\IdentityModel\Selectors\InfoCardKeyedHashAlgorithm.cs (1)
205pOutData.Length = cbOutData;
infocard\client\System\IdentityModel\Selectors\InfoCardRSACryptoProvider.cs (3)
101pOutData.Length = cbOutData; 134pOutData.Length = cbOutData; 169pSig.Length = cbSig;
infocard\client\System\IdentityModel\Selectors\InfoCardSymmetricAlgorithm.cs (2)
250pOutData.Length = cbOutData; 298pOutData.Length = cbOutData;
infocard\client\System\IdentityModel\Selectors\InfoCardSymmetricCrypto.cs (1)
143pDerivedKey.Length = cbDerivedKey;
13 references to Length
System.IdentityModel.Selectors (13)
infocard\client\System\IdentityModel\Selectors\InfoCardKeyedHashAlgorithm.cs (2)
206outData = DiagnosticUtility.Utility.AllocateByteArray(pOutData.Length); 209Marshal.Copy(pOutData.DangerousGetHandle(), outData, 0, pOutData.Length);
infocard\client\System\IdentityModel\Selectors\InfoCardRSACryptoProvider.cs (6)
102outData = DiagnosticUtility.Utility.AllocateByteArray(pOutData.Length); 105Marshal.Copy(pOutData.DangerousGetHandle(), outData, 0, pOutData.Length); 135outData = DiagnosticUtility.Utility.AllocateByteArray(pOutData.Length); 136Marshal.Copy(pOutData.DangerousGetHandle(), outData, 0, pOutData.Length); 170sig = DiagnosticUtility.Utility.AllocateByteArray(pSig.Length); 173Marshal.Copy(pSig.DangerousGetHandle(), sig, 0, pSig.Length);
infocard\client\System\IdentityModel\Selectors\InfoCardSymmetricAlgorithm.cs (3)
253Marshal.Copy(pOutData.DangerousGetHandle(), outputBuffer, outputOffset, pOutData.Length); 299outData = DiagnosticUtility.Utility.AllocateByteArray(pOutData.Length); 302Marshal.Copy(pOutData.DangerousGetHandle(), outData, 0, pOutData.Length);
infocard\client\System\IdentityModel\Selectors\InfoCardSymmetricCrypto.cs (2)
144derivedKey = new byte[pDerivedKey.Length]; 147Marshal.Copy(pDerivedKey.DangerousGetHandle(), derivedKey, 0, pDerivedKey.Length);