Title: decripted documents Author: Silentanon Pastebin link: http://pastebin.com/pW152F3t First Edit: Tuesday 4th of April 2017 10:31:12 AM CDT Last Edit: Last edit on: Tuesday 4th of April 2017 10:39:46 AM CDT -3 i must reiterate th t our encryption methods are lacking  anypony with a passing understanding of cryptography would crack this with ease  i understand that this is how method once served you well  but times have changed and so must we  al   +6 you raise an excellent point  our budget is strained as it is and we won t be able to release this to the public any time soon  however  we will wind up spending more in the long run if we don t do it right the first time  the advanced lines are excessiv   +12 i have serious concerns regarding security at our facilities  we had that intruder at facility 37 just last week who got away  the intruder in at facility 12 who still won t talk  and there  appears to be at least one leak at facility 63  we can not affor   -5 requesting permission to destroy  all samples of  rt  VMO-148 it appears to have no constructive applications and is exceptionally dangerous  i remain skeptical that it will function as expected  but even if it does  to what end  we are not monster  we ve no need for such fangs   this was translated through a c# program that I wipped up on the fly, it's not pretty, it doesn't work well, it doesn't write the letter a. but it works           using System; using System.Collections.Generic;   namespace Decription_Softwear {     class Program     {         static void Main(string[] args)         {             char[] alphabet = { 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z' };               int key = 0;               Console.Write("Instert key:");             key = -Convert.ToInt32(Console.ReadLine());               Console.WriteLine("\n Insert text:");               string input = Console.ReadLine();               char[] inputChar = input.ToLower().ToCharArray();               char[] outputChar = new char[inputChar.Length];               for (int i = 0; i < inputChar.Length; i++)             {                 for (int a = 0; a < alphabet.Length; a++)                 {                     if (inputChar[i] == alphabet[a] && a < alphabet.Length-key && a > -key)                     {                         outputChar[i] = alphabet[a + key];                     }                     else if (inputChar[i] == alphabet[a] && a > alphabet.Length-key && a > -key)                     {                         outputChar[i] = alphabet[a + key - alphabet.Length];                     }                     else if (inputChar[i] == alphabet[a] && a < alphabet.Length - key && a < -key)                     {                         outputChar[i] = alphabet[a + key + alphabet.Length];                     }                       else if(inputChar[i] == ' ')                     {                         outputChar[i] = ' ';                     }                                     }             }               string output = new string(outputChar);               Console.WriteLine(output);               Console.ReadKey();         }     } }