DelphiEncryptionCompendium icon indicating copy to clipboard operation
DelphiEncryptionCompendium copied to clipboard

Delphi Encryption Compendium

Results 6 DelphiEncryptionCompendium issues
Sort by recently updated
recently updated
newest added

Im trying to encrypt/decrypt with AES 256, but I can not get the same result as php, here is the example: text = {"idServicio":79, "idProducto":209 , "referencia": "40425475190118187271", "montoPago": 9999,...

I do guess that you forked from this one: [https://github.com/Winkelsdorf/DelphiEncryptionCompendium](https://github.com/Winkelsdorf/DelphiEncryptionCompendium) Which got quite some changes over the last few years to make it cross platform compatible, fix bugs, transform the...

My program work flawlessly, however when I change the cipher algorithm to Twofish I get an Integer overflow... Can't possibly figure out what may cause this issue.

here provided a set of methods: - counter block modes: cmCTR2, cmCTR4 - auth encoder AES128-CCM - key wrapping with AES128-KW RFC-3394

The Delphi Encryption Compendium is exactly what I require for storing passwords in a database. However, the issue I am having is with compiling my programs as 64-bit Windows executables....

Hail, how can i use DECRandom to get a random number out of 1000 for example? `uses DECRandom procedure TForm1.Button1Click(Sender: TObject); begin //???????? memo1.lines.add(inttostr(decrandom(1000))); //??? end; `