In Delphi (Tokyo) we have :
THashSHA2 = record
private
...
function GetDigest: TBytes;
procedure Update(const AData: PByte; ALength: Cardinal); overload;
public
...
end;
Is there a way to access the function GetDigest / Update ? Not via RTTI, as this will be much too slow. I need something fast like if the procedure was public.