1 type derived from BinarySecretSecurityToken
System.ServiceModel.Primitives (1)
System\ServiceModel\Security\NonceToken.cs (1)
9internal sealed class NonceToken : BinarySecretSecurityToken
6 instantiations of BinarySecretSecurityToken
System.ServiceModel.Federation (3)
System\ServiceModel\Federation\WSTrustUtilities.cs (3)
66return new BinarySecretSecurityToken(response.RequestedProofToken.BinarySecret.Data); 103return new BinarySecretSecurityToken(Psha1KeyGenerator.ComputeCombinedKey(issuerEntropy, requestorEntropy, keySizeInBits)); 118return new BinarySecretSecurityToken(request.Entropy.BinarySecret.Data);
System.ServiceModel.Primitives (3)
System\ServiceModel\Security\WSTrust.cs (3)
136return new BinarySecretSecurityToken(id, secret); 659proofToken = new BinarySecretSecurityToken(requestorEntropy); 714proofToken = new BinarySecretSecurityToken(issuedKey);
7 references to BinarySecretSecurityToken
System.ServiceModel.Federation (1)
System\ServiceModel\Federation\WSTrustUtilities.cs (1)
39internal static BinarySecretSecurityToken GetProofToken(WsTrustRequest request, Microsoft.IdentityModel.Protocols.WsTrust.RequestSecurityTokenResponse response, WsSerializationContext serializationContext, SecurityAlgorithmSuite algorithmSuite)
System.ServiceModel.Primitives (6)
System\IdentityModel\Security\WSTrust.cs (1)
49protected override Type[] GetTokenTypesCore() { return new Type[] { typeof(BinarySecretSecurityToken) }; }
System\ServiceModel\Security\WSTrust.cs (5)
71protected override Type[] GetTokenTypesCore() { return new Type[] { typeof(BinarySecretSecurityToken) }; } 142BinarySecretSecurityToken simpleToken = token as BinarySecretSecurityToken; 703if (entropyToken is BinarySecretSecurityToken) 705issuerEntropy = ((BinarySecretSecurityToken)entropyToken).GetKeyBytes();