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)
35
Buffer.BlockCopy(entropy, 0,
_entropy
, 0, entropy.Length);
50
if (
_entropy
!= null)
52
result = DiagnosticUtility.Utility.AllocateByteArray(
_entropy
.Length);
53
Buffer.BlockCopy(
_entropy
, 0, result, 0,
_entropy
.Length);
63
result.AppendFormat("{0} Entropy Length={1}", Environment.NewLine, (
_entropy
== null) ? 0 :
_entropy
.Length);