NHSE/NHSE.Core/Encryption/CryptoFile.cs
Kurt f316ffce9e Minor tweaks
no functional change
2021-01-28 07:07:41 -08:00

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;
}
}
}