Push updated code
This commit is contained in:
parent
d1ce65cce7
commit
62c4eb5850
9 changed files with 549 additions and 2 deletions
21
Integrity/Leaf.cs
Normal file
21
Integrity/Leaf.cs
Normal 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);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue