Metadata-Version: 1.1
Name: python-camellia
Version: 0.1.1
Summary: Camellia-cipher in Python
Home-page: https://github.com/var-sec/python-camellia
Author: Simon Biewald
Author-email: simon.biewald@homtail.de
License: MIT
Description: ===============
        python-camellia
        ===============
        
        This is a cryptographic library implementing the camellia cipher in python.
        
        .. code:: python
        
           >>> import camellia
           >>> plain = b"This is a text. "
           >>> c1 = camellia.CamelliaCipher(key=b'16 byte long key', IV=b'16 byte iv. xxxx', mode=camellia.MODE_CBC)
           >>> encrypted = c1.encrypt(plain)
           >>> c2 = camellia.CamelliaCipher(key=b'16 byte long key', IV=b'16 byte iv. xxxx', mode=camellia.MODE_CBC)
           >>> c2.decrypt(encrypted)
           b'This is a text. '
        
        
        
        Features
        ========
        
        Because it's build direct on top of the reference implementation, the python-camellia library provides direct 
        access to extreme low-level functions like *Camellia-Ekeygen* but also provides a nearly PEP-compliant 
        cryptographic interface. This semi low-level interface supports encryption (and decryption) in ECB and 
        CBC mode.
        
        Installation
        ============
        
        Install with pip:
        
        .. code:: shell
        
           $ [sudo] pip install python-camellia
        
        
        After installation the non-python C extension must be compiled, 
        gcc or compitable is required:
        
        .. code:: shell
        
           $ [sudo] python -m camellia
        
        To specify another compiler define the "CC" variable:
        
        .. code:: shell
        
           $ [sudo] CC=clang python -m camellia
        
        Licenses
        ========
        
        .. code::
        
            Copyright (c) 2015 Simon Biewald
        
            Permission is hereby granted, free of charge, to any person obtaining a copy
            of this software and associated documentation files (the "Software"), to deal
            in the Software without restriction, including without limitation the rights
            to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
            copies of the Software, and to permit persons to whom the Software is
            furnished to do so, subject to the following conditions:
        
            The above copyright notice and this permission notice shall be included in
            all copies or substantial portions of the Software.
        
            THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
            IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
            FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
            AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
            LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
            OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
            THE SOFTWARE.
        
        
        This software uses the official camellia c reference implementation.
        
        .. code::
        
             Copyright (c) 2006,2007
             NTT (Nippon Telegraph and Telephone Corporation) . All rights reserved.
             
            Redistribution and use in source and binary forms, with or without
            modification, are permitted provided that the following conditions
            are met:
            1. Redistributions of source code must retain the above copyright
              notice, this list of conditions and the following disclaimer as
              the first lines of this file unmodified.
            2. Redistributions in binary form must reproduce the above copyright
              notice, this list of conditions and the following disclaimer in the
              documentation and/or other materials provided with the distribution.
        
            THIS SOFTWARE IS PROVIDED BY NTT ``AS IS'' AND ANY EXPRESS OR
            IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
            OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
            IN NO EVENT SHALL NTT BE LIABLE FOR ANY DIRECT, INDIRECT,
            INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
            NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
            DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
            THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
            (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
            THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
        
        
        Other things
        ============
        
        This software contains compiled cryptographic libraries which may be restricted by laws in your country. 
        
Keywords: camellia,encryption,decryption,cipher
Platform: all
Platform: gcc
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Security
Classifier: Topic :: Security :: Cryptography
