Skip to content

Commit

Permalink
Rename ciphering to crypto
Browse files Browse the repository at this point in the history
  • Loading branch information
Igor-Misic authored and jciberlin committed Mar 27, 2024
1 parent 4c2dcfe commit 8d0a9e5
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
File renamed without changes.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ TARGET = $(TARGET_DIR)/$(TARGET_BASE)$(TARGET_EXTENSION)
IMUTILITY_FILES=\
Src/base64.c \
Src/bit_manipulation.c \
Src/ciphering/caesar_cipher.c \
Src/crc/crc8_base.c \
Src/crc/crc8_variants/crc8.c \
Src/crc/crc8_variants/crc8_8h2f.c \
Expand Down Expand Up @@ -106,6 +105,7 @@ IMUTILITY_FILES=\
Src/crc/crc32_variants/crc32_posix.c \
Src/crc/crc32_variants/crc32_q.c \
Src/crc/crc32_variants/crc32_xfer.c \
Src/crypto/caesar_cipher.c \
Src/sort/bubble_sort.c \
Src/sort/heap_sort.c \
Src/sort/insertion_sort.c \
Expand Down Expand Up @@ -140,6 +140,7 @@ SRC_FILES+=$(IMUTILITY_FILES) \
Tests/test_utils.c
INC_DIRS_CODE=\
-IInc \
-IInc/crypto \
-IInc/crc \
-IInc/crc/crc8_variants \
-IInc/crc/crc16_variants \
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,6 @@ Join us on the Discord channel https://discord.gg/R6nZxZqDH3
- BitManipulation_clearBit
- BitManipulation_toggleBit

### Ciphering algorithms
- CaesarCipher_encrypt
- CaesarCipher_decrypt

### Crc8
- Crc8Base_tableCalculator
- Crc8Base // Base used for calculating all Crc8 variants
Expand Down Expand Up @@ -120,6 +116,10 @@ Join us on the Discord channel https://discord.gg/R6nZxZqDH3
- Crc32_q
- Crc32_xfer

### Cryptography
- CaesarCipher_encrypt
- CaesarCipher_decrypt

### JSON
- Json_startString
- Json_addData
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
*
****************************************************************************/

#include "ciphering/caesar_cipher.h"
#include "caesar_cipher.h"

#include <string.h>

Expand Down
2 changes: 1 addition & 1 deletion Tests/test_caesar_cipher.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "ciphering/caesar_cipher.h"
#include "caesar_cipher.h"

#include "unity.h"
#include "unity_fixture.h"
Expand Down

0 comments on commit 8d0a9e5

Please sign in to comment.