Advertisement
rgoerv

ReplacementCipher

Apr 5th, 2025
340
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 2.36 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. #include <algorithm>
  4. #include <cstdint>
  5.  
  6. using namespace std;
  7.  
  8. static string alphabet = " ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"s;
  9.  
  10. static string ReplacementCipherENcode(const string& Slogan, const string& Alphabet,
  11.     const string StrForENcoding)
  12. {
  13.     string encoding_alphabet(Alphabet);
  14.     for_each(Slogan.begin(), Slogan.end(), [&encoding_alphabet](const auto& symbol) {                                                  
  15.         remove(encoding_alphabet.begin(), encoding_alphabet.end(), symbol);
  16.     });
  17.     rotate(encoding_alphabet.rbegin(), encoding_alphabet.rbegin() + Slogan.length(),
  18.                                                             encoding_alphabet.rend());
  19.     encoding_alphabet.replace(0, Slogan.length(), Slogan);
  20.  
  21.     string ENcoded_str;
  22.     for(const auto& symbol: StrForENcoding)
  23.     {
  24.         ENcoded_str.push_back(encoding_alphabet[Alphabet.find(symbol)]);
  25.     }
  26.     return ENcoded_str;
  27. }
  28.  
  29. static string ReplacementCipherDEcode(const string& Slogan, const string& Alphabet,
  30.     const string StrForDEcoding)
  31. {
  32.     string encoding_alphabet(Alphabet);
  33.     for_each(Slogan.begin(), Slogan.end(), [&encoding_alphabet](const auto& symbol) {                                                  
  34.         remove(encoding_alphabet.begin(), encoding_alphabet.end(), symbol);
  35.     });
  36.     rotate(encoding_alphabet.rbegin(), encoding_alphabet.rbegin() + Slogan.length(),
  37.                                                             encoding_alphabet.rend());
  38.     encoding_alphabet.replace(0, Slogan.length(), Slogan);
  39.  
  40.     string DEcoded_str;
  41.     for(const auto& symbol: StrForDEcoding)
  42.     {
  43.         DEcoded_str.push_back(Alphabet[encoding_alphabet.find(symbol)]);
  44.     }
  45.     return DEcoded_str;
  46. }
  47.  
  48. int main()
  49. {
  50.     static string str_for_encoding = "CRYPTOGRaPHY EXAMpLE TEmPlATe"s;
  51.     cout << "Строка для кодирования: " << str_for_encoding << endl;    
  52.  
  53.     static string slogan = "CRYPTO"s;
  54.     cout << "Ключ\\слоган " << slogan << endl;
  55.  
  56.     const string ENCodedStrR(ReplacementCipherENcode(slogan, alphabet,
  57.         str_for_encoding));
  58.     cout << "Зашифрованная строка: " << ENCodedStrR << endl;
  59.     cout << "Дешифрованная строка: " << ReplacementCipherDEcode(slogan, alphabet,
  60.         ENCodedStrR) << endl;
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement