Git Product home page Git Product logo

camcrypt's Introduction

= OVERVIEW =

CamCrypt is a simple Python wrapper around one of the open source
implementations of the Camellia encryption library.  It makes use of
the Python ctypes module to reference the functions available in the
C library.


= CAVEATS =

The current version is only setup for Unix/Linux environments, but
should be easy to modify for MS-Windows for those familiar with the
Python ctypes modules.


= USAGE =

First, compile the C code into a shared library:
  $ make

Next, copy the shared library and Python file to your project:
  $ cp camellia.so camcrypt.py DEST/

Import the module into your script:
  import camcrypt
Create a CamCrypt object, providing it the shared library path:
  mycrypt = camcrypt.CamCrypt(LIBRARY_PATH)
Initialize the keytable with the number of key bits and a key/passphrase:
  mycrypt.keygen(128, "password")
Encrypt in blocks of 16 bytes:
  ciphertext = mycrypt.encrypt(plaintext)
Or decrypt in blocks of 16 bytes:
  plaintext = mycrypt.decrypt(ciphertext)
  

= BASIC INFORMATION =

Updates and contact information may be found on the project's website:
  https://github.com/knowmalware/camcrypt

Current version is 1.2.0, corresponding with the C implementation
included with this module.  The C code was copied from:
  http://info.isl.ntt.co.jp/crypt/eng/camellia/dl/camellia-GPL-1.2.0.tar.gz

camcrypt's People

Contributors

gtback avatar knowmalware avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.