mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
23 lines
705 B
C#
23 lines
705 B
C#
using LibHac.Crypto;
|
|
using Xunit;
|
|
|
|
namespace LibHac.Tests.CryptoTests;
|
|
|
|
public class AesCtrTests
|
|
{
|
|
public static TheoryData<EncryptionTestVector> TestVectors = RspReader.ReadEncryptionTestVectors(true, "CTR128.rsp");
|
|
|
|
[Theory]
|
|
[MemberData(nameof(TestVectors))]
|
|
public static void Transform(EncryptionTestVector tv)
|
|
{
|
|
Common.CipherTestCore(tv.PlainText, tv.CipherText, Aes.CreateCtrEncryptor(tv.Key, tv.Iv, true));
|
|
}
|
|
|
|
[AesIntrinsicsRequiredTheory]
|
|
[MemberData(nameof(TestVectors))]
|
|
public static void TransformIntrinsics(EncryptionTestVector tv)
|
|
{
|
|
Common.CipherTestCore(tv.PlainText, tv.CipherText, Aes.CreateCtrEncryptor(tv.Key, tv.Iv));
|
|
}
|
|
}
|