1 write to seed
System.IdentityModel (1)
System\IdentityModel\Psha1DerivedKeyGenerator.cs (1)
57this.seed = DiagnosticUtility.Utility.AllocateByteArray(checked(label.Length + seed.Length));
5 references to seed
System.IdentityModel (5)
System\IdentityModel\Psha1DerivedKeyGenerator.cs (5)
58label.CopyTo(this.seed, 0); 59seed.CopyTo(this.seed, label.Length); 61this.aValue = this.seed; 67this.buffer = DiagnosticUtility.Utility.AllocateByteArray(checked(this.hmac.HashSize / 8 + this.seed.Length)); 104this.seed.CopyTo(buffer, this.aValue.Length);