Files
hcs/Hcs.ClientNet/GostCryptography/Base/IGostAlgorithm.cs

19 lines
500 B
C#

namespace GostCryptography.Base
{
/// <summary>
/// Алгоритм ГОСТ
/// </summary>
public interface IGostAlgorithm
{
/// <summary>
/// Тип криптографического провайдера
/// </summary>
ProviderType ProviderType { get; }
/// <summary>
/// Наименование криптографического алгоритма
/// </summary>
string AlgorithmName { get; }
}
}