Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Object-Pascal / Delphi-Language (https://www.delphipraxis.net/32-object-pascal-delphi-language/)
-   -   Delphi Problem mit altem Algorihthmus (Verschlüssleung) (https://www.delphipraxis.net/71238-problem-mit-altem-algorihthmus-verschluessleung.html)

Kessel 11. Jun 2006 19:11


Problem mit altem Algorihthmus (Verschlüssleung)
 
Hi,

hab vor Jahren mal den RC4 Algorithmus in Delphi portiert.
Funktioniert auch ganz gut,jedoch kann nicht allzuviel damit verschlüsselt werden.
Ich glaube das die Daten zwar verschlüsselt werden aber nicht richtig übergeben bzw. angezeigt.
Falls mir jemand helfen könnte wäre ich sehr, sehr dankbar.

Hier mal der Code:

Delphi-Quellcode:
type TRC4 = class(TObject)
     private
       FInText :  String;
       FOutText :  String;
       FKey    :  String;
       FMainKey :  String;
       FSBox   :  Array[0..255] of Integer;
     public
       constructor Create;

       procedure InitKey;
       procedure Encrypt;

       property MainKey             : String read FMainKey write FMainKey;
       property Key                 : String read FKey write FKey;
       property KlarText            : String read FInText write FInText;
       property VerschluesselterText : String read FOutText write FOutText;
     end;

implementation

constructor TRC4.Create;
var
  i : Integer;
begin
  inherited;
  FOutText := '';
  FInText := '';
  FKey    := '';
  for i := 0 to 255 do FSBox[i] := 0; // Variablen und Array werden "geleert".
end;

procedure TRC4.Encrypt;
var
  i, j, z : Integer;
  t       : Byte;
  swapbyte : Byte;
begin                // Verschlüsseln
  i := 0;
  j := 0;
  FOutText := '';
  if length(FInText) = 0 then exit;
  for z := 0 to length(FInText) do
  begin
    i := (i + 1) mod 256;
    j := (j + FSBox[i]) mod 256;
      swapbyte := FSBox[j];
      FSBox[j] := FSBox[i];
      FSBox[i] := swapbyte;
    t := (FSBox[i] + FSBox[j]) mod 256;
    FOutText := FOutText + chr(FSBox[t] xor ord(FInText[z+1]))
  end;
end;
[edit=Christian Seehase]Delphi-Tags gesetzt. Bitte künftig selber machen. Danke. Mfg, Christian Seehase[/edit]

Dax 11. Jun 2006 20:07

Re: Problem mit altem Algorihthmus (Verschlüssleung)
 
Hm, also bevor da keine [delphi]-Tags sind, werd'sch mir das nicht ansehn ;)

Aber falls du eine Vergleichsmöglichkeit brauchst, kuck doch mal unter RC4RC4 hier in der Codelib.


Alle Zeitangaben in WEZ +1. Es ist jetzt 20:55 Uhr.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz