Пример #1
0
        public string keygen(string text)
        {
            string strKey = "";

            //Random rnd = new Random();
            CharGeneration cg = new CharGeneration();
            for (int i = 0; i < text.Length; i++)
            {
                strKey += cg.chargen();
                //File.WriteAllText(@"D:\Users\AlexFade\Documents\Visual Studio 2013\Projects\Lab1_VernamCipher\key.txt", strKey);
            }

            //Console.WriteLine("key:\n" + strKey);
            return strKey;
        }
Пример #2
0
        public string keygen(string text)
        {
            string strKey = "";

            //Random rnd = new Random();
            CharGeneration cg = new CharGeneration();

            for (int i = 0; i < text.Length; i++)
            {
                strKey += cg.chargen();
                //File.WriteAllText(@"D:\Users\AlexFade\Documents\Visual Studio 2013\Projects\Lab1_VernamCipher\key.txt", strKey);
            }


            //Console.WriteLine("key:\n" + strKey);
            return(strKey);
        }