File tree 1 file changed +2
-19
lines changed
1 file changed +2
-19
lines changed Original file line number Diff line number Diff line change 1
1
#include " library.h"
2
2
#include < iostream>
3
3
4
- char DecryptChar (char a, int key){
4
+ char Decrypt (char a, int key){
5
5
if (std::ispunct (a)){
6
6
return a;
7
7
}
@@ -24,7 +24,7 @@ char DecryptChar(char a, int key){
24
24
return albet[key];
25
25
}
26
26
27
- char EncryptChar (char a, int key){
27
+ char Encrypt (char a, int key){
28
28
if (std::ispunct (a)){
29
29
return a;
30
30
}
@@ -46,20 +46,3 @@ char EncryptChar(char a, int key){
46
46
}
47
47
return albet[key];
48
48
}
49
-
50
- std::string Encrypt (std::string text, int key) {
51
- std::string encrypted;
52
- for (int i = 0 ; i < text.length (); i++) {
53
- encrypted += EncryptChar (text[i], key);
54
- }
55
- return encrypted;
56
- }
57
-
58
-
59
- std::string Decrypt (std::string text, int key) {
60
- std::string encrypted;
61
- for (int i = 0 ; i < text.length (); i++) {
62
- encrypted += DecryptChar (text[i], key);
63
- }
64
- return encrypted;
65
- }
You can’t perform that action at this time.
0 commit comments