Vilabostan 0 Posted January 20, 2023 I am using Delphi 10.4 Community edition. I tried to install CryptoLib4Pascal libraries. The CryptoLib4Pascal should be compiled by Delphi Tokyo+ compiler and 10.4 is using Sydney compiler. After compilation with Sydney compiler it is not possible to add package .bpl file can not be installed because it is not a design time package. Is there a way to install CryptoLib4Pascal in Delphi 10.4 community? Share this post Link to post
David Heffernan 2345 Posted January 20, 2023 Why do you need design time packages for a cryptography library? Share this post Link to post
Vilabostan 0 Posted January 20, 2023 I actally do not need it at aal. So is it possible to compile .exe and run it not from IDE but with CryptoLib4Pascal included in run-only .exe file? Share this post Link to post
David Heffernan 2345 Posted January 20, 2023 4 hours ago, Vilabostan said: So is it possible to compile .exe and run it not from IDE but with CryptoLib4Pascal included in run-only .exe file? Yes. The package in this library is a runtime package for use if you are using runtime packages rather than a monolithic executable. Just include the source code for the library and compile it. There is a sample program that does this. Share this post Link to post
Michel Nodato 0 Posted September 4 It is possible to create a package for cryptolib4pascal and use that in your project. The thing is, it's not very simple (in my opinion). I managed to do it. And documented my way of working here: https://nodato.nl/cryptolib-pascal/. Hope this helps. Share this post Link to post
Rollo62 536 Posted September 6 Maybe this is interesting too https://github.com/MHumm/DelphiEncryptionCompendium Share this post Link to post