Metadata-Version: 1.1
Name: xxtea
Version: 0.1.3
Summary: xxtea
Home-page: https://github.com/ifduyue/xxtea
Author: Yue Du
Author-email: ifduyue@gmail.com
License: BSD
Description: xxtea
        =====
        
        Description
        ------------
        xxtea implemented as a Python extension module.
        
        Installation
        -------------
        ::
            
            $ pip install xxtea -U
        
        
        Example
        -----------
        ::
        
            from xxtea import decrypt, encrypt
            
            key = "xxtea is good"
            s = "xxtea is really good"
            
            enc = encrypt(s, key)
            dec = decrypt(enc, key)
            
            print len(enc), enc
            print len(dec), dec
            assert s == dec
        
        
Keywords: xxtea
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: POSIX
Classifier: Operating System :: POSIX :: Linux
Classifier: Topic :: Software Development :: Libraries :: Python Modules
