//-----------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------
using System;
namespace System.IdentityModel.Tokens
{
///
/// Used in the RST to indicated the desired algorithm used to compute key based on
/// the combined entropies from both token requestor and token issuer.
///
public static class ComputedKeyAlgorithms
{
#pragma warning disable 1591
public const string Psha1 = "http://schemas.microsoft.com/idfx/computedkeyalgorithm/psha1";
#pragma warning restore 1591
}
}