Files
hcs/Hcs.Client/GostXades/Helpers/ConvertHelper.cs

13 lines
239 B
C#

using System.Numerics;
namespace GostXades.Helpers
{
public static class ConvertHelper
{
public static string BigIntegerToHex(string str)
{
return BigInteger.Parse(str).ToString("X");
}
}
}