System.IdentityModel.Tokens.SymmetricSecurityKey
namespace System.IdentityModel.Tokens
{
public abstract class SymmetricSecurityKey : SecurityKey
{
public abstract SymmetricAlgorithm GetSymmetricAlgorithm(string algorithm);
public abstract byte[] GetSymmetricKey();
protected SymmetricSecurityKey();
}
}