2 instantiations of WrappedKeySecurityToken
System.ServiceModel.Primitives (2)
System\ServiceModel\Security\WSSecurityJan2004.cs (2)
452return new WrappedKeySecurityToken(id, unwrappedKey, encryptionMethod, unwrappingSspiContext, unwrappedKey); 512return new WrappedKeySecurityToken(id, unwrappedKey, encryptionMethod, unwrappingToken, keyInfoIdentifier, wrappedKey, unwrappingSecurityKey);
8 references to WrappedKeySecurityToken
System.ServiceModel.Primitives (8)
System\IdentityModel\Tokens\WSSecurityJan2004.cs (1)
133protected override Type[] GetTokenTypesCore() { return new Type[] { typeof(WrappedKeySecurityToken) }; }
System\ServiceModel\Security\SspiNegotiationTokenProvider.cs (2)
331WrappedKeySecurityToken wrappedToken = serviceToken.ProofToken as WrappedKeySecurityToken;
System\ServiceModel\Security\WSSecurityJan2004.cs (5)
384protected override Type[] GetTokenTypesCore() => [typeof(WrappedKeySecurityToken)]; 432WrappedKeySecurityToken wrappedKeyToken = CreateWrappedKeyToken(encryptedKey.Id, encryptedKey.EncryptionMethod.KeyAlgorithm, 439private WrappedKeySecurityToken CreateWrappedKeyToken(string id, string encryptionMethod, string carriedKeyName, 518WrappedKeySecurityToken wrappedKeyToken = token as WrappedKeySecurityToken;