serverlist handler + basic crypto, rename project

This commit is contained in:
raphaeIl
2025-01-08 23:19:50 -05:00
parent f855950370
commit 55c3fc1fec
563 changed files with 278 additions and 206 deletions

View File

@@ -0,0 +1,31 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Novaria.Common.Utils
{
public static class Utils
{
public static void PrintByteArray(byte[] byteArray)
{
if (byteArray == null || byteArray.Length == 0)
{
Console.WriteLine("[]");
return;
}
Console.WriteLine(string.Join(",", byteArray));
}
public static byte[] CombineByteArrays(byte[] array1, byte[] array2)
{
byte[] combined = new byte[array1.Length + array2.Length];
Buffer.BlockCopy(array1, 0, combined, 0, array1.Length);
Buffer.BlockCopy(array2, 0, combined, array1.Length, array2.Length);
return combined;
}
}
}