Forked from pyrige/skippy mainly to rename prior to publishing so it won't collide with the existing and unrelated skippy package.
skip32 is a 80-bit key, 32-bit block cipher based on Skipjack. The Python code for the algorithm is a direct translation from C to Python of skip32.c by Greg Rose.
>>> from pyskip32 import Skip32
>>> key = b"s3cr3t_k3y"
>>> cipher = Skip32(key)
>>> encrypted = cipher.encrypt(42)
>>> encrypted
1139197039
>>> decrypted = cipher.decrypt(encrypted)
>>> decrypted
42
pyskip32 is free and unencumbered public domain software. For more information, see http://unlicense.org/ or the accompanying UNLICENSE file.