<PackageReference Include="System.ServiceModel.Primitives" Version="6.1.0" />

System.IdentityModel.Tokens.SecurityKeyIdentifierClause

public abstract class SecurityKeyIdentifierClause
namespace System.IdentityModel.Tokens { public abstract class SecurityKeyIdentifierClause { public virtual bool CanCreateKey { get; } public string ClauseType { get; } public string Id { get; set; } public int DerivationLength { get; } protected SecurityKeyIdentifierClause(string clauseType); protected SecurityKeyIdentifierClause(string clauseType, byte[] nonce, int length); public virtual SecurityKey CreateKey(); public virtual bool Matches(SecurityKeyIdentifierClause keyIdentifierClause); public byte[] GetDerivationNonce(); } }