WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

RenardDev/ICECipher

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 

Repository files navigation

ICECipher

ICE cipher for Python

Installation

pip install ICECipher

Example

from ICECipher import IceKey

data = b'Hello, World!'

ice = IceKey(0, [ 0x45, 0x32, 0x4E, 0x63, 0x55, 0x6B, 0x47, 0x32 ]) # 64 bit key used

encrypted_data = ice.Encrypt(data)
print(f'Encrypted = {encrypted_data}') # b'@\xff\xf3TQ>X\x04orld!'
print(f'Decrypted = {ice.Decrypt(encrypted_data)}') # b'Hello, World!'

About

ICE cipher for Python

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages