-
binary-protocol-tcp-c Public
A simple prototype TCP server in C implementing a custom binary protocol with versioned packet headers. It supports login authentication with fixed credentials (no database), designed purely for le…
-
-
-
pubg-unpacker Public
This C program serves as a PUBG pak extracting tool, designed to extract contents from PUBG pak files.
-
AES-512 Public
AES-512 Implementation in C – This project implements AES-512 encryption, decryption, and key expansion using a 64-byte key and 22 rounds. It generates 23 round keys and provides working encryption…
C MIT License UpdatedMar 11, 2025 -
ifs-unpacker Public
This tool extract tencent games .ifs file archive (nifs)
-
-
-
-
AES-128-ECB Public
This GitHub repository houses a standard AES-128 ECB (Electronic Codebook) encryption algorithm implemented in the C programming language. AES-128 is a widely recognized encryption standard known f…
-
-
tcp-multithreaded-server Public
A multi-threaded TCP server implemented in C that handles multiple client connections concurrently. This project demonstrates socket programming and multithreading concepts, allowing clients to sen…
-
-
CRC-32 Public
A C language implementation of the CRC-32 algorithm using the polynomial 0xEDB88320. Includes a pre-computed lookup table for efficient checksum computation.
-
aes-file-encrypt-decrypt Public
Securely encrypt and decrypt files with AES-128-CBC encryption, incorporating PKCS#7 padding for enhanced security, using C programming language.
C MIT License UpdatedJun 4, 2024 -
SecurePack Public
SecurePack is a command-line tool for securely packing and unpacking files into a custom archive format. It supports AES-128 and XOR encryption options, directory recursion, and automatic directory…
-
sha1 Public
sha1.h is a pure C implementation of the SHA-1 hashing algorithm. It offers both a simple function interface (SHA1()) and a SHA1_CTX structure for processing multiple data chunks. Ideal for cryptog…
-
AES-256-CBC Public
AES-256-CBC: A header-only library for AES encryption and decryption. Securely protect your data with this easy-to-integrate, single-header implementation. No external dependencies required. Ideal …
-
AES-128-CBC Public
AES-128-CBC implementation in C for secure encryption and decryption. Header-only, easy integration, supports single and multiple block operations. No padding, block size must be 16 bytes. MIT lice…
-
-
zstd Public
Forked from facebook/zstdZstandard - Fast real-time compression algorithm
C Other UpdatedMar 25, 2024 -
vgmstream Public
Forked from vgmstream/vgmstreamvgmstream - A library for playback of various streamed audio formats used in video games.
C Other UpdatedFeb 29, 2024 -
AES-256-ECB Public
AES-256-ECB: A header-only library offering seamless AES-256 ECB encryption and decryption functionality. Safeguard your data effortlessly with this single-header implementation. This solution is d…
C MIT License UpdatedFeb 17, 2024 -
AES-192-CBC Public
This GitHub repository offers AES_192_CBC.h, a single header file for streamlined integration into C projects. It provides robust AES-192 CBC encryption and decryption, ensuring enhanced security. …
-
AES-192-ECB Public
This GitHub hosts AES_192_ECB.h, a C header file implementing AES-192 ECB encryption. AES-192, an extension of AES-128, ensures robust security. The file encapsulates the aes-192-ecb algorithm in C…
-
custom-aes Public
This is a modified version of the AES-128 CBC encryption algorithm. In this custom implementation, encryption and decryption are possible without requiring an Initialization Vector (IV). Instead, t…
-
elf-info Public
ARM64 ELF Section Info Tool: A lightweight C program (elf.c) that extracts and displays information about sections in ARM64 ELF binaries, including section names, offsets, and sizes. Ideal for anal…
-
Memory-Tool Public
Android Memory Tool A C-based memory tool for Android, enabling memory reading and writing in specified processes. Utilizes process_vm_readv and process_vm_writev system calls. Features include pro…
-
gpt4all Public
Forked from nomic-ai/gpt4allgpt4all: open-source LLM chatbots that you can run anywhere
C++ MIT License UpdatedNov 3, 2023 -
aes-ecb-in-c Public
This project demonstrates AES (Advanced Encryption Standard) encryption and decryption in ECB (Electronic Codebook) mode using C language.