HashBrowns is a secure package for hashing and cryptography in Python with unique features. This package is mainly for cryptography and hashing, but it also has some other features for files and handling. All functions are listed in a section below and are explained in detail here wiki also this package being open source, you can view the source code here source.
Most functions are listed here, and are explained in detail in the wiki.
functions.clearconsole() encryption.standard()
functions.checkfile() encryption.double()
functions.mutilate()
functions.getinfo() decryption.standard()
functions.wipefile() decryption.double()
functions.keyword()
key.validatekey()
hash.hash() key.keypair()
hash.hashfile() key.solokey()
hash.comparehash() key.secure()
This section is a simple demonstration/guide on hashbrowns, a more in depth one can be found here on the wiki.
All Functions
To import all functions from hashbrows you can either do the quicker but less reliable way of star imports this option may not work on all systems and also is considered "bad practice".
from hashbrowns import *Certain Functions
To import only certain functions you can use the longer method of finding all the classes or copy and pasting the given full import from the wiki.
from hashbrowns import functions, hash, key, encryption, decryptionHashing a password and saving it to a database.
from hashbrowns import hash
password = input("Enter your password here: ")
with open("Database.txt", "a") as file:
file.write(hash.hash(password))Encrypting a message with a key.
from hashbrowns import encryption
encryption.standard("test,txt", "Mario Judah")Decrypting a message with a key.
from hashbrowns import decryption
decryption.standard("test.txt", "kNpayatd")Obfuscating a file.
from hashbrowns import functions
functions.mutilate("test.txt")Package on PyPi
Latest Release
Quickstart Guide
discord: BadDevoleper#4200
Email: Cooperransom08@outlook.com
Replit |
Twitter
