System.ServiceModel.Security.Tokens.DerivedKeySecurityToken
namespace System.ServiceModel.Security.Tokens
{
internal sealed class DerivedKeySecurityToken : SecurityToken
{
public const int DefaultNonceLength = 16;
public const int DefaultDerivedKeyLength = 32;
public string KeyDerivationAlgorithm { get; }
public int Generation { get; }
public string Label { get; }
public int Length { get; }
public int Offset { get; }
public byte[] GetKeyBytes();
public byte[] GetNonce();
}
}