From d6b6b51663127a4b3ea81a29a37aac274c75a701 Mon Sep 17 00:00:00 2001 From: _ <🐱> Date: Tue, 1 Dec 2020 20:22:30 -0700 Subject: [PATCH] Sort tiny-AES-c files to its own folder and filter --- SpotifyKeyDumper/SpotifyKeyDumper.vcxproj | 75 +------------------ .../SpotifyKeyDumper.vcxproj.filters | 18 +++-- SpotifyKeyDumper/Utils.cpp | 2 +- SpotifyKeyDumper/{ => tiny-AES-c}/aes.cpp | 0 SpotifyKeyDumper/{ => tiny-AES-c}/aes.h | 0 SpotifyKeyDumper/{ => tiny-AES-c}/aes.hpp | 0 6 files changed, 16 insertions(+), 79 deletions(-) rename SpotifyKeyDumper/{ => tiny-AES-c}/aes.cpp (100%) rename SpotifyKeyDumper/{ => tiny-AES-c}/aes.h (100%) rename SpotifyKeyDumper/{ => tiny-AES-c}/aes.hpp (100%) diff --git a/SpotifyKeyDumper/SpotifyKeyDumper.vcxproj b/SpotifyKeyDumper/SpotifyKeyDumper.vcxproj index 073af86..dfe6e71 100644 --- a/SpotifyKeyDumper/SpotifyKeyDumper.vcxproj +++ b/SpotifyKeyDumper/SpotifyKeyDumper.vcxproj @@ -9,14 +9,6 @@ Release Win32 - - Debug - x64 - - - Release - x64 - 16.0 @@ -39,19 +31,6 @@ true Unicode - - DynamicLibrary - true - v142 - Unicode - - - DynamicLibrary - false - v142 - true - Unicode - @@ -63,12 +42,6 @@ - - - - - - true @@ -76,12 +49,6 @@ false - - true - - - false - Level3 @@ -120,58 +87,22 @@ false - - - Level3 - true - _DEBUG;SPOTIFYKEYDUMPER_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - true - Use - pch.h - - - Windows - true - false - - - - - Level3 - true - true - true - NDEBUG;SPOTIFYKEYDUMPER_EXPORTS;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - true - Use - pch.h - - - Windows - true - true - true - false - - - - + + - Create - Create Create - Create + diff --git a/SpotifyKeyDumper/SpotifyKeyDumper.vcxproj.filters b/SpotifyKeyDumper/SpotifyKeyDumper.vcxproj.filters index d136835..f0c0dea 100644 --- a/SpotifyKeyDumper/SpotifyKeyDumper.vcxproj.filters +++ b/SpotifyKeyDumper/SpotifyKeyDumper.vcxproj.filters @@ -13,6 +13,12 @@ {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + {8e76b192-c74c-4f62-befa-c8117e9defe5} + + + {794ebf5e-1d3a-45c2-8727-cd75a158fd2f} + @@ -27,11 +33,11 @@ Header Files - - Header Files + + Header Files\tiny-AES-c - - Header Files + + Header Files\tiny-AES-c @@ -47,8 +53,8 @@ Source Files - - Source Files + + Source Files\tiny-AES-c \ No newline at end of file diff --git a/SpotifyKeyDumper/Utils.cpp b/SpotifyKeyDumper/Utils.cpp index ed35d52..a389bab 100644 --- a/SpotifyKeyDumper/Utils.cpp +++ b/SpotifyKeyDumper/Utils.cpp @@ -1,6 +1,6 @@ #include "pch.h" #include "Utils.h" -#include "aes.h" +#include "tiny-AES-c/aes.h" const uint8_t IV[] = { 0x72, 0xE0, 0x67, 0xFB, 0xDD, 0xCB, 0xCF, 0x77, 0xEB, 0xE8, 0xBC, 0x64, 0x3F, 0x63, 0x0D, 0x93 }; diff --git a/SpotifyKeyDumper/aes.cpp b/SpotifyKeyDumper/tiny-AES-c/aes.cpp similarity index 100% rename from SpotifyKeyDumper/aes.cpp rename to SpotifyKeyDumper/tiny-AES-c/aes.cpp diff --git a/SpotifyKeyDumper/aes.h b/SpotifyKeyDumper/tiny-AES-c/aes.h similarity index 100% rename from SpotifyKeyDumper/aes.h rename to SpotifyKeyDumper/tiny-AES-c/aes.h diff --git a/SpotifyKeyDumper/aes.hpp b/SpotifyKeyDumper/tiny-AES-c/aes.hpp similarity index 100% rename from SpotifyKeyDumper/aes.hpp rename to SpotifyKeyDumper/tiny-AES-c/aes.hpp