-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibrary.cpp
48 lines (46 loc) · 837 Bytes
/
library.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
#include "library.h"
#include <iostream>
char Decrypt(char a, int key){
if (std::ispunct(a)){
return a;
}
if(a == ' '){
return a;
}
a = tolower(a);
const std::string albet{"abcdefghijklmnopqrstuvwxyz"};
int i = 0;
while(a != albet[i]){
i++;
}
key = i - key;
while(key < 0){
key += 25;
}
while(key > 25){
key -= 25;
}
return albet[key];
}
char Encrypt(char a, int key){
if (std::ispunct(a)){
return a;
}
if(a == ' '){
return a;
}
a = tolower(a);
const std::string albet{"abcdefghijklmnopqrstuvwxyz"};
int i = 0;
while(a != albet[i]){
i++;
}
key = key + i;
while(key < 0){
key += 25;
}
while(key > 25){
key -= 25;
}
return albet[key];
}