started c# pow implementation

This commit is contained in:
Kevin Froman 2020-09-19 21:01:22 +00:00
parent 3199f93d4b
commit fd0f13cf63
7 changed files with 562 additions and 0 deletions

View file

@ -0,0 +1,16 @@
using System;
using System.Text;
using onionrpow;
namespace onionrpow_cli
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
onionrpow.OnionrPow.compute(Encoding.UTF8.GetBytes("test"), 4);
}
}
}

View file

@ -0,0 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\onionrpow\onionrpow.csproj" />
</ItemGroup>
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<RootNamespace>onionrpow_cli</RootNamespace>
</PropertyGroup>
</Project>