From 7c556e5b3d1e82eb0533bd6f2d63da2b79545ef0 Mon Sep 17 00:00:00 2001 From: Leonetienne Date: Mon, 16 May 2022 22:19:20 +0200 Subject: [PATCH] Doxygen adjustment, and better directory name for GCryptLib --- {GhettoCrypt => GCryptLib}/CMakeLists.txt | 0 {GhettoCrypt => GCryptLib}/doxygen/.gitignore | 0 {GhettoCrypt => GCryptLib}/doxygen/doxyfig | 2 +- {GhettoCrypt => GCryptLib}/doxygen/doxyrun.sh | 4 +++- {GhettoCrypt => GCryptLib}/exec/main.cpp | 0 {GhettoCrypt => GCryptLib}/include/Block.h | 0 {GhettoCrypt => GCryptLib}/include/Cipher.h | 0 {GhettoCrypt => GCryptLib}/include/Config.h | 0 {GhettoCrypt => GCryptLib}/include/Feistel.h | 0 {GhettoCrypt => GCryptLib}/include/Flexblock.h | 0 .../include/GhettoCryptWrapper.h | 0 {GhettoCrypt => GCryptLib}/include/Halfblock.h | 0 .../include/InitializationVector.h | 0 {GhettoCrypt => GCryptLib}/include/Keyset.h | 0 {GhettoCrypt => GCryptLib}/include/SecureBitset.h | 0 {GhettoCrypt => GCryptLib}/include/Util.h | 0 {GhettoCrypt => GCryptLib}/include/Version.h | 0 {GhettoCrypt => GCryptLib}/src/Cipher.cpp | 0 {GhettoCrypt => GCryptLib}/src/Feistel.cpp | 0 .../src/GhettoCryptWrapper.cpp | 0 .../src/InitializationVector.cpp | 0 {GhettoCrypt => GCryptLib}/test/Catch2.h | 0 .../test/EncryptEqualsDecrypt.cpp | 0 {GhettoCrypt => GCryptLib}/test/GCWrapper.cpp | 0 .../test/Password2Key_CollisionResistance.cpp | 0 {GhettoCrypt => GCryptLib}/test/testfile.png | Bin 26 files changed, 4 insertions(+), 2 deletions(-) rename {GhettoCrypt => GCryptLib}/CMakeLists.txt (100%) rename {GhettoCrypt => GCryptLib}/doxygen/.gitignore (100%) rename {GhettoCrypt => GCryptLib}/doxygen/doxyfig (97%) rename {GhettoCrypt => GCryptLib}/doxygen/doxyrun.sh (73%) rename {GhettoCrypt => GCryptLib}/exec/main.cpp (100%) rename {GhettoCrypt => GCryptLib}/include/Block.h (100%) rename {GhettoCrypt => GCryptLib}/include/Cipher.h (100%) rename {GhettoCrypt => GCryptLib}/include/Config.h (100%) rename {GhettoCrypt => GCryptLib}/include/Feistel.h (100%) rename {GhettoCrypt => GCryptLib}/include/Flexblock.h (100%) rename {GhettoCrypt => GCryptLib}/include/GhettoCryptWrapper.h (100%) rename {GhettoCrypt => GCryptLib}/include/Halfblock.h (100%) rename {GhettoCrypt => GCryptLib}/include/InitializationVector.h (100%) rename {GhettoCrypt => GCryptLib}/include/Keyset.h (100%) rename {GhettoCrypt => GCryptLib}/include/SecureBitset.h (100%) rename {GhettoCrypt => GCryptLib}/include/Util.h (100%) rename {GhettoCrypt => GCryptLib}/include/Version.h (100%) rename {GhettoCrypt => GCryptLib}/src/Cipher.cpp (100%) rename {GhettoCrypt => GCryptLib}/src/Feistel.cpp (100%) rename {GhettoCrypt => GCryptLib}/src/GhettoCryptWrapper.cpp (100%) rename {GhettoCrypt => GCryptLib}/src/InitializationVector.cpp (100%) rename {GhettoCrypt => GCryptLib}/test/Catch2.h (100%) rename {GhettoCrypt => GCryptLib}/test/EncryptEqualsDecrypt.cpp (100%) rename {GhettoCrypt => GCryptLib}/test/GCWrapper.cpp (100%) rename {GhettoCrypt => GCryptLib}/test/Password2Key_CollisionResistance.cpp (100%) rename {GhettoCrypt => GCryptLib}/test/testfile.png (100%) diff --git a/GhettoCrypt/CMakeLists.txt b/GCryptLib/CMakeLists.txt similarity index 100% rename from GhettoCrypt/CMakeLists.txt rename to GCryptLib/CMakeLists.txt diff --git a/GhettoCrypt/doxygen/.gitignore b/GCryptLib/doxygen/.gitignore similarity index 100% rename from GhettoCrypt/doxygen/.gitignore rename to GCryptLib/doxygen/.gitignore diff --git a/GhettoCrypt/doxygen/doxyfig b/GCryptLib/doxygen/doxyfig similarity index 97% rename from GhettoCrypt/doxygen/doxyfig rename to GCryptLib/doxygen/doxyfig index 697babf..7980994 100644 --- a/GhettoCrypt/doxygen/doxyfig +++ b/GCryptLib/doxygen/doxyfig @@ -829,7 +829,7 @@ WARN_LOGFILE = # spaces. See also FILE_PATTERNS and EXTENSION_MAPPING # Note: If this tag is empty the current directory is searched. -INPUT = "../GhettoCrypt/" "index.md" +INPUT = "../src/" "../include" "index.md" # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses diff --git a/GhettoCrypt/doxygen/doxyrun.sh b/GCryptLib/doxygen/doxyrun.sh similarity index 73% rename from GhettoCrypt/doxygen/doxyrun.sh rename to GCryptLib/doxygen/doxyrun.sh index a8ae488..2b04e9b 100644 --- a/GhettoCrypt/doxygen/doxyrun.sh +++ b/GCryptLib/doxygen/doxyrun.sh @@ -1,5 +1,7 @@ +#!zsh + # Copy repository readme here to be used as a cover page -tail ../readme.md -n +2 > index.md +tail ../../readme.md -n +2 > index.md # Run doxygen doxygen doxyfig diff --git a/GhettoCrypt/exec/main.cpp b/GCryptLib/exec/main.cpp similarity index 100% rename from GhettoCrypt/exec/main.cpp rename to GCryptLib/exec/main.cpp diff --git a/GhettoCrypt/include/Block.h b/GCryptLib/include/Block.h similarity index 100% rename from GhettoCrypt/include/Block.h rename to GCryptLib/include/Block.h diff --git a/GhettoCrypt/include/Cipher.h b/GCryptLib/include/Cipher.h similarity index 100% rename from GhettoCrypt/include/Cipher.h rename to GCryptLib/include/Cipher.h diff --git a/GhettoCrypt/include/Config.h b/GCryptLib/include/Config.h similarity index 100% rename from GhettoCrypt/include/Config.h rename to GCryptLib/include/Config.h diff --git a/GhettoCrypt/include/Feistel.h b/GCryptLib/include/Feistel.h similarity index 100% rename from GhettoCrypt/include/Feistel.h rename to GCryptLib/include/Feistel.h diff --git a/GhettoCrypt/include/Flexblock.h b/GCryptLib/include/Flexblock.h similarity index 100% rename from GhettoCrypt/include/Flexblock.h rename to GCryptLib/include/Flexblock.h diff --git a/GhettoCrypt/include/GhettoCryptWrapper.h b/GCryptLib/include/GhettoCryptWrapper.h similarity index 100% rename from GhettoCrypt/include/GhettoCryptWrapper.h rename to GCryptLib/include/GhettoCryptWrapper.h diff --git a/GhettoCrypt/include/Halfblock.h b/GCryptLib/include/Halfblock.h similarity index 100% rename from GhettoCrypt/include/Halfblock.h rename to GCryptLib/include/Halfblock.h diff --git a/GhettoCrypt/include/InitializationVector.h b/GCryptLib/include/InitializationVector.h similarity index 100% rename from GhettoCrypt/include/InitializationVector.h rename to GCryptLib/include/InitializationVector.h diff --git a/GhettoCrypt/include/Keyset.h b/GCryptLib/include/Keyset.h similarity index 100% rename from GhettoCrypt/include/Keyset.h rename to GCryptLib/include/Keyset.h diff --git a/GhettoCrypt/include/SecureBitset.h b/GCryptLib/include/SecureBitset.h similarity index 100% rename from GhettoCrypt/include/SecureBitset.h rename to GCryptLib/include/SecureBitset.h diff --git a/GhettoCrypt/include/Util.h b/GCryptLib/include/Util.h similarity index 100% rename from GhettoCrypt/include/Util.h rename to GCryptLib/include/Util.h diff --git a/GhettoCrypt/include/Version.h b/GCryptLib/include/Version.h similarity index 100% rename from GhettoCrypt/include/Version.h rename to GCryptLib/include/Version.h diff --git a/GhettoCrypt/src/Cipher.cpp b/GCryptLib/src/Cipher.cpp similarity index 100% rename from GhettoCrypt/src/Cipher.cpp rename to GCryptLib/src/Cipher.cpp diff --git a/GhettoCrypt/src/Feistel.cpp b/GCryptLib/src/Feistel.cpp similarity index 100% rename from GhettoCrypt/src/Feistel.cpp rename to GCryptLib/src/Feistel.cpp diff --git a/GhettoCrypt/src/GhettoCryptWrapper.cpp b/GCryptLib/src/GhettoCryptWrapper.cpp similarity index 100% rename from GhettoCrypt/src/GhettoCryptWrapper.cpp rename to GCryptLib/src/GhettoCryptWrapper.cpp diff --git a/GhettoCrypt/src/InitializationVector.cpp b/GCryptLib/src/InitializationVector.cpp similarity index 100% rename from GhettoCrypt/src/InitializationVector.cpp rename to GCryptLib/src/InitializationVector.cpp diff --git a/GhettoCrypt/test/Catch2.h b/GCryptLib/test/Catch2.h similarity index 100% rename from GhettoCrypt/test/Catch2.h rename to GCryptLib/test/Catch2.h diff --git a/GhettoCrypt/test/EncryptEqualsDecrypt.cpp b/GCryptLib/test/EncryptEqualsDecrypt.cpp similarity index 100% rename from GhettoCrypt/test/EncryptEqualsDecrypt.cpp rename to GCryptLib/test/EncryptEqualsDecrypt.cpp diff --git a/GhettoCrypt/test/GCWrapper.cpp b/GCryptLib/test/GCWrapper.cpp similarity index 100% rename from GhettoCrypt/test/GCWrapper.cpp rename to GCryptLib/test/GCWrapper.cpp diff --git a/GhettoCrypt/test/Password2Key_CollisionResistance.cpp b/GCryptLib/test/Password2Key_CollisionResistance.cpp similarity index 100% rename from GhettoCrypt/test/Password2Key_CollisionResistance.cpp rename to GCryptLib/test/Password2Key_CollisionResistance.cpp diff --git a/GhettoCrypt/test/testfile.png b/GCryptLib/test/testfile.png similarity index 100% rename from GhettoCrypt/test/testfile.png rename to GCryptLib/test/testfile.png