public static byte[] CaculateHash(byte[] input)
        {
            randomx_init();

            var buffer = _buffer.Value;

            RandomXDLL.randomx_calculate_hash(_Machine.Value, input, Convert.ToUInt32(input.Length), buffer);
            return(buffer);
        }
        public static string CaculateHash(string text)
        {
            randomx_init();

            var input  = text.HexToBytes();
            var buffer = _buffer.Value;

            RandomXDLL.randomx_calculate_hash(_Machine.Value, input, Convert.ToUInt32(input.Length), buffer);
            return(buffer.ToHexString());
        }