Metadata-Version: 2.1
Name: cPadding
Version: 0.0.4
Summary: Padding methods for password based encryption implemented in Cython
Home-page: https://github.com/initbar/cPadding
Author: Herbert Shin
Author-email: h@init.bar
License: MIT
Description: # cPadding
        
        Inspired by [Padding](https://pypi.org/project/Padding/) project by [@pdio](https://github.com/peio), this project re-implements the original in [Cython](https://cython.org/).
        
        ## Build
        
        Local build for development requires `Cython` to compile C extensions.
        
        ```bash
        ~$ pip install Cython
        ~$ python setup.py build_ext --inplace
        ```
        
        ## Installation
        
        ```bash
        ~$ pip install --user cPadding
        ```
        
        ## Usage
        
        Except for parameter names, all of `Padding` functions and global variables are followed very closely in `cPadding`.
        
        ```python
        try:
          import cPadding as Padding
        except ImportError:
          import Padding
        ```
        
        ## Twine
        
        To package `pip` sources codes for portability, use `setup.py`'s `sdist`:
        
        ```bash
        ~$ python setup.py sdist --formats=zip
        ~$ # twine upload --repository production dist/*
        ```
        
        ## License
        
        **cPadding** is licensed under [MIT License](./LICENSE).
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Requires-Python: >=2.7
Description-Content-Type: text/markdown
