Курсовая работа: Программа для шифрования данных с помощью шифра Тритемиуса
Writeln('Please enter the text to decrypt(min length-1 symbols,max length-230)');
repeat
l:=0;j:=0;text:='';h:=true;enter:=true;probel:=true;
c:=readkey;write(c);l:=1;
if ord(c)<>27 then
if ord(c)=13 then begin enter:=false;writeln('Text is not entered.Please enter');end else
begin
text:=text+c;h:=proverka1(c);
repeat
c:=readkey;if (proverka(c)=true) then begin
if c=#8 then backspace(text) else write(c);
if ((c<>#8) and (c<>' ') and (ord(c)<>13) and (ord(c)<>27)) then
begin
text:=text+c;
l:=l+1;
end;
end;
until (ord(c)=13) or (ord(c)=27) or (l=231);
if ord(c)<>27 then begin
if (text=' ') then begin probel:=false;writeln('Text is not entered.Please enter');end;
if (h=false) then
begin
write('You enter invalid text with numeral.Press <Enter> and try again');
readln;
end;
if (l=231) then
begin
write('Exceeded the maximum length of string.Press <Enter>');
repeat