Push updated code

This commit is contained in:
Zontreck 2022-07-24 19:38:20 -07:00
parent d1ce65cce7
commit 62c4eb5850
9 changed files with 549 additions and 2 deletions

21
Integrity/Leaf.cs Normal file
View file

@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LibZNI.Integrity
{
internal class Leaf
{
public byte[] InputBytes;
public Leaf(byte[] inputBytes)
{
InputBytes = inputBytes;
}
public Leaf(string input)
{
InputBytes = Encoding.UTF8.GetBytes(input);
}
}
}