Курсовая работа: Использование современных симметрических DES и асимметрических RSA алгоритмов шифрования
var
Ka:int64;
Kb:int64;
Q,P:int64;
i:integer;
ish_f,vihod_f:TextFile;
t1,t2:TDateTime;
vremja:integer;
razmer:integer;
begin
P:= StrToInt(Edit5.Text); //S4itivaem P
Q:= StrToInt(Edit4.Text); //S4itivaem Q
if(ListBox3.ItemIndex <> -1) then
begin
Ka:= StrToInt(ListBox3.Items[ListBox3.ItemIndex]);//Opredeljaem sly4ainim obrazom Ka
Kb:=StrToInt(Label12.Caption);
t1:=Time;
if Form1.RadioButton10.Checked=true then
begin
Raswifrovanie_RSA(Kb,P,Q,'RSA_crypted\Z_20_RSA.txt','RSA_uncrypted\R_20_RSA.txt');
razmer:=1024*20;
end;
if Form1.RadioButton9.Checked=true then
begin
Raswifrovanie_RSA(Kb,P,Q,'RSA_crypted\Z_50_RSA.txt','RSA_uncrypted\R_50_RSA.txt');
razmer:=1024*20;
end;
if Form1.RadioButton8.Checked=true then
begin