Base64 Encoder
Description
This project implements a Base64 encoder and decoder for educational purposes. Base64 encoding converts binary data to text, using a set of 64 printable characters.
Directory Structure
include/: Contains the header files.src/: Contains the source code files (main.candbase64_encoder.c).obj/: Contains the compiled object files.build/: Contains the Makefile and the compiled binary.
How to Build
- Navigate to the
builddirectory. - Run
maketo compile the project.
How to Run
- After building, you will find an executable named
base64_encoderin thebuilddirectory. - Run it using
./base64_encoder.
How to Clean
- Run
make cleanin thebuilddirectory to remove all compiled files.