mirror of
https://github.com/kwsch/NHSE.git
synced 2026-08-18 16:46:52 -05:00
Update to .NET 10 (#683)
This commit is contained in:
@@ -1,16 +1,3 @@
|
||||
namespace NHSE.Core
|
||||
{
|
||||
internal readonly ref struct CryptoFile
|
||||
{
|
||||
public readonly byte[] Data;
|
||||
public readonly byte[] Key;
|
||||
public readonly byte[] Ctr;
|
||||
namespace NHSE.Core;
|
||||
|
||||
public CryptoFile(byte[] data, byte[] key, byte[] ctr)
|
||||
{
|
||||
Data = data;
|
||||
Key = key;
|
||||
Ctr = ctr;
|
||||
}
|
||||
}
|
||||
}
|
||||
internal readonly record struct CryptoFile(byte[] Data, byte[] Key, byte[] Ctr);
|
||||
Reference in New Issue
Block a user