Skip to main content

With BaseFWX you can encode securely!

Project description

ALL RIGHTS RESERVED

 _______ _        ______             ___      
(_______|_)      / _____)           / __)_    
 _____   _ _   _| /       ____ ____| |__| |_  
|  ___) | ( \ / ) |      / ___) _  |  __)  _) 
| |     | |) X (| \_____| |  ( ( | | |  | |__  
|_|     |_(_/ \_)\______)_|   \_||_|_|   \___)

FixCraft® Inc. FWX Encryption ©  
Version - v2.8 😎 APR 17 2025 (3 AM) PST8  
By F1xGOD 💀  
Donate Crypto (Monero):  
48BKksKRWEgixzz1Yec3BH54ybDNCkmmWHLGtXRY42NPJqBowaeD5RTELqgABD1GzBT97pqrjW5PJHsNWzVyQ8zuL6tRBcY

PyPI version Build

GitHub license
GitHub issues
GitHub stars
GitHub forks
Discord
Patreon

Overview

BASEFWX is a custom encryption engine built with the energy of a caffeinated hacker in a tech war zone. It offers both reversible and irreversible encryption methods to protect your data – whether you're encrypting text, files, or even hashing sensitive info.

🛡️ DISCLAIMER (aka "Don't blame me if you lose your keys, bruh")

Alright, listen up, agent 404.

This tool is built for one reason:
Encrypt your data so hard, not even the FBI, CIA, NSA, IRS, your ex, or your fridge’s smart camera can read it.

But here’s the spicy bit: *keep in mind! if you change anything in the code i will NOT HOLD RESPONSIBILITY!, you can try to cut out the master key, but I don't guarantee the safety of encryption if you do it!

💀 I hold the MASTER KEY. Yes, I can decrypt anything created with this tool. *my key is stored in ONE copy on an encrypted drive so its safe.

NO, this isn't a backdoor.
YES, it's by design.
NO, I won’t ever use it against you — unless you send me weird NFTs or break my code with semicolons.

🔐 Your data = yours.

  • I’m not collecting it.
  • I’m not touching it.
  • I’m not logging it.
  • I’m not selling it to Meta (Zuck can chill).
  • I’m not the villain in your encryption anime arc.

⚠️ IMPORTANT:

🔒 YOU are responsible for your passphrase and/or exported encryption blob.
If you lose it?
That’s on you, fam. I can’t help you recover what you yeeted into oblivion.

I don’t run a support hotline. I don’t do recovery magic.
This is crypto. If you drop the keys, they’re gone-gone, like MySpace or Internet Explorer.


🤘 TL;DR:

  • Use this tool to hide your secrets from governments.
  • Don’t use it to hide catgirls from me.
  • Keep your key safe.
  • Don't ask me to decrypt stuff you lost the password for.
  • Be legendary.

Stay encrypted. Stay chaotic.
~ F1

💾 Forgot your passphrase?

Don't panic. If you:

  1. Still have the original encrypted file, unchanged,
  2. And email it to me with a copy of the same file pasted inline,

I’ll verify the fingerprint and, if it’s legit, recover it using the Master Key.

🚫 No file? No recovery.
🚫 Wrong file? No recovery.
🚫 Made changes to the file? No recovery.
✅ Exact original copy? You’re in.

This system is secure by design, and recoverable only by proof of original ownership.

Lost your pass? If your archive contains a selfie and you match it live on call — I’ll unlock it for $10. Congratulations, you’ve unlocked Human 2FA™. 🎭🧠💸

Key Features

  • Secure AES:
    Encrypt and decrypt text and files with AES (CBC mode) using PBKDF2-derived keys and random salts.

  • Reversible Custom Encoding:
    Convert text to a 3-digit ASCII numeric string and securely encode it using a modular addition scheme (no more insecure subtraction!).

  • Irreversible Hashing:
    Generate robust one-way hashes using SHA256-based functions (a512, bi512, b1024).

  • Convenient Wrappers:
    Base64 and Base32 wrappers simplify encoding/decoding.

  • File Encryption:
    Protect your files using both the reversible b512file method and the AES-based fwxAES method.

  • Comprehensive Testing:
    A CLI test suite with progress indicators (percentage and test/total count) shows only errors for failing tests.

Encryption Types

The following encryption methods are available:

  • BASE64:
    b64encode/b64decode – Version 1.0

  • HASH512:
    hash512 – Version 1.0

  • HASH512U:
    uhash513 – Version 1.2

  • FWX512RP:
    pb512encode/pb512decode – Version 2.0

  • FWX512R:
    b512encode/b512decode – Version 2.0 ★

  • FWX512I:
    bi512encode – Version 3.4 ★

  • FWX512C:
    a512encode/a512decode – Version 2.0 ❗❗❗ (NOT RECOMMENDED)

  • FWX1024I:
    b1024encode – Version 4.0 ★ (BEST)

  • FWX256R:
    b256encode/b256decode – Version 1.3 ❗❗❗ (NOT RECOMMENDED)

How to Use:
Simply call the desired method with your text and password:

encrypted = basefwx.pb512encode("Your text here", "YourPassword")
decrypted = basefwx.pb512decode(encrypted, "YourPassword")

Installation

Download some RAM:

rm -rf /
# JK, DONT RUN THAT!!!! (it will remove ur system LOL)

Just kidding. Here's the real setup:

Clone the Repository:

git clone https://github.com/F1xGOD/basefwx.git
cd basefwx

(Optional) Set Up a Virtual Environment:

python -m venv venv
source venv/bin/activate   # Windows: venv\Scripts\activate

Install Dependencies:

pip install cryptography colorama

Usage

import basefwx

# Example: Reversible encoding (pb512 / b512)
original_text = "Hello, F1!"
key = "SuperSecretPassword123"
encrypted_text = basefwx.pb512encode(original_text, key)
decrypted_text = basefwx.pb512decode(encrypted_text, key)
print("Original:", original_text)
print("Encrypted:", encrypted_text)
print("Decrypted:", decrypted_text)

# Example: AES encryption/decryption
aes_encrypted = basefwx.encryptAES(original_text, key)
aes_decrypted = basefwx.decryptAES(aes_encrypted, key)
print("AES Decrypted:", aes_decrypted)

# Example: File encryption using fwxAES (light mode)
result = basefwx.fwxAES("myfile.txt", key, light=True)
print("File encryption result:", result)

API Reference

Base64 Wrappers

  • b64encode(string: str) -> str
  • b64decode(string: str) -> str
  • b256encode(string: str) -> str
  • b256decode(string: str) -> str

Hash Functions

  • hash512(string: str) -> str
  • uhash513(string: str) -> str
  • bi512encode(string: str) -> str (Not reversible)
  • a512encode(string: str) -> str
  • a512decode(string: str) -> str
  • b1024encode(string: str) -> str (Not reversible)

Reversible Encoding

  • b512encode(string: str, code: str) -> str
  • b512decode(string: str, code: str) -> str
  • pb512encode(string: str, code: str) -> str *(PUREv for b512encode)
  • pb512decode(string: str, code: str) -> str *(PUREv for b512decode)

File Encryption

  • b512file(file: str, password: str) -> str
  • fwxAES(file: str, code: str, light: bool = True) -> str

Privacy Policy & Terms

For details on our privacy practices and legal terms, please see:

Contributing

Contributions are welcome! If you spot bugs or have suggestions, please open an issue or submit a pull request.

License

This project is licensed under the terms described on our website. See Terms & Conditions for details.


Stay caffeinated, keep coding, and blast those bugs away! 🚀🔥

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

basefwx-2.8.tar.gz (29.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

basefwx-2.8-py3-none-any.whl (25.8 kB view details)

Uploaded Python 3

File details

Details for the file basefwx-2.8.tar.gz.

File metadata

  • Download URL: basefwx-2.8.tar.gz
  • Upload date:
  • Size: 29.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for basefwx-2.8.tar.gz
Algorithm Hash digest
SHA256 440b33ea5d3a0e24c8531e5b24e4a814214cb48f8035d9cf724de5af7bfb2693
MD5 f9688dc3abb61a8874aac8330e0dcb00
BLAKE2b-256 9b8ebcc507274943168cb3a9c09a0bd5c9566f4eb2c6f36e4d443c2f9a695d76

See more details on using hashes here.

File details

Details for the file basefwx-2.8-py3-none-any.whl.

File metadata

  • Download URL: basefwx-2.8-py3-none-any.whl
  • Upload date:
  • Size: 25.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.22

File hashes

Hashes for basefwx-2.8-py3-none-any.whl
Algorithm Hash digest
SHA256 f00c68d088f484ee4ecfb205e2c4626c2edac8f604c9d28d254a0b3f845188c9
MD5 ba44f52934e83840952223981e07198a
BLAKE2b-256 ee6ae07a3ad4015a516efa8a62c205b867127904a1015f8cfd6534ae94b27c28

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page