示例#1
0
        public string decipher_methodVinegar()
        {
            String         source         = RemoveChar_besidesRussianAlphabet(_mainLine);
            Method_Vinegar method_Vinegar = new Method_Vinegar(source, RemoveChar_besidesRussianAlphabet(_key));
            String         resultLine     = method_Vinegar.decipher();

            return(resultLine);
        }
示例#2
0
        public string encrypt_methodVinegar()
        {
            String         source         = RemoveChar_besidesRussianAlphabet(_mainLine);
            Method_Vinegar method_Vinegar = new Method_Vinegar(source, _key);
            String         resultLine     = method_Vinegar.encryptLine();

            return(resultLine);
        }