XCI-Explorer/XTSSharp/XtsAes128.cs

33 lines
847 B
C#
Raw Normal View History

2018-06-17 18:21:52 +00:00
using System;
using System.Security.Cryptography;
namespace XTSSharp;
public class XtsAes128 : Xts
2019-04-14 17:17:26 +00:00
{
private const int KEY_LENGTH = 128;
private const int KEY_BYTE_LENGTH = 16;
2018-06-17 18:21:52 +00:00
protected XtsAes128(Func<SymmetricAlgorithm> create, byte[] key1, byte[] key2)
: base(create, VerifyKey(128, key1), VerifyKey(128, key2))
{
}
2018-06-17 18:21:52 +00:00
public static Xts Create(byte[] key1, byte[] key2)
{
VerifyKey(128, key1);
VerifyKey(128, key2);
return new XtsAes128(Aes.Create, key1, key2);
}
2018-06-17 18:21:52 +00:00
public static Xts Create(byte[] key)
{
VerifyKey(256, key);
byte[] array = new byte[16];
byte[] array2 = new byte[16];
Buffer.BlockCopy(key, 0, array, 0, 16);
Buffer.BlockCopy(key, 16, array2, 0, 16);
return new XtsAes128(Aes.Create, array, array2);
}
2018-06-17 18:21:52 +00:00
}