Skip to content

Commit 5fa0bd5

Browse files
committed
Encr/Decrypt to single char input
1 parent a2d15ed commit 5fa0bd5

File tree

1 file changed

+2
-19
lines changed

1 file changed

+2
-19
lines changed

library.cpp

+2-19
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include "library.h"
22
#include <iostream>
33

4-
char DecryptChar(char a, int key){
4+
char Decrypt(char a, int key){
55
if (std::ispunct(a)){
66
return a;
77
}
@@ -24,7 +24,7 @@ char DecryptChar(char a, int key){
2424
return albet[key];
2525
}
2626

27-
char EncryptChar(char a, int key){
27+
char Encrypt(char a, int key){
2828
if (std::ispunct(a)){
2929
return a;
3030
}
@@ -46,20 +46,3 @@ char EncryptChar(char a, int key){
4646
}
4747
return albet[key];
4848
}
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-
}

0 commit comments

Comments
 (0)