From 3ef32748e90a1dbb76e5d25afd1e64a5d134408f Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Wed, 13 Nov 2024 14:51:16 -0500 Subject: [PATCH] Remove temp code --- NDecrypt/Program.cs | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/NDecrypt/Program.cs b/NDecrypt/Program.cs index b08aea7..cf10c7b 100644 --- a/NDecrypt/Program.cs +++ b/NDecrypt/Program.cs @@ -14,18 +14,6 @@ namespace NDecrypt public static void Main(string[] args) { - // TEMP SHIT CODE - - byte[] x = - [ - 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, - 0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F, - ]; - x = CommonOperations.Add(x, x); - string s = BitConverter.ToString(x); - - // END TEMP SHIT CODE - if (args.Length < 2) { DisplayHelp("Not enough arguments");