cryha 1.0 announced
[Posted June 1, 2009 by cook]
| From: |
| Kless <jonas.esp-AT-googlemail.com> |
| To: |
| comp-lang-python-announce-AT-moderators.isc.org |
| Subject: |
| cryha 1.0 - Toolkit for crypto on database |
| Date: |
| Sat, 30 May 2009 08:49:21 -0700 (PDT) |
| Message-ID: |
| <510eebcf-6eab-4baa-a28b-317ec0f9539c@w40g2000yqd.googlegroups.com> |
| Archive-link: |
| Article, Thread
|
I'm proud to release version 1.0 of cryha.
Cryha is a Python toolkit for securing information into a data base;
it lets hash passwords, and encrypt/decrypt personal information. It
is ready for input of Unicode characters, and the schema is returned
as Unicode.
The text is stored according to this schema for a hash:
``separator, the hash function identifier, separator, the salt,
separator, the hash output``
And this another for a cipher text:
``separator, the cipher identifier, separator, the mode identifier,
separator, the IV parameter, separator, the ciphertext``
The idea of the schema has been taken of Linux systems that store the
hashed passwords so, using a ``$`` as separator.
It can be installed via setuptools:
$ sudo easy_install cryha
http://pypi.python.org/pypi/cryha/
--
http://mail.python.org/mailman/listinfo/python-announce-list
Support the Python Software Foundation:
http://www.python.org/psf/donations.html
(
Log in to post comments)