TOlfCryptDecrypt Class
Definition
Simple class to crypt and decrypt buffers.
Delphi
type TOlfCryptDecrypt = class(TObject)
- Inheritance
-
TObjectTOlfCryptDecrypt
Remarks
This unit contains very simple cryptographic algorithms. DON't USE THEM FOR SENSIBLE DATAS !!! Check those projects if you need a more robust algorithm : - Delphi Encryption Compendium https://github.com/MHumm/DelphiEncryptionCompendium - TMS Cryptographic Pack https://www.tmssoftware.com/site/tmscrypto.asp
Constructors
| Create |
Create an instance of TOlfCryptDecrypt class |
| Create(TByteDynArray) |
Create an instance of TOlfCryptDecrypt class and fill its key buffer as bytes |
| Create(TIntegerDynArray) |
Create an instance of TOlfCryptDecrypt class and fill its key buffer as integers |
Properties
| ByteKeys |
buffer of bytes used as a key by Crypt/Decrypt functions |
| IntegerKeys |
buffer of integers used as a key by Crypt/Decrypt functions |