mirror of
https://github.com/Sanae6/SmoOnlineServer.git
synced 2024-11-05 11:15:04 +00:00
31 lines
No EOL
891 B
C#
31 lines
No EOL
891 B
C#
using System.Buffers;
|
|
using System.Runtime.InteropServices;
|
|
using System.Security.Cryptography;
|
|
|
|
namespace Shared;
|
|
|
|
public static class Extensions {
|
|
public static string Hex(this Span<byte> span) {
|
|
return span.ToArray().Hex();
|
|
}
|
|
|
|
public static string Hex(this IEnumerable<byte> array) {
|
|
return string.Join(' ', array.ToArray().Select(x => x.ToString("X2")));
|
|
}
|
|
|
|
public static unsafe byte* Ptr(this Span<byte> span) {
|
|
fixed (byte* data = span) {
|
|
return data;
|
|
}
|
|
}
|
|
|
|
public static string TrimNullTerm(this string text) {
|
|
return text.Split('\0').FirstOrDefault() ?? "";
|
|
}
|
|
|
|
public static IMemoryOwner<byte> RentZero(this MemoryPool<byte> pool, int minSize) {
|
|
IMemoryOwner<byte> owner = pool.Rent(minSize);
|
|
CryptographicOperations.ZeroMemory(owner.Memory.Span);
|
|
return owner;
|
|
}
|
|
} |