Onionr/pow-csharp/onionrpow-cli/Program.cs

29 righe
721 B
C#

using System;
using System.Text;
using System.IO;
using System.Collections.Generic;
using onionrpow;
namespace onionrpow_cli
{
class Program
{
static void Main(string[] args)
{
using (Stream stdin = Console.OpenStandardInput())
{
var data = new List<byte>();
byte[] buffer = new byte[60000];
int bytes;
while ((bytes = stdin.Read(buffer, 0, buffer.Length)) > 0) {
//stdout.Write(buffer, 0, bytes);
data.AddRange(buffer);
}
onionrpow.OnionrPow.compute(data.ToArray(), 3);
}
}
}
}