Ich habe zwei Schlüssel (Key1 und Key2) mit xor verknüpft:
Delphi-Quellcode:
for i := 1 to x do
Result[x] := Chr(Byte(Key1[x]) xor Byte(Key2[x]));
Der Resultatstring enthält die richtigen Werte aber eben Bit für Bit:
Beispiel:
Result = #3#3#2#2#3#A#A#A
ich möchte aber:
Result = '33223AAA'