2 writes to _entropy
dotnet-svcutil-lib (2)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\DataProtectionSecurityStateEncoder.cs (2)
30_entropy = null; 34_entropy = DiagnosticUtility.Utility.AllocateByteArray(entropy.Length);
7 references to _entropy
dotnet-svcutil-lib (7)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\DataProtectionSecurityStateEncoder.cs (7)
35Buffer.BlockCopy(entropy, 0, _entropy, 0, entropy.Length); 50if (_entropy != null) 52result = DiagnosticUtility.Utility.AllocateByteArray(_entropy.Length); 53Buffer.BlockCopy(_entropy, 0, result, 0, _entropy.Length); 63result.AppendFormat("{0} Entropy Length={1}", Environment.NewLine, (_entropy == null) ? 0 : _entropy.Length);