Class TRALCripto
Unit
Declaration
type TRALCripto = class(TObject)
Description
Base class for all crypto functions
Hierarchy
- TObject
- TRALCripto
Overview
Methods
![]() |
constructor Create; |
![]() |
function Decrypt(const AValue: StringRAL; ABinary : boolean = false): StringRAL; overload; |
![]() |
function Decrypt(AValue: TBytes): StringRAL; overload; |
![]() |
function Decrypt(AValue: TStream): StringRAL; overload; |
![]() |
function DecryptAsBytes(AValue: TStream): TBytes; overload; |
![]() |
function DecryptAsBytes(AValue: TBytes): TBytes; overload; |
![]() |
function DecryptAsBytes(const AValue: StringRAL): TBytes; overload; |
![]() |
function DecryptAsStream(AValue: TStream): TStream; virtual; abstract; |
![]() |
function Encrypt(const AValue: StringRAL; ABinary : boolean = false): StringRAL; overload; |
![]() |
function Encrypt(AValue: TStream): StringRAL; overload; |
![]() |
function Encrypt(AValue: TBytes): StringRAL; overload; |
![]() |
function EncryptAsBytes(const AValue: StringRAL): TBytes; overload; |
![]() |
function EncryptAsBytes(AValue: TBytes): TBytes; overload; |
![]() |
function EncryptAsBytes(AValue: TStream): TBytes; overload; |
![]() |
function EncryptAsStream(AValue: TStream): TStream; virtual; abstract; |
![]() |
function BeforeDecrypt(AValue: TStream): TStream; |
![]() |
function BeforeEncrypt(AValue: TStream): TStream; |
![]() |
function CanCript: boolean; virtual; |
![]() |
procedure SetKey(const AValue: StringRAL); virtual; |
Properties
![]() |
property IntputType: TRALCriptoInOutType read FIntputType write FIntputType; |
![]() |
property Key: StringRAL read FKey write SetKey; |
![]() |
property OutputType: TRALCriptoInOutType read FOutputType write FOutputType; |
Description
Methods
![]() |
constructor Create; |
![]() |
function Decrypt(const AValue: StringRAL; ABinary : boolean = false): StringRAL; overload; |
![]() |
function Decrypt(AValue: TBytes): StringRAL; overload; |
![]() |
function Decrypt(AValue: TStream): StringRAL; overload; |
![]() |
function DecryptAsBytes(AValue: TStream): TBytes; overload; |
![]() |
function DecryptAsBytes(AValue: TBytes): TBytes; overload; |
![]() |
function DecryptAsBytes(const AValue: StringRAL): TBytes; overload; |
![]() |
function DecryptAsStream(AValue: TStream): TStream; virtual; abstract; |
![]() |
function Encrypt(const AValue: StringRAL; ABinary : boolean = false): StringRAL; overload; |
![]() |
function Encrypt(AValue: TStream): StringRAL; overload; |
![]() |
function Encrypt(AValue: TBytes): StringRAL; overload; |
![]() |
function EncryptAsBytes(const AValue: StringRAL): TBytes; overload; |
![]() |
function EncryptAsBytes(AValue: TBytes): TBytes; overload; |
![]() |
function EncryptAsBytes(AValue: TStream): TBytes; overload; |
![]() |
function EncryptAsStream(AValue: TStream): TStream; virtual; abstract; |
![]() |
function BeforeDecrypt(AValue: TStream): TStream; |
![]() |
function BeforeEncrypt(AValue: TStream): TStream; |
![]() |
function CanCript: boolean; virtual; |
![]() |
procedure SetKey(const AValue: StringRAL); virtual; |
Properties
![]() |
property IntputType: TRALCriptoInOutType read FIntputType write FIntputType; |
![]() |
property Key: StringRAL read FKey write SetKey; |
![]() |
property OutputType: TRALCriptoInOutType read FOutputType write FOutputType; |
GitHub Repository
Generated by PasDoc 0.16.0.


