8000 GitHub - MAGANER/ghostkeeper: encrypt anything
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

MAGANER/ghostkeeper

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ghostkeeper

XOR encryption implemented in python: Fork( it should be used in serious project, since XOR encryption isn't tough enough. Project was forked for fun and research)

Usage:

key = fg.keygen.generate() #create key and object to encrypt data
encrypted_message = key.encrypt(byte_message)
decrypted_message = key.decrypt(encrypted_message)
print(decrypted_message) # shows decrypted string with bytes

#print(key.to_hex())  # you can show key as hex

About

encrypt anything

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%
0