Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CryptoLib.Benchmark/Delphi/CryptoLib.BenchmarkConsole.dpr
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ uses
PerformanceBenchmark in '..\src\Core\PerformanceBenchmark.pas',
SignerPerformanceBenchmark in '..\src\Core\SignerPerformanceBenchmark.pas',
ClpAesEngine in '..\..\CryptoLib\src\Crypto\Engines\ClpAesEngine.pas',
ClpAesBitSlicedEngine in '..\..\CryptoLib\src\Crypto\Engines\ClpAesBitSlicedEngine.pas',
ClpIAesHardwareEngine in '..\..\CryptoLib\src\Interfaces\Crypto\Engines\ClpIAesHardwareEngine.pas',
ClpIAesEngineX86 in '..\..\CryptoLib\src\Interfaces\Crypto\Engines\ClpIAesEngineX86.pas',
ClpAesEngineX86 in '..\..\CryptoLib\src\Crypto\Engines\ClpAesEngineX86.pas',
Expand Down
1 change: 1 addition & 0 deletions CryptoLib.Examples/Delphi.Examples/CryptoLib.Examples.dpr
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ uses
SecureRandomExample in '..\src\Examples\SecureRandomExample.pas',
HybridEncryption in '..\src\Utilities\HybridEncryption.pas',
ClpAesEngine in '..\..\CryptoLib\src\Crypto\Engines\ClpAesEngine.pas',
ClpAesBitSlicedEngine in '..\..\CryptoLib\src\Crypto\Engines\ClpAesBitSlicedEngine.pas',
ClpIAesHardwareEngine in '..\..\CryptoLib\src\Interfaces\Crypto\Engines\ClpIAesHardwareEngine.pas',
ClpIAesEngineX86 in '..\..\CryptoLib\src\Interfaces\Crypto\Engines\ClpIAesEngineX86.pas',
ClpAesEngineX86 in '..\..\CryptoLib\src\Crypto\Engines\ClpAesEngineX86.pas',
Expand Down
2 changes: 2 additions & 0 deletions CryptoLib.Tests/Delphi.Tests/CryptoLib.Tests.Mobile.dpr
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ uses
MobileTestHostFormUnit in 'Mobile\MobileTestHostFormUnit.pas' {MobileTestHostForm},
MobileTestRunner in 'Mobile\MobileTestRunner.pas',
ClpAesEngine in '..\..\CryptoLib\src\Crypto\Engines\ClpAesEngine.pas',
ClpAesBitSlicedEngine in '..\..\CryptoLib\src\Crypto\Engines\ClpAesBitSlicedEngine.pas',
ClpIAesHardwareEngine in '..\..\CryptoLib\src\Interfaces\Crypto\Engines\ClpIAesHardwareEngine.pas',
ClpIAesEngineX86 in '..\..\CryptoLib\src\Interfaces\Crypto\Engines\ClpIAesEngineX86.pas',
ClpAesEngineX86 in '..\..\CryptoLib\src\Crypto\Engines\ClpAesEngineX86.pas',
Expand Down Expand Up @@ -927,6 +928,7 @@ uses
CtrDrbgTests in '..\src\Rngs\Drbg\CtrDrbgTests.pas',
//FixedPointTests in '..\src\Math\EC\FixedPointTests.pas',
AESTests in '..\src\Crypto\AESTests.pas',
AesBitSlicedTests in '..\src\Crypto\AesBitSlicedTests.pas',
BlockCipherTestBase in '..\src\Crypto\BlockCipherTestBase.pas',
AesBlockCipherTestBase in '..\src\Crypto\AesBlockCipherTestBase.pas',
AesLightTests in '..\src\Crypto\AesLightTests.pas',
Expand Down
2 changes: 2 additions & 0 deletions CryptoLib.Tests/Delphi.Tests/CryptoLib.Tests.Mobile.dproj
Original file line number Diff line number Diff line change
Expand Up @@ -352,6 +352,7 @@
</DCCReference>
<DCCReference Include="Mobile\MobileTestRunner.pas"/>
<DCCReference Include="..\..\CryptoLib\src\Crypto\Engines\ClpAesEngine.pas"/>
<DCCReference Include="..\..\CryptoLib\src\Crypto\Engines\ClpAesBitSlicedEngine.pas"/>
<DCCReference Include="..\..\CryptoLib\src\Interfaces\Crypto\Engines\ClpIAesHardwareEngine.pas"/>
<DCCReference Include="..\..\CryptoLib\src\Interfaces\Crypto\Engines\ClpIAesEngineX86.pas"/>
<DCCReference Include="..\..\CryptoLib\src\Crypto\Engines\ClpAesEngineX86.pas"/>
Expand Down Expand Up @@ -1266,6 +1267,7 @@
<DCCReference Include="..\src\Rngs\Drbg\HMacDrbgTests.pas"/>
<DCCReference Include="..\src\Rngs\Drbg\CtrDrbgTests.pas"/>
<DCCReference Include="..\src\Crypto\AESTests.pas"/>
<DCCReference Include="..\src\Crypto\AesBitSlicedTests.pas"/>
<DCCReference Include="..\src\Crypto\BlockCipherTestBase.pas"/>
<DCCReference Include="..\src\Crypto\AesBlockCipherTestBase.pas"/>
<DCCReference Include="..\src\Crypto\AesLightTests.pas"/>
Expand Down
2 changes: 2 additions & 0 deletions CryptoLib.Tests/Delphi.Tests/CryptoLib.Tests.dpr
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ uses
TextTestRunner,
{$ENDIF }
ClpAesEngine in '..\..\CryptoLib\src\Crypto\Engines\ClpAesEngine.pas',
ClpAesBitSlicedEngine in '..\..\CryptoLib\src\Crypto\Engines\ClpAesBitSlicedEngine.pas',
ClpIAesHardwareEngine in '..\..\CryptoLib\src\Interfaces\Crypto\Engines\ClpIAesHardwareEngine.pas',
ClpIAesEngineX86 in '..\..\CryptoLib\src\Interfaces\Crypto\Engines\ClpIAesEngineX86.pas',
ClpAesEngineX86 in '..\..\CryptoLib\src\Crypto\Engines\ClpAesEngineX86.pas',
Expand Down Expand Up @@ -948,6 +949,7 @@ uses
DigestRandomNumberTests in '..\src\Crypto\DigestRandomNumberTests.pas',
FixedPointTests in '..\src\Math\EC\FixedPointTests.pas',
AESTests in '..\src\Crypto\AESTests.pas',
AesBitSlicedTests in '..\src\Crypto\AesBitSlicedTests.pas',
BlockCipherTestBase in '..\src\Crypto\BlockCipherTestBase.pas',
AesBlockCipherTestBase in '..\src\Crypto\AesBlockCipherTestBase.pas',
AesLightTests in '..\src\Crypto\AesLightTests.pas',
Expand Down
6 changes: 5 additions & 1 deletion CryptoLib.Tests/FreePascal.Tests/CryptoLib.Tests.lpi
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
<PackageName Value="FCL"/>
</Item4>
</RequiredPackages>
<Units Count="204">
<Units Count="205">
<Unit0>
<Filename Value="CryptoLib.lpr"/>
<IsPartOfProject Value="True"/>
Expand Down Expand Up @@ -897,6 +897,10 @@
<Filename Value="..\src\Pkix\AttrCertPathTests.pas"/>
<IsPartOfProject Value="True"/>
</Unit203>
<Unit204>
<Filename Value="..\src\Crypto\AesBitSlicedTests.pas"/>
<IsPartOfProject Value="True"/>
</Unit204>
</Units>
</ProjectOptions>
<CompilerOptions>
Expand Down
6 changes: 3 additions & 3 deletions CryptoLib.Tests/FreePascal.Tests/CryptoLib.lpr
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@
AeadTestUtilities, GcmReorderTests, GCMTests, GcmSivTests, GMacTests,
Pkcs12Tests, Bip327MuSig2Tests, Bip340SchnorrTests, AlgorithmFinderTests,
MlKemTests, MlDsaTests, PqcPkcsTests, SlhDsaTests, Lib25519Tests,
Asn1CipherBuilderWithKeyTests, CryptoLibTestBase, PkixFoundationTests,
PkixNameConstraintTests, PkixComparerTests, CertPathTests,
CertPathValidatorTests, PkixPolicyMappingTests, OcspTests,
Asn1CipherBuilderWithKeyTests, AesBitSlicedTests, CryptoLibTestBase,
PkixFoundationTests, PkixNameConstraintTests, PkixComparerTests,
CertPathTests, CertPathValidatorTests, PkixPolicyMappingTests, OcspTests,
CryptoLibHashSetTests, PkitsTestBase, NistCertPathTests, AttrCertPathTests,
CtrDrbgTests, DrbgTestSupport, HashDrbgTests, HMacDrbgTests,
SimdSelectSlotTests, BinaryPrimitivesTests, PkcsEncryptedPrivateKeyInfoTests,
Expand Down
6 changes: 5 additions & 1 deletion CryptoLib.Tests/FreePascal.Tests/CryptoLibConsole.lpi
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<PackageName Value="FCL"/>
</Item2>
</RequiredPackages>
<Units Count="204">
<Units Count="205">
<Unit0>
<Filename Value="CryptoLibConsole.lpr"/>
<IsPartOfProject Value="True"/>
Expand Down Expand Up @@ -856,6 +856,10 @@
<Filename Value="..\src\Pkix\AttrCertPathTests.pas"/>
<IsPartOfProject Value="True"/>
</Unit203>
<Unit204>
<Filename Value="..\src\Crypto\AesBitSlicedTests.pas"/>
<IsPartOfProject Value="True"/>
</Unit204>
</Units>
</ProjectOptions>
<CompilerOptions>
Expand Down
33 changes: 17 additions & 16 deletions CryptoLib.Tests/FreePascal.Tests/CryptoLibConsole.lpr
Original file line number Diff line number Diff line change
Expand Up @@ -41,22 +41,23 @@
AeadTestUtilities, GcmReorderTests, GCMTests, GcmSivTests, GMacTests,
Pkcs12Tests, Bip327MuSig2Tests, Bip340SchnorrTests, AlgorithmFinderTests,
MlKemTests, MlDsaTests, SlhDsaTests, PqcTestSampler, PqcPkcsTests,
Lib25519Tests, Asn1CipherBuilderWithKeyTests, CryptoLibTestBase,
PkixFoundationTests, PkixNameConstraintTests, PkixComparerTests,
CertPathTests, CertPathValidatorTests, PkixPolicyMappingTests, OcspTests,
CryptoLibHashSetTests, PkitsTestBase, NistCertPathTests, AttrCertPathTests,
CtrDrbgTests, DrbgTestSupport, HashDrbgTests, HMacDrbgTests,
SimdSelectSlotTests, BinaryPrimitivesTests, PkcsEncryptedPrivateKeyInfoTests,
Pkcs12StoreTests, OpenSslReaderTests, OpenSslWriterTests, X509CertGenTests,
X509CertificatePairTests, X509UtilitiesTests, FixedSecureRandom,
ShortenedDigest, CertTestUtilities, CryptoTestKeys, CipherKernelToggle,
CryptoLibTestResourceLoader, NistSecureRandom, CsvVectorParser,
JsonVectorParser, RspTxtVectorParser, RspTxtVectorParserTests, Bip327Vectors,
Bip340Vectors, HmacVectors, AsymmetricTestVectors, SymmetricBlockVectors,
ChaChaPoly1305Vectors, OpenSslVectors, PkcsVectors, CertVectors, PkitsVectors,
PqcSampleCredentials, CsvVectorLoaderBase, TestKeyBuilders, PemDerCodec,
PemReaderVectors, Argon2Vectors, PqcTestVectors, DrbgTestVectors, Int32Tests,
Int64Tests, ByteUtilitiesTests, IPAddressUtilitiesTests, PemReaderTests;
Lib25519Tests, Asn1CipherBuilderWithKeyTests, AesBitSlicedTests,
CryptoLibTestBase, PkixFoundationTests, PkixNameConstraintTests,
PkixComparerTests, CertPathTests, CertPathValidatorTests,
PkixPolicyMappingTests, OcspTests, CryptoLibHashSetTests, PkitsTestBase,
NistCertPathTests, AttrCertPathTests, CtrDrbgTests, DrbgTestSupport,
HashDrbgTests, HMacDrbgTests, SimdSelectSlotTests, BinaryPrimitivesTests,
PkcsEncryptedPrivateKeyInfoTests, Pkcs12StoreTests, OpenSslReaderTests,
OpenSslWriterTests, X509CertGenTests, X509CertificatePairTests,
X509UtilitiesTests, FixedSecureRandom, ShortenedDigest, CertTestUtilities,
CryptoTestKeys, CipherKernelToggle, CryptoLibTestResourceLoader,
NistSecureRandom, CsvVectorParser, JsonVectorParser, RspTxtVectorParser,
RspTxtVectorParserTests, Bip327Vectors, Bip340Vectors, HmacVectors,
AsymmetricTestVectors, SymmetricBlockVectors, ChaChaPoly1305Vectors,
OpenSslVectors, PkcsVectors, CertVectors, PkitsVectors, PqcSampleCredentials,
CsvVectorLoaderBase, TestKeyBuilders, PemDerCodec, PemReaderVectors,
Argon2Vectors, PqcTestVectors, DrbgTestVectors, Int32Tests, Int64Tests,
ByteUtilitiesTests, IPAddressUtilitiesTests, PemReaderTests;

type

Expand Down
Loading