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 @@ -658,6 +658,7 @@ uses
ClpIBlockCipherMode in '..\..\CryptoLib\src\Interfaces\Crypto\Modes\ClpIBlockCipherMode.pas',
ClpIBulkBlockCipherMode in '..\..\CryptoLib\src\Interfaces\Crypto\Modes\ClpIBulkBlockCipherMode.pas',
ClpIBulkBlockCipher in '..\..\CryptoLib\src\Interfaces\Crypto\ClpIBulkBlockCipher.pas',
ClpIBulkStreamCipher in '..\..\CryptoLib\src\Interfaces\Crypto\ClpIBulkStreamCipher.pas',
ClpIEcbBlockCipher in '..\..\CryptoLib\src\Interfaces\Crypto\Modes\ClpIEcbBlockCipher.pas',
ClpEcbBlockCipher in '..\..\CryptoLib\src\Crypto\Modes\ClpEcbBlockCipher.pas',
ClpGnuObjectIdentifiers in '..\..\CryptoLib\src\Asn1\Gnu\ClpGnuObjectIdentifiers.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 @@ -674,6 +674,7 @@ uses
ClpIBlockCipherMode in '..\..\CryptoLib\src\Interfaces\Crypto\Modes\ClpIBlockCipherMode.pas',
ClpIBulkBlockCipherMode in '..\..\CryptoLib\src\Interfaces\Crypto\Modes\ClpIBulkBlockCipherMode.pas',
ClpIBulkBlockCipher in '..\..\CryptoLib\src\Interfaces\Crypto\ClpIBulkBlockCipher.pas',
ClpIBulkStreamCipher in '..\..\CryptoLib\src\Interfaces\Crypto\ClpIBulkStreamCipher.pas',
ClpIEcbBlockCipher in '..\..\CryptoLib\src\Interfaces\Crypto\Modes\ClpIEcbBlockCipher.pas',
ClpEcbBlockCipher in '..\..\CryptoLib\src\Crypto\Modes\ClpEcbBlockCipher.pas',
ClpGnuObjectIdentifiers in '..\..\CryptoLib\src\Asn1\Gnu\ClpGnuObjectIdentifiers.pas',
Expand Down
4 changes: 3 additions & 1 deletion CryptoLib.Tests/Delphi.Tests/CryptoLib.Tests.Mobile.dpr
Original file line number Diff line number Diff line change
Expand Up @@ -655,6 +655,7 @@ uses
ClpIBlockCipherMode in '..\..\CryptoLib\src\Interfaces\Crypto\Modes\ClpIBlockCipherMode.pas',
ClpIBulkBlockCipherMode in '..\..\CryptoLib\src\Interfaces\Crypto\Modes\ClpIBulkBlockCipherMode.pas',
ClpIBulkBlockCipher in '..\..\CryptoLib\src\Interfaces\Crypto\ClpIBulkBlockCipher.pas',
ClpIBulkStreamCipher in '..\..\CryptoLib\src\Interfaces\Crypto\ClpIBulkStreamCipher.pas',
ClpIEcbBlockCipher in '..\..\CryptoLib\src\Interfaces\Crypto\Modes\ClpIEcbBlockCipher.pas',
ClpEcbBlockCipher in '..\..\CryptoLib\src\Crypto\Modes\ClpEcbBlockCipher.pas',
ClpGnuObjectIdentifiers in '..\..\CryptoLib\src\Asn1\Gnu\ClpGnuObjectIdentifiers.pas',
Expand Down Expand Up @@ -890,7 +891,8 @@ uses
SecP256R1FieldTests in '..\src\Math\EC\Custom\Sec\SecP256R1FieldTests.pas',
Salsa20Tests in '..\src\Crypto\Salsa20Tests.pas',
ChaChaTests in '..\src\Crypto\ChaChaTests.pas',
ChaCha7539ProcessBlocks2Tests in '..\src\Crypto\ChaCha7539ProcessBlocks2Tests.pas',
ChaCha7539Tests in '..\src\Crypto\ChaCha7539Tests.pas',
StreamCipherTestBase in '..\src\Crypto\StreamCipherTestBase.pas',
HChaCha20Tests in '..\src\Crypto\HChaCha20Tests.pas',
XChaCha20Tests in '..\src\Crypto\XChaCha20Tests.pas',
XChaCha20Poly1305Tests in '..\src\Crypto\XChaCha20Poly1305Tests.pas',
Expand Down
4 changes: 3 additions & 1 deletion CryptoLib.Tests/Delphi.Tests/CryptoLib.Tests.Mobile.dproj
Original file line number Diff line number Diff line change
Expand Up @@ -998,6 +998,7 @@
<DCCReference Include="..\..\CryptoLib\src\Interfaces\Crypto\Modes\ClpIBlockCipherMode.pas"/>
<DCCReference Include="..\..\CryptoLib\src\Interfaces\Crypto\Modes\ClpIBulkBlockCipherMode.pas"/>
<DCCReference Include="..\..\CryptoLib\src\Interfaces\Crypto\ClpIBulkBlockCipher.pas"/>
<DCCReference Include="..\..\CryptoLib\src\Interfaces\Crypto\ClpIBulkStreamCipher.pas"/>
<DCCReference Include="..\..\CryptoLib\src\Interfaces\Crypto\Modes\ClpIEcbBlockCipher.pas"/>
<DCCReference Include="..\..\CryptoLib\src\Crypto\Modes\ClpEcbBlockCipher.pas"/>
<DCCReference Include="..\..\CryptoLib\src\Asn1\Gnu\ClpGnuObjectIdentifiers.pas"/>
Expand Down Expand Up @@ -1228,7 +1229,8 @@
<DCCReference Include="..\src\Math\EC\Custom\Sec\SecP256R1FieldTests.pas"/>
<DCCReference Include="..\src\Crypto\Salsa20Tests.pas"/>
<DCCReference Include="..\src\Crypto\ChaChaTests.pas"/>
<DCCReference Include="..\src\Crypto\ChaCha7539ProcessBlocks2Tests.pas"/>
<DCCReference Include="..\src\Crypto\ChaCha7539Tests.pas"/>
<DCCReference Include="..\src\Crypto\StreamCipherTestBase.pas"/>
<DCCReference Include="..\src\Crypto\HChaCha20Tests.pas"/>
<DCCReference Include="..\src\Crypto\XChaCha20Tests.pas"/>
<DCCReference Include="..\src\Crypto\XChaCha20Poly1305Tests.pas"/>
Expand Down
4 changes: 3 additions & 1 deletion CryptoLib.Tests/Delphi.Tests/CryptoLib.Tests.dpr
Original file line number Diff line number Diff line change
Expand Up @@ -674,6 +674,7 @@ uses
ClpIBlockCipherMode in '..\..\CryptoLib\src\Interfaces\Crypto\Modes\ClpIBlockCipherMode.pas',
ClpIBulkBlockCipherMode in '..\..\CryptoLib\src\Interfaces\Crypto\Modes\ClpIBulkBlockCipherMode.pas',
ClpIBulkBlockCipher in '..\..\CryptoLib\src\Interfaces\Crypto\ClpIBulkBlockCipher.pas',
ClpIBulkStreamCipher in '..\..\CryptoLib\src\Interfaces\Crypto\ClpIBulkStreamCipher.pas',
ClpIEcbBlockCipher in '..\..\CryptoLib\src\Interfaces\Crypto\Modes\ClpIEcbBlockCipher.pas',
ClpEcbBlockCipher in '..\..\CryptoLib\src\Crypto\Modes\ClpEcbBlockCipher.pas',
ClpGnuObjectIdentifiers in '..\..\CryptoLib\src\Asn1\Gnu\ClpGnuObjectIdentifiers.pas',
Expand Down Expand Up @@ -909,7 +910,8 @@ uses
SecP256R1FieldTests in '..\src\Math\EC\Custom\Sec\SecP256R1FieldTests.pas',
Salsa20Tests in '..\src\Crypto\Salsa20Tests.pas',
ChaChaTests in '..\src\Crypto\ChaChaTests.pas',
ChaCha7539ProcessBlocks2Tests in '..\src\Crypto\ChaCha7539ProcessBlocks2Tests.pas',
ChaCha7539Tests in '..\src\Crypto\ChaCha7539Tests.pas',
StreamCipherTestBase in '..\src\Crypto\StreamCipherTestBase.pas',
HChaCha20Tests in '..\src\Crypto\HChaCha20Tests.pas',
XChaCha20Tests in '..\src\Crypto\XChaCha20Tests.pas',
XChaCha20Poly1305Tests in '..\src\Crypto\XChaCha20Poly1305Tests.pas',
Expand Down
8 changes: 6 additions & 2 deletions 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="191">
<Units Count="192">
<Unit0>
<Filename Value="CryptoLib.lpr"/>
<IsPartOfProject Value="True"/>
Expand Down Expand Up @@ -618,7 +618,7 @@
<IsPartOfProject Value="True"/>
</Unit133>
<Unit134>
<Filename Value="..\src\Crypto\ChaCha7539ProcessBlocks2Tests.pas"/>
<Filename Value="..\src\Crypto\ChaCha7539Tests.pas"/>
<IsPartOfProject Value="True"/>
</Unit134>
<Unit135>
Expand Down Expand Up @@ -845,6 +845,10 @@
<Filename Value="..\src\Crypto\BlockCipherTestBase.pas"/>
<IsPartOfProject Value="True"/>
</Unit190>
<Unit191>
<Filename Value="..\src\Crypto\StreamCipherTestBase.pas"/>
<IsPartOfProject Value="True"/>
</Unit191>
</Units>
</ProjectOptions>
<CompilerOptions>
Expand Down
2 changes: 1 addition & 1 deletion CryptoLib.Tests/FreePascal.Tests/CryptoLib.lpr
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
IESCipherTests, HMacTests, Pkcs5Tests, HkdfGeneratorTests, ECIESTests,
PascalCoinECIESTests, ECNRTests, PrimesTests, ECEncodingTests, GF256AesTests,
PaddingTests, DSATests, DeterministicDsaTests, Salsa20Tests, XSalsa20Tests,
ChaChaTests, ChaCha7539ProcessBlocks2Tests, HChaCha20Tests, XChaCha20Tests,
ChaChaTests, ChaCha7539Tests, StreamCipherTestBase, HChaCha20Tests, XChaCha20Tests,
XChaCha20Poly1305Tests, StreamCipherResetTests, CTSTests, X25519Tests,
X448Tests, Ed25519Tests, Ed448Tests, X25519HigherLevelTests,
Ed25519HigherLevelTests, ShortenedDigestTests, Kdf1GeneratorTests,
Expand Down
8 changes: 6 additions & 2 deletions 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="191">
<Units Count="192">
<Unit0>
<Filename Value="CryptoLibConsole.lpr"/>
<IsPartOfProject Value="True"/>
Expand Down Expand Up @@ -577,7 +577,7 @@
<IsPartOfProject Value="True"/>
</Unit133>
<Unit134>
<Filename Value="..\src\Crypto\ChaCha7539ProcessBlocks2Tests.pas"/>
<Filename Value="..\src\Crypto\ChaCha7539Tests.pas"/>
<IsPartOfProject Value="True"/>
</Unit134>
<Unit135>
Expand Down Expand Up @@ -804,6 +804,10 @@
<Filename Value="..\src\Crypto\BlockCipherTestBase.pas"/>
<IsPartOfProject Value="True"/>
</Unit190>
<Unit191>
<Filename Value="..\src\Crypto\StreamCipherTestBase.pas"/>
<IsPartOfProject Value="True"/>
</Unit191>
</Units>
</ProjectOptions>
<CompilerOptions>
Expand Down
2 changes: 1 addition & 1 deletion CryptoLib.Tests/FreePascal.Tests/CryptoLibConsole.lpr
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
IESCipherTests, HMacTests, Pkcs5Tests, HkdfGeneratorTests, ECIESTests,
PascalCoinECIESTests, ECNRTests, PrimesTests, ECEncodingTests, GF256AesTests,
PaddingTests, DSATests, DeterministicDsaTests, Salsa20Tests, XSalsa20Tests,
ChaChaTests, ChaCha7539ProcessBlocks2Tests, HChaCha20Tests, XChaCha20Tests,
ChaChaTests, ChaCha7539Tests, StreamCipherTestBase, HChaCha20Tests, XChaCha20Tests,
XChaCha20Poly1305Tests, StreamCipherResetTests, CTSTests, X25519Tests,
X448Tests, Ed25519Tests, Ed448Tests, X25519HigherLevelTests,
Ed25519HigherLevelTests, Curve25519KeyUtilitiesTests, ShortenedDigestTests,
Expand Down
Loading
Loading