mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
4bf7060ec7
ReSharper 2020.Something modified the var style again so that arrays of built-in types also count as built-in types, meaning the type should always be explicit.
20 lines
475 B
C#
20 lines
475 B
C#
using LibHac.Fs;
|
|
using LibHac.Fs.Fsa;
|
|
using LibHac.FsSystem;
|
|
using LibHac.Tests.Fs.IFileSystemTestBase;
|
|
|
|
namespace LibHac.Tests.Fs
|
|
{
|
|
public class AesXtsFileSystemTests : IFileSystemTests
|
|
{
|
|
protected override IFileSystem CreateFileSystem()
|
|
{
|
|
var baseFs = new InMemoryFileSystem();
|
|
|
|
byte[] keys = new byte[0x20];
|
|
var xtsFs = new AesXtsFileSystem(baseFs, keys, 0x4000);
|
|
|
|
return xtsFs;
|
|
}
|
|
}
|
|
}
|