4 writes to Entropy
System.IdentityModel (4)
System\IdentityModel\Protocols\WSTrust\RequestSecurityToken.cs (1)
64Entropy = new Entropy(SecurityTokenServiceConfiguration.DefaultKeySizeInBitsConstant);
System\IdentityModel\Protocols\WSTrust\WSTrustSerializationHelper.cs (2)
249rst.Entropy = new Entropy(protectedKey); 1434rstr.Entropy = new Entropy(protectedKey);
System\IdentityModel\Tokens\SymmetricProofDescriptor.cs (1)
249response.Entropy = new Entropy(_targetEntropy, _requestorWrappingCredentials);
15 references to Entropy
System.IdentityModel (8)
System\IdentityModel\Protocols\WSTrust\WSTrustSerializationHelper.cs (6)
254if (rst.Entropy == null) 758if (rst.Entropy != null) 760requestSerializer.WriteXmlElement(writer, trustConstants.Elements.Entropy, rst.Entropy, rst, context); 1439if (rstr.Entropy == null) 1745if (rstr.Entropy != null) 1747responseSerializer.WriteXmlElement(writer, trustConstants.Elements.Entropy, rstr.Entropy, rstr, context);
System\IdentityModel\SecurityTokenService.cs (2)
392if (request.Entropy != null) 395request.Entropy.GetKeyBytes(), request.EncryptWith);
System.ServiceModel (7)
System\ServiceModel\Security\WSTrustChannel.cs (7)
592if (response.Entropy == null) 598if (request.Entropy == null) 613byte[] keyMaterial = System.IdentityModel.CryptoHelper.KeyGenerator.ComputeCombinedKey(request.Entropy.GetKeyBytes(), 614response.Entropy.GetKeyBytes(), 689if (response.Entropy != null) 700if (request.Entropy != null) 702return new BinarySecretSecurityToken(request.Entropy.GetKeyBytes());