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