#pragma once #include "bignum.h" #include std::array textToPackOfCards(std::string text); std::string packOfCardsToText(std::array cards); std::array textToPackOfCardsEncrypted(std::string text, std::string key); std::string packOfCardsToTextEncrypted(std::array cards, std::string key);