static void Main(string[] args)
        {
            // WARNING
            // the below code is only meant to indicate you where the snippets you are looking
            // for are, if you run this code as is, the app crashes because it will not find a the hardcoded
            // file path to encrypt Hashing
            HmacMD5Demos.LaunchDemo();
            HmacSHA1Demos.LaunchDemo();
            Md5Demos.LaunchDemo();
            Sha1Demos.LaunchDemo();
            Sha256Demos.LaunchDemo();
            Sha512Demos.LaunchDemo();

            //// Symmetric crypto
            AESDemos.LaunchDemo();
            DESDemos.LaunchDemo();
            DESDemos.LaunchFileDemo();
            TripleDESDemos.LaunchDemo();


            // Asymmetric crypto
            RSACspDemo.LaunchDemo();
            RsaFileDemo.LaunchDemo();
            RsaInMemoryDemo.LaunchDemo();
        }
Example #2
0
 static void Main(string[] args)
 {
     //// Symmetric crypto
     AESDemos.LaunchDemo();
     DESDemos.LaunchDemo();
     DESDemos.LaunchFileDemo();
     TripleDESDemos.LaunchDemo();
 }
Example #3
0
        static void Main(string[] args)
        {
            //hashing with all
            HmacMD5Demos.LaunchDemo();
            HmacSHA1Demos.LaunchDemo();
            Md5Demos.LaunchDemo();
            Sha1Demos.LaunchDemo();
            Sha256Demos.LaunchDemo();
            Sha512Demos.LaunchDemo();

            //// Symmetric crypto
            AESDemos.LaunchDemo();
            DESDemos.LaunchDemo();
            DESDemos.LaunchFileDemo();
            TripleDESDemos.LaunchDemo();


            // Asymmetric crypto and Euclidean with RSA
            RSACspDemo.LaunchDemo();
            RsaFileDemo.LaunchDemo();
            RsaInMemoryDemo.LaunchDemo();
            EuclideanExtended.LaunchDemo();
            //comment
        }
Example #4
0
        static void Main(string[] args)
        {
            double    AesTicks = 0;
            double    DesTicks = 0;
            double    RsTicks  = 0;
            Stopwatch AesTime;
            Stopwatch DesTime;
            Stopwatch RsTime;

            // WARNING
            // the below code is only meant to indicate you where the snippets you are looking
            // for are, if you run this code as is, the app crashes because it will not find a the hardcoded
            // file path to encrypt Hashing



            //HmacMD5Demos.LaunchDemo();
            //HmacSHA1Demos.LaunchDemo();
            //Md5Demos.LaunchDemo();
            //Sha1Demos.LaunchDemo();
            //Sha256Demos.LaunchDemo();
            //Sha512Demos.LaunchDemo();

            // Symmetric crypto
//******************AES TIMER***********************
            AesTime = Stopwatch.StartNew();

            AESDemos.LaunchDemo();

            AesTime.Stop();

            AesTicks = AesTime.ElapsedTicks;

            Console.WriteLine("AES Algorithm RunTime:   " + AesTicks / 100 + "nanoseconds");

            //******************DES TIMER***********************
            DesTime = Stopwatch.StartNew();

            DESDemos.LaunchDemo();

            DesTime.Stop();

            DesTicks = DesTime.ElapsedTicks;

            Console.WriteLine("DES Algorithm RunTime:   " + DesTicks / 100 + "nanoseconds");

            // DESDemos.LaunchFileDemo();

            //TripleDESDemos.LaunchDemo();



            // Asymmetric crypto

            RsTime = Stopwatch.StartNew();

            RSACspDemo.LaunchDemo();

            RsTime.Stop();

            RsTicks = RsTime.ElapsedTicks;

            Console.WriteLine("RSA Algorithm RunTime:   " + RsTicks / 100 + "nanoseconds");

            Console.ReadLine();

            //RsaFileDemo.LaunchDemo();
            //RsaInMemoryDemo.LaunchDemo();
        }