-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathszyfr_vigenere'a.cpp
103 lines (71 loc) · 1.42 KB
/
szyfr_vigenere'a.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
#include <iostream>
#include <conio.h>
using namespace std;
string sprawdzDlugoscHasla(string k, string h){
if(k.length() == h.length()){
return h;
}
else if(k.length()> h.length()){
string pom;
int a=0;
for(int i=0;i<k.length();i++){
if(a == h.length())a=0;
if(k[i] == (char)32)
pom+=(char)32;
else
{
pom+=h[a];
a++;
}
}
return pom;
}
else if(k.length()<h.length()){
string pom;
for(int i=0;i<k.length();i++){
pom+=h[i];
}
return pom;
}
}
//97-122 male
char szukajWtab(int poczatkowa, int kodowa){
int pom = poczatkowa-97;
if(kodowa+pom<=122){
kodowa+=pom;
}
else if(kodowa+pom>=122){
kodowa= kodowa+pom - 123;
kodowa+=97;
}
if (poczatkowa == 32)kodowa=32;
cout<<(char)kodowa;
}
void szyfruj(string k, string h){
string szyfr;
int x;
int y;
for(int i=0;i<k.size();i++){
x = (int)k[i]; //pozycja (numer) znaku w tablicy slowa kodowego
//cout<<x;
y = (int)h[i]; //pozycja (numer) znaku w tablicy hasla
szyfr[i] = szukajWtab(x,y);
}
//system("PAUSE");
}
int main(){
string a,kod,haslo;
cout<<"Podaj tekst jawny :";
getline(cin,kod);
//cout<<kod;
cout<<"Podaj haslo :";
getline(cin,haslo);
//cout<<haslo<<"\n";
haslo = sprawdzDlugoscHasla(kod, haslo);
//cout <<haslo<<"\n\n";
cout<<"zakodowane : ";
szyfruj(kod,haslo);
//cout<<"\n przed: "<<kod <<" \n";
system("Pause");
return 0;
}