← 返回
未分类 中文

cipher65536

Base65536 file encoding and decoding tool. Encodes arbitrary binary files into Unicode text using Base65536 encoding, supports gzip compression, original fil...
Base65536 文件编码和解码工具,使用 Base65536 编码将任意二进制文件转换为 Unicode 文本,支持 gzip 压缩,保留原始文件信息。
turinfohlen turinfohlen 来源
未分类 clawhub v1.0.4 1 版本 100000 Key: 无需
★ 1
Stars
📥 437
下载
💾 0
安装
1
版本
#latest

概述

Base65536 File Encoding and Decoding Tool

Overview

Base65536 is an encoding scheme using Unicode characters that converts arbitrary binary data into printable text strings. This tool adds the following enhancements:

  • gzip Compression: Reduces transmission size
  • True Random Key Generation: Collects physical entropy based on local loopback network jitter
  • Byte-Level XOR Encryption: Protects content confidentiality
  • Metadata Concealment: Filename, size, etc., are hidden in encryption mode

Quick Start

Install Dependencies

pip install base65536

Basic Usage

# Standard encoding (no encryption)
python skill.py encode document.pdf -o encoded.txt

# Decoding
python skill.py decode encoded.txt -o restored.pdf

Encryption Mode (Auto-generate Key)

# Encrypt and encode (key saved to file, not displayed in terminal)
python skill.py encode secret.zip --scramble -o encrypted.txt
# Output:
#   🌐 Collecting true random entropy from local network jitter...
#   🔑 Key saved to: encrypted.key
#   🔒 File permissions locked to 600 (read/write for current user only)
#   ✓ Encoded: encrypted.txt

# Decrypt (reading key from file)
python skill.py decode encrypted.txt --key $(cat encrypted.key)

Encryption Mode (Using Specified Key)

# Encrypt using an existing key
python skill.py encode secret.zip --scramble --key 108544482569932551567348223456789012... -o encrypted.txt

# Decrypt
python skill.py decode encrypted.txt --key 108544482569932551567348223456789012...

Command-Line Arguments

encode Subcommand

Argument Description

input Input file path (Required)

-o, --output Output file path (Default: input_filename.b65536.txt)

--no-compress Disable gzip compression

--scramble Enable encryption mode

--key Use specified key (integer); auto-generated if not provided

--key-file Key output file path (Default: output_filename.key)

decode Subcommand

Argument Description

input Input file path (Required)

-o, --output Output file path (Default: use original filename)

--key Decryption key (integer; required for encrypted mode)

Workflow

Encoding Process

  1. Read the original binary file.
  2. Optionally: Compress data using gzip (default enabled, level 9).
  3. Encode to Unicode text using Base65536.
  4. If encryption mode is enabled:

· Generate or use the specified 256-bit key.

· Perform XOR encryption on the UTF-8 bytes of the Base65536 text.

· Encrypt real metadata and replace with dummy metadata.

  1. Prepend the #METADATA: header.
  2. Save as a text file.

Decoding Process

  1. Read the encoded text file.
  2. Parse the #METADATA: header.
  3. If encrypted mode:

· Decrypt the real metadata using the key.

· Decrypt the main body data using XOR.

  1. Decode the data to binary using Base65536.
  2. Automatically detect and decompress gzip-compressed data.
  3. Save the file using the original filename.

File Format

Standard Mode

#METADATA:{"original_name": "original_filename", "compressed": true, "original_size": 12345, "scrambled": false}
[Base65536 encoded data...]

Encryption Mode

#METADATA:{"original_name": "encrypted_file", "compressed": true, "original_size": 0, "scrambled": true, "note": "This file is encrypted. Use key to decrypt."}
[XOR encrypted Base65536 data...]
###ENCRYPTED_META### [Encrypted real metadata]

Security Principles

A file steganography tool based on information theory and cryptographic principles. It folds data redundancy using gzip entropy densification and uses true random entropy seeded from local loopback network jitter to generate a 256-bit key space for byte-level XOR perturbation. The ciphertext exhibits chaotic distribution over the finite manifold of Unicode defined by Base65536, effectively resisting known-plaintext attacks, ciphertext-only attacks, and phase-space reconstruction analysis.

  1. True Random Key Generation: Generates an unpredictable 256-bit key by measuring local loopback (localhost) network latency jitter to collect physical entropy, combined with system entropy from os.urandom.
  2. Secure Key Storage: Automatically generated keys are saved to a .key file with 600 permissions and are never displayed in the terminal.
  3. Metadata Concealment: The actual filename, size, and other information are encrypted and stored; dummy data is displayed externally.

Usage Examples

Encoding a PDF File (No Encryption)

python skill.py encode document.pdf -o encoded.txt

Output:

  Compressing: 1,234,567 → 876,543 bytes (71.0%)
  Encoding: 876,543 bytes → 438,271 characters
✓ Encoded: encoded.txt
  Final size: 438,271 characters

Decoding a File (No Encryption)

python skill.py decode encoded.txt

Output:

  Read metadata: {'original_name': 'document.pdf', 'compressed': True, 'original_size': 1234567, 'scrambled': False}
  gzip compression detected, decompressing...
✓ Decoded: document.pdf
  Restored size: 1,234,567 bytes

Use Cases

· Cross-Platform File Transfer: Encoded text can be transferred on any platform supporting text.

· High-Security Steganography: Content is completely hidden when using encryption mode.

· API Transmission: Transmit binary data through plain-text APIs.

· Bypassing Upload Restrictions: Transfer files on platforms that lack file upload support.

· Data Backup: Convert binary data to text for backup purposes.

Technical Specifications

Item Specification

Encoding Scheme Base65536

Compression Algorithm gzip (zlib, level 9)

Encryption Algorithm Byte-level XOR + 256-bit key space

Key Generation Local loopback network jitter + os.urandom

Metadata Format JSON

Python Version 3.6+

External Dependencies base65536

Performance Characteristics

Original Type gzip Compression Effect Base65536 Expansion Rate Combined Effect

Text Files 70-80% ~50% 35-40%

Images/Videos 90-99% ~50% 45-99%

Compressed Files No effect ~50% ~50%

Important Notes

  1. Key Custody: True random keys cannot be reproduced. Files cannot be recovered if the key is lost.
  2. Secure Transmission: Transfer the key file via a channel separate from the ciphertext.
  3. Compressed Files: For files like .zip or .jpg, use --no-compress to avoid size inflation.
  4. Unicode Compatibility: Some platforms may mishandle high-plane Unicode characters. Test transmission beforehand.

Resources

scripts/

· skill.py - Main program containing encode/decode functionality.

references/

· encoding-details.md - Encoding principles and implementation details.

版本历史

共 1 个版本

  • v1.0.4 当前
    2026-05-03 09:40 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

knowledge-management

narrative-topology

turinfohlen
使用 RDF 风格的三元组标记从长篇叙事、架构或复杂讨论中抽取语义关系,生成邻接矩阵以进行表示。
★ 1 📥 455
dev-programming

CodeConductor.ai

larsonreever
AI驱动平台,提供快速全栈开发、智能体、工作流自动化及低代码AI集成的可扩展产品创建。
★ 78 📥 182,567
dev-programming

Github

steipete
使用 `gh` CLI 与 GitHub 交互,通过 `gh issue`、`gh pr`、`gh run` 和 `gh api` 管理议题、PR、CI 运行及高级查询。
★ 681 📥 329,772