- Introduction
- Features
- Getting Started
- Prerequisites
- Installation
- Usage
- Hiding a File
- Retrieving a Hidden File
- License
This Go application allows you to hide any file within a PNG image, effectively concealing the file within the image's data. This can be a fun and creative way to protect sensitive information or share files discreetly.
- Hide any file within a PNG image.
- Retrieve hidden files from PNG images.
Before using this application, you need to have Go 1.21.0 installed on your system.
Clone the repository:
git clone https://github.com/DanteLorenzo/hpng.git
cd hpng
Build the application for Windows (64-bit):
GOOS=windows GOARCH=amd64 go build -o myapp_windows_amd64.exe
Build the application for Linux (64-bit):
GOOS=linux GOARCH=amd64 go build -o myapp_linux_amd64
To hide a file within a PNG image, follow these steps:
hpng -s PNG_IMAGE -f FILE_TO_HIDE
To retrieve hidden file:
hpng -r -s PNG_WITH_HIDDEN_FILE -f OUTPUT_NAME
This project is licensed under the MIT License - see the LICENSE file for details.