mirror of
https://github.com/kwsch/NHSE.git
synced 2026-03-24 10:44:15 -05:00
17 lines
347 B
C#
17 lines
347 B
C#
namespace NHSE.Core
|
|
{
|
|
internal readonly ref struct CryptoFile
|
|
{
|
|
public readonly byte[] Data;
|
|
public readonly byte[] Key;
|
|
public readonly byte[] Ctr;
|
|
|
|
public CryptoFile(byte[] data, byte[] key, byte[] ctr)
|
|
{
|
|
Data = data;
|
|
Key = key;
|
|
Ctr = ctr;
|
|
}
|
|
}
|
|
}
|